From 26c265eff54429c719f4c11e8d3cd4d622a813e7 Mon Sep 17 00:00:00 2001 From: Lee ByeongJun Date: Thu, 5 Feb 2026 08:38:13 +0900 Subject: [PATCH] fix: recover from redirects missing destinations --- grammar.js | 9 +- src/grammar.json | 70 + src/node-types.json | 32 + src/parser.c | 330242 ++++++++++++++++++------------------ test/corpus/commands.txt | 11 +- 5 files changed, 166208 insertions(+), 164156 deletions(-) diff --git a/grammar.js b/grammar.js index 513f485..4e48847 100644 --- a/grammar.js +++ b/grammar.js @@ -185,6 +185,7 @@ module.exports = grammar({ field('redirect', choice( repeat1(choice( $.file_redirect, + $.incomplete_redirect, $.heredoc_redirect, )), )), @@ -539,6 +540,12 @@ module.exports = grammar({ ), )), + // error recovery redirect with missing destination + incomplete_redirect: $ => prec(-1, seq( + field('descriptor', optional($.file_descriptor)), + choice('<', '>', '>>', '&>', '&>>', '<&', '>&', '>|'), + )), + heredoc_redirect: $ => seq( field('descriptor', optional($.file_descriptor)), choice('<<', '<<-'), @@ -594,7 +601,7 @@ module.exports = grammar({ $._literal, )), - _redirect: $ => choice($.file_redirect, $.herestring_redirect), + _redirect: $ => choice($.file_redirect, $.herestring_redirect, $.incomplete_redirect), // Expressions diff --git a/src/grammar.json b/src/grammar.json index fa9509d..c22df4c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -270,6 +270,10 @@ "type": "SYMBOL", "name": "file_redirect" }, + { + "type": "SYMBOL", + "name": "incomplete_redirect" + }, { "type": "SYMBOL", "name": "heredoc_redirect" @@ -2680,6 +2684,68 @@ ] } }, + "incomplete_redirect": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "descriptor", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "file_descriptor" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "&>" + }, + { + "type": "STRING", + "value": "&>>" + }, + { + "type": "STRING", + "value": "<&" + }, + { + "type": "STRING", + "value": ">&" + }, + { + "type": "STRING", + "value": ">|" + } + ] + } + ] + } + }, "heredoc_redirect": { "type": "SEQ", "members": [ @@ -2963,6 +3029,10 @@ { "type": "SYMBOL", "name": "herestring_redirect" + }, + { + "type": "SYMBOL", + "name": "incomplete_redirect" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 8cc6b30..976b825 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -857,6 +857,10 @@ { "type": "herestring_redirect", "named": true + }, + { + "type": "incomplete_redirect", + "named": true } ] } @@ -1390,6 +1394,10 @@ { "type": "herestring_redirect", "named": true + }, + { + "type": "incomplete_redirect", + "named": true } ] } @@ -1475,6 +1483,10 @@ { "type": "herestring_redirect", "named": true + }, + { + "type": "incomplete_redirect", + "named": true } ] }, @@ -1588,6 +1600,22 @@ ] } }, + { + "type": "incomplete_redirect", + "named": true, + "fields": { + "descriptor": { + "multiple": false, + "required": false, + "types": [ + { + "type": "file_descriptor", + "named": true + } + ] + } + } + }, { "type": "list", "named": true, @@ -1837,6 +1865,10 @@ { "type": "herestring_redirect", "named": true + }, + { + "type": "incomplete_redirect", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 4eeb137..eca1340 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.10 */ +/* Automatically @generated by tree-sitter v0.25.6 */ #include "tree_sitter/parser.h" @@ -17,7 +17,7 @@ #define LANGUAGE_VERSION 15 #define STATE_COUNT 7571 #define LARGE_STATE_COUNT 523 -#define SYMBOL_COUNT 280 +#define SYMBOL_COUNT 281 #define ALIAS_COUNT 0 #define TOKEN_COUNT 174 #define EXTERNAL_TOKEN_COUNT 29 @@ -240,73 +240,74 @@ enum ts_symbol_identifiers { sym_variable_assignments = 210, sym_subscript = 211, sym_file_redirect = 212, - sym_heredoc_redirect = 213, - sym__heredoc_pipeline = 214, - sym__heredoc_expression = 215, - aux_sym__heredoc_command = 216, - sym__heredoc_body = 217, - sym_heredoc_body = 218, - sym__simple_heredoc_body = 219, - sym_herestring_redirect = 220, - sym__expression = 221, - sym_binary_expression = 222, - sym_ternary_expression = 223, - sym_unary_expression = 224, - sym_postfix_expression = 225, - sym_parenthesized_expression = 226, - sym_arithmetic_expansion = 227, - sym_brace_expression = 228, - sym__arithmetic_expression = 229, - sym__arithmetic_literal = 230, - sym__arithmetic_binary_expression = 231, - sym__arithmetic_ternary_expression = 232, - sym__arithmetic_unary_expression = 233, - sym__arithmetic_postfix_expression = 234, - sym__arithmetic_parenthesized_expression = 235, - sym_concatenation = 236, - sym_string = 237, - sym_translated_string = 238, - sym_array = 239, - sym_number = 240, - sym_simple_expansion = 241, - sym_expansion = 242, - sym__expansion_body = 243, - sym__expansion_expression = 244, - sym__expansion_regex = 245, - sym__expansion_regex_replacement = 246, - sym__expansion_regex_removal = 247, - sym__expansion_max_length = 248, - sym__expansion_max_length_expression = 249, - sym__expansion_max_length_binary_expression = 250, - sym__expansion_operator = 251, - sym__concatenation_in_expansion = 252, - sym_command_substitution = 253, - sym_process_substitution = 254, - sym__extglob_blob = 255, - sym__c_terminator = 256, - aux_sym__statements_repeat1 = 257, - aux_sym_redirected_statement_repeat1 = 258, - aux_sym_redirected_statement_repeat2 = 259, - aux_sym_for_statement_repeat1 = 260, - aux_sym__for_body_repeat1 = 261, - aux_sym_if_statement_repeat1 = 262, - aux_sym_case_statement_repeat1 = 263, - aux_sym_case_item_repeat1 = 264, - aux_sym_compound_statement_repeat1 = 265, - aux_sym_pipeline_repeat1 = 266, - aux_sym_declaration_command_repeat1 = 267, - aux_sym_unset_command_repeat1 = 268, - aux_sym_command_repeat1 = 269, - aux_sym_command_repeat2 = 270, - aux_sym_variable_assignments_repeat1 = 271, - aux_sym_heredoc_body_repeat1 = 272, - aux_sym__literal_repeat1 = 273, - aux_sym_arithmetic_expansion_repeat1 = 274, - aux_sym_concatenation_repeat1 = 275, - aux_sym_string_repeat1 = 276, - aux_sym__expansion_body_repeat1 = 277, - aux_sym__expansion_regex_repeat1 = 278, - aux_sym__concatenation_in_expansion_repeat1 = 279, + sym_incomplete_redirect = 213, + sym_heredoc_redirect = 214, + sym__heredoc_pipeline = 215, + sym__heredoc_expression = 216, + aux_sym__heredoc_command = 217, + sym__heredoc_body = 218, + sym_heredoc_body = 219, + sym__simple_heredoc_body = 220, + sym_herestring_redirect = 221, + sym__expression = 222, + sym_binary_expression = 223, + sym_ternary_expression = 224, + sym_unary_expression = 225, + sym_postfix_expression = 226, + sym_parenthesized_expression = 227, + sym_arithmetic_expansion = 228, + sym_brace_expression = 229, + sym__arithmetic_expression = 230, + sym__arithmetic_literal = 231, + sym__arithmetic_binary_expression = 232, + sym__arithmetic_ternary_expression = 233, + sym__arithmetic_unary_expression = 234, + sym__arithmetic_postfix_expression = 235, + sym__arithmetic_parenthesized_expression = 236, + sym_concatenation = 237, + sym_string = 238, + sym_translated_string = 239, + sym_array = 240, + sym_number = 241, + sym_simple_expansion = 242, + sym_expansion = 243, + sym__expansion_body = 244, + sym__expansion_expression = 245, + sym__expansion_regex = 246, + sym__expansion_regex_replacement = 247, + sym__expansion_regex_removal = 248, + sym__expansion_max_length = 249, + sym__expansion_max_length_expression = 250, + sym__expansion_max_length_binary_expression = 251, + sym__expansion_operator = 252, + sym__concatenation_in_expansion = 253, + sym_command_substitution = 254, + sym_process_substitution = 255, + sym__extglob_blob = 256, + sym__c_terminator = 257, + aux_sym__statements_repeat1 = 258, + aux_sym_redirected_statement_repeat1 = 259, + aux_sym_redirected_statement_repeat2 = 260, + aux_sym_for_statement_repeat1 = 261, + aux_sym__for_body_repeat1 = 262, + aux_sym_if_statement_repeat1 = 263, + aux_sym_case_statement_repeat1 = 264, + aux_sym_case_item_repeat1 = 265, + aux_sym_compound_statement_repeat1 = 266, + aux_sym_pipeline_repeat1 = 267, + aux_sym_declaration_command_repeat1 = 268, + aux_sym_unset_command_repeat1 = 269, + aux_sym_command_repeat1 = 270, + aux_sym_command_repeat2 = 271, + aux_sym_variable_assignments_repeat1 = 272, + aux_sym_heredoc_body_repeat1 = 273, + aux_sym__literal_repeat1 = 274, + aux_sym_arithmetic_expansion_repeat1 = 275, + aux_sym_concatenation_repeat1 = 276, + aux_sym_string_repeat1 = 277, + aux_sym__expansion_body_repeat1 = 278, + aux_sym__expansion_regex_repeat1 = 279, + aux_sym__concatenation_in_expansion_repeat1 = 280, }; static const char * const ts_symbol_names[] = { @@ -523,6 +524,7 @@ static const char * const ts_symbol_names[] = { [sym_variable_assignments] = "variable_assignments", [sym_subscript] = "subscript", [sym_file_redirect] = "file_redirect", + [sym_incomplete_redirect] = "incomplete_redirect", [sym_heredoc_redirect] = "heredoc_redirect", [sym__heredoc_pipeline] = "pipeline", [sym__heredoc_expression] = "_heredoc_expression", @@ -806,6 +808,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_variable_assignments] = sym_variable_assignments, [sym_subscript] = sym_subscript, [sym_file_redirect] = sym_file_redirect, + [sym_incomplete_redirect] = sym_incomplete_redirect, [sym_heredoc_redirect] = sym_heredoc_redirect, [sym__heredoc_pipeline] = sym_pipeline, [sym__heredoc_expression] = sym__heredoc_expression, @@ -1728,6 +1731,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_incomplete_redirect] = { + .visible = true, + .named = true, + }, [sym_heredoc_redirect] = { .visible = true, .named = true, @@ -2773,10 +2780,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 14, [17] = 14, [18] = 15, - [19] = 14, - [20] = 15, + [19] = 15, + [20] = 14, [21] = 15, - [22] = 13, + [22] = 22, [23] = 23, [24] = 24, [25] = 25, @@ -2793,7 +2800,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [36] = 36, [37] = 37, [38] = 38, - [39] = 39, + [39] = 13, [40] = 40, [41] = 41, [42] = 42, @@ -2805,418 +2812,418 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [48] = 48, [49] = 49, [50] = 50, - [51] = 50, - [52] = 52, - [53] = 50, - [54] = 52, - [55] = 52, - [56] = 52, - [57] = 52, + [51] = 51, + [52] = 51, + [53] = 51, + [54] = 51, + [55] = 50, + [56] = 50, + [57] = 50, [58] = 50, - [59] = 52, - [60] = 52, - [61] = 52, + [59] = 50, + [60] = 50, + [61] = 50, [62] = 62, [63] = 63, - [64] = 64, + [64] = 63, [65] = 65, [66] = 66, - [67] = 26, - [68] = 26, - [69] = 64, + [67] = 67, + [68] = 68, + [69] = 69, [70] = 70, - [71] = 66, - [72] = 70, - [73] = 73, - [74] = 64, - [75] = 66, - [76] = 70, - [77] = 73, - [78] = 64, - [79] = 66, - [80] = 70, - [81] = 73, - [82] = 64, - [83] = 73, - [84] = 66, - [85] = 70, - [86] = 64, - [87] = 66, - [88] = 70, - [89] = 73, - [90] = 64, - [91] = 91, - [92] = 66, - [93] = 70, - [94] = 73, - [95] = 64, - [96] = 62, - [97] = 66, - [98] = 70, - [99] = 73, - [100] = 64, + [71] = 63, + [72] = 23, + [73] = 65, + [74] = 23, + [75] = 67, + [76] = 67, + [77] = 70, + [78] = 63, + [79] = 65, + [80] = 67, + [81] = 65, + [82] = 70, + [83] = 63, + [84] = 65, + [85] = 67, + [86] = 86, + [87] = 70, + [88] = 63, + [89] = 65, + [90] = 67, + [91] = 70, + [92] = 70, + [93] = 63, + [94] = 65, + [95] = 67, + [96] = 70, + [97] = 97, + [98] = 68, + [99] = 62, + [100] = 100, [101] = 66, - [102] = 102, - [103] = 102, - [104] = 104, - [105] = 105, - [106] = 63, - [107] = 65, - [108] = 102, - [109] = 62, - [110] = 104, - [111] = 105, - [112] = 63, - [113] = 65, - [114] = 102, - [115] = 62, - [116] = 104, - [117] = 105, - [118] = 63, - [119] = 65, - [120] = 102, + [102] = 69, + [103] = 70, + [104] = 63, + [105] = 97, + [106] = 68, + [107] = 62, + [108] = 100, + [109] = 66, + [110] = 69, + [111] = 111, + [112] = 97, + [113] = 68, + [114] = 62, + [115] = 100, + [116] = 66, + [117] = 69, + [118] = 65, + [119] = 97, + [120] = 68, [121] = 62, - [122] = 104, - [123] = 105, - [124] = 63, - [125] = 102, - [126] = 62, - [127] = 104, - [128] = 105, - [129] = 63, - [130] = 102, - [131] = 62, - [132] = 104, - [133] = 105, - [134] = 63, - [135] = 102, - [136] = 62, - [137] = 104, - [138] = 105, - [139] = 63, - [140] = 62, - [141] = 104, - [142] = 105, - [143] = 63, - [144] = 62, - [145] = 104, - [146] = 105, - [147] = 63, - [148] = 62, - [149] = 104, - [150] = 105, - [151] = 63, - [152] = 62, - [153] = 104, - [154] = 105, - [155] = 63, - [156] = 62, - [157] = 104, - [158] = 105, - [159] = 63, - [160] = 62, - [161] = 104, - [162] = 105, - [163] = 63, - [164] = 62, - [165] = 104, - [166] = 105, - [167] = 63, - [168] = 62, - [169] = 104, - [170] = 105, - [171] = 63, - [172] = 62, - [173] = 104, - [174] = 105, - [175] = 63, - [176] = 62, - [177] = 104, - [178] = 105, - [179] = 63, - [180] = 62, - [181] = 104, - [182] = 105, - [183] = 63, - [184] = 62, - [185] = 104, - [186] = 105, - [187] = 63, - [188] = 62, - [189] = 104, - [190] = 105, - [191] = 63, - [192] = 62, - [193] = 104, - [194] = 105, - [195] = 63, - [196] = 62, - [197] = 104, - [198] = 105, - [199] = 63, - [200] = 62, - [201] = 104, - [202] = 105, - [203] = 63, - [204] = 62, - [205] = 104, - [206] = 105, - [207] = 63, - [208] = 62, - [209] = 104, - [210] = 105, - [211] = 63, - [212] = 62, - [213] = 104, - [214] = 105, - [215] = 63, - [216] = 62, - [217] = 104, - [218] = 105, - [219] = 63, - [220] = 62, - [221] = 104, - [222] = 105, - [223] = 63, - [224] = 62, - [225] = 104, - [226] = 105, - [227] = 63, - [228] = 62, - [229] = 104, - [230] = 105, - [231] = 63, - [232] = 62, - [233] = 104, - [234] = 105, - [235] = 63, - [236] = 62, - [237] = 104, - [238] = 105, - [239] = 63, - [240] = 62, - [241] = 104, - [242] = 105, - [243] = 63, - [244] = 62, - [245] = 104, - [246] = 105, - [247] = 63, - [248] = 62, - [249] = 104, - [250] = 105, - [251] = 63, - [252] = 62, - [253] = 104, - [254] = 105, - [255] = 63, - [256] = 62, - [257] = 104, - [258] = 105, - [259] = 63, - [260] = 62, - [261] = 104, - [262] = 105, - [263] = 63, - [264] = 62, - [265] = 104, - [266] = 105, - [267] = 63, - [268] = 62, - [269] = 104, - [270] = 105, - [271] = 63, - [272] = 62, - [273] = 104, - [274] = 105, - [275] = 63, - [276] = 62, - [277] = 104, - [278] = 105, - [279] = 63, - [280] = 62, - [281] = 104, - [282] = 105, - [283] = 63, - [284] = 62, - [285] = 104, - [286] = 105, - [287] = 63, - [288] = 62, - [289] = 104, - [290] = 105, - [291] = 63, - [292] = 62, - [293] = 104, - [294] = 105, - [295] = 63, - [296] = 62, - [297] = 104, - [298] = 105, - [299] = 63, - [300] = 62, - [301] = 104, - [302] = 105, - [303] = 63, - [304] = 62, - [305] = 104, - [306] = 105, - [307] = 63, - [308] = 62, - [309] = 104, - [310] = 105, - [311] = 63, - [312] = 62, - [313] = 104, - [314] = 105, - [315] = 63, - [316] = 62, - [317] = 104, - [318] = 105, - [319] = 63, - [320] = 62, - [321] = 104, - [322] = 105, - [323] = 63, - [324] = 62, - [325] = 104, - [326] = 105, - [327] = 63, - [328] = 62, - [329] = 104, - [330] = 105, - [331] = 63, - [332] = 62, - [333] = 104, - [334] = 105, - [335] = 63, - [336] = 62, - [337] = 104, - [338] = 105, - [339] = 63, - [340] = 62, - [341] = 104, - [342] = 105, - [343] = 63, - [344] = 62, - [345] = 104, - [346] = 105, - [347] = 63, - [348] = 62, - [349] = 104, - [350] = 105, - [351] = 63, - [352] = 62, - [353] = 104, - [354] = 105, - [355] = 63, - [356] = 62, - [357] = 104, - [358] = 105, - [359] = 63, - [360] = 62, - [361] = 104, - [362] = 105, - [363] = 63, - [364] = 62, - [365] = 104, - [366] = 105, - [367] = 62, - [368] = 104, - [369] = 105, - [370] = 62, - [371] = 104, - [372] = 105, - [373] = 62, - [374] = 104, - [375] = 105, - [376] = 62, - [377] = 104, - [378] = 105, - [379] = 62, - [380] = 104, - [381] = 105, - [382] = 62, - [383] = 104, - [384] = 105, - [385] = 62, - [386] = 104, - [387] = 105, - [388] = 62, - [389] = 104, - [390] = 105, - [391] = 62, - [392] = 104, - [393] = 105, - [394] = 62, - [395] = 104, - [396] = 105, - [397] = 62, - [398] = 104, - [399] = 105, - [400] = 62, - [401] = 104, - [402] = 105, - [403] = 62, - [404] = 104, - [405] = 105, - [406] = 62, - [407] = 104, - [408] = 105, - [409] = 409, - [410] = 410, - [411] = 104, - [412] = 105, - [413] = 73, + [122] = 100, + [123] = 66, + [124] = 124, + [125] = 97, + [126] = 68, + [127] = 62, + [128] = 100, + [129] = 66, + [130] = 97, + [131] = 68, + [132] = 62, + [133] = 100, + [134] = 66, + [135] = 97, + [136] = 68, + [137] = 62, + [138] = 100, + [139] = 66, + [140] = 68, + [141] = 62, + [142] = 100, + [143] = 66, + [144] = 68, + [145] = 62, + [146] = 100, + [147] = 66, + [148] = 68, + [149] = 62, + [150] = 100, + [151] = 66, + [152] = 68, + [153] = 62, + [154] = 100, + [155] = 66, + [156] = 68, + [157] = 62, + [158] = 100, + [159] = 66, + [160] = 68, + [161] = 62, + [162] = 100, + [163] = 66, + [164] = 68, + [165] = 62, + [166] = 100, + [167] = 66, + [168] = 68, + [169] = 62, + [170] = 100, + [171] = 66, + [172] = 68, + [173] = 62, + [174] = 100, + [175] = 66, + [176] = 68, + [177] = 62, + [178] = 100, + [179] = 66, + [180] = 68, + [181] = 62, + [182] = 100, + [183] = 66, + [184] = 68, + [185] = 62, + [186] = 100, + [187] = 66, + [188] = 68, + [189] = 62, + [190] = 100, + [191] = 66, + [192] = 68, + [193] = 62, + [194] = 100, + [195] = 66, + [196] = 68, + [197] = 62, + [198] = 100, + [199] = 66, + [200] = 68, + [201] = 62, + [202] = 100, + [203] = 66, + [204] = 68, + [205] = 62, + [206] = 100, + [207] = 66, + [208] = 68, + [209] = 62, + [210] = 100, + [211] = 66, + [212] = 68, + [213] = 62, + [214] = 100, + [215] = 66, + [216] = 68, + [217] = 62, + [218] = 100, + [219] = 66, + [220] = 68, + [221] = 62, + [222] = 100, + [223] = 66, + [224] = 68, + [225] = 62, + [226] = 100, + [227] = 66, + [228] = 68, + [229] = 62, + [230] = 100, + [231] = 66, + [232] = 68, + [233] = 62, + [234] = 100, + [235] = 66, + [236] = 68, + [237] = 62, + [238] = 100, + [239] = 66, + [240] = 68, + [241] = 62, + [242] = 100, + [243] = 66, + [244] = 68, + [245] = 62, + [246] = 100, + [247] = 66, + [248] = 68, + [249] = 62, + [250] = 100, + [251] = 66, + [252] = 68, + [253] = 62, + [254] = 67, + [255] = 66, + [256] = 68, + [257] = 62, + [258] = 100, + [259] = 66, + [260] = 68, + [261] = 62, + [262] = 100, + [263] = 66, + [264] = 68, + [265] = 62, + [266] = 100, + [267] = 66, + [268] = 68, + [269] = 62, + [270] = 100, + [271] = 66, + [272] = 68, + [273] = 62, + [274] = 100, + [275] = 66, + [276] = 68, + [277] = 62, + [278] = 100, + [279] = 66, + [280] = 68, + [281] = 62, + [282] = 100, + [283] = 66, + [284] = 68, + [285] = 62, + [286] = 100, + [287] = 66, + [288] = 68, + [289] = 62, + [290] = 100, + [291] = 66, + [292] = 68, + [293] = 62, + [294] = 100, + [295] = 66, + [296] = 68, + [297] = 62, + [298] = 100, + [299] = 66, + [300] = 68, + [301] = 62, + [302] = 100, + [303] = 66, + [304] = 68, + [305] = 62, + [306] = 100, + [307] = 66, + [308] = 68, + [309] = 62, + [310] = 100, + [311] = 66, + [312] = 68, + [313] = 62, + [314] = 100, + [315] = 66, + [316] = 68, + [317] = 62, + [318] = 100, + [319] = 66, + [320] = 68, + [321] = 62, + [322] = 100, + [323] = 66, + [324] = 68, + [325] = 62, + [326] = 100, + [327] = 66, + [328] = 68, + [329] = 62, + [330] = 100, + [331] = 66, + [332] = 68, + [333] = 62, + [334] = 100, + [335] = 66, + [336] = 68, + [337] = 62, + [338] = 100, + [339] = 66, + [340] = 68, + [341] = 62, + [342] = 100, + [343] = 66, + [344] = 68, + [345] = 62, + [346] = 100, + [347] = 66, + [348] = 68, + [349] = 62, + [350] = 100, + [351] = 66, + [352] = 68, + [353] = 62, + [354] = 100, + [355] = 66, + [356] = 68, + [357] = 62, + [358] = 100, + [359] = 66, + [360] = 68, + [361] = 62, + [362] = 100, + [363] = 66, + [364] = 68, + [365] = 62, + [366] = 100, + [367] = 68, + [368] = 62, + [369] = 100, + [370] = 68, + [371] = 62, + [372] = 100, + [373] = 68, + [374] = 62, + [375] = 100, + [376] = 68, + [377] = 62, + [378] = 100, + [379] = 68, + [380] = 97, + [381] = 100, + [382] = 68, + [383] = 62, + [384] = 100, + [385] = 68, + [386] = 62, + [387] = 100, + [388] = 68, + [389] = 62, + [390] = 100, + [391] = 68, + [392] = 62, + [393] = 100, + [394] = 68, + [395] = 62, + [396] = 100, + [397] = 68, + [398] = 62, + [399] = 100, + [400] = 68, + [401] = 62, + [402] = 100, + [403] = 68, + [404] = 62, + [405] = 100, + [406] = 68, + [407] = 62, + [408] = 100, + [409] = 67, + [410] = 62, + [411] = 100, + [412] = 70, + [413] = 100, [414] = 414, [415] = 415, [416] = 416, - [417] = 417, + [417] = 416, [418] = 418, - [419] = 416, - [420] = 416, - [421] = 416, - [422] = 418, + [419] = 414, + [420] = 418, + [421] = 418, + [422] = 422, [423] = 418, - [424] = 418, - [425] = 418, + [424] = 416, + [425] = 416, [426] = 414, - [427] = 414, + [427] = 416, [428] = 414, [429] = 429, [430] = 430, - [431] = 430, + [431] = 431, [432] = 432, - [433] = 433, - [434] = 433, - [435] = 430, - [436] = 433, - [437] = 430, - [438] = 433, - [439] = 430, - [440] = 433, - [441] = 430, - [442] = 430, - [443] = 433, - [444] = 433, - [445] = 430, - [446] = 433, + [433] = 432, + [434] = 431, + [435] = 432, + [436] = 431, + [437] = 432, + [438] = 432, + [439] = 431, + [440] = 432, + [441] = 431, + [442] = 431, + [443] = 432, + [444] = 431, + [445] = 432, + [446] = 431, [447] = 447, - [448] = 447, - [449] = 447, + [448] = 448, + [449] = 448, [450] = 447, - [451] = 451, - [452] = 451, - [453] = 451, + [451] = 447, + [452] = 447, + [453] = 448, [454] = 447, - [455] = 451, + [455] = 448, [456] = 447, - [457] = 451, - [458] = 451, + [457] = 448, + [458] = 448, [459] = 459, [460] = 460, - [461] = 459, - [462] = 460, + [461] = 460, + [462] = 459, [463] = 463, [464] = 464, [465] = 465, @@ -3244,5825 +3251,5825 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [487] = 487, [488] = 488, [489] = 489, - [490] = 490, + [490] = 468, [491] = 491, - [492] = 466, - [493] = 463, - [494] = 464, - [495] = 468, - [496] = 467, - [497] = 465, - [498] = 473, + [492] = 463, + [493] = 493, + [494] = 467, + [495] = 464, + [496] = 465, + [497] = 466, + [498] = 483, [499] = 480, - [500] = 469, - [501] = 481, - [502] = 482, - [503] = 483, - [504] = 484, - [505] = 471, - [506] = 477, - [507] = 478, - [508] = 486, - [509] = 472, - [510] = 487, - [511] = 479, - [512] = 474, - [513] = 485, - [514] = 475, - [515] = 476, - [516] = 470, - [517] = 489, - [518] = 488, - [519] = 491, - [520] = 490, - [521] = 521, - [522] = 521, + [500] = 484, + [501] = 485, + [502] = 486, + [503] = 470, + [504] = 478, + [505] = 472, + [506] = 471, + [507] = 479, + [508] = 473, + [509] = 481, + [510] = 469, + [511] = 475, + [512] = 487, + [513] = 476, + [514] = 474, + [515] = 477, + [516] = 482, + [517] = 488, + [518] = 489, + [519] = 493, + [520] = 520, + [521] = 520, + [522] = 491, [523] = 523, [524] = 524, [525] = 523, [526] = 524, [527] = 527, - [528] = 524, - [529] = 529, + [528] = 523, + [529] = 524, [530] = 523, [531] = 531, - [532] = 524, - [533] = 523, - [534] = 534, - [535] = 529, - [536] = 460, + [532] = 532, + [533] = 524, + [534] = 524, + [535] = 535, + [536] = 527, [537] = 459, - [538] = 524, + [538] = 532, [539] = 539, - [540] = 523, - [541] = 541, - [542] = 523, - [543] = 527, - [544] = 524, - [545] = 531, - [546] = 460, - [547] = 459, - [548] = 531, - [549] = 459, - [550] = 541, - [551] = 529, - [552] = 527, - [553] = 531, - [554] = 534, - [555] = 527, - [556] = 529, - [557] = 539, - [558] = 460, - [559] = 541, + [540] = 531, + [541] = 523, + [542] = 542, + [543] = 460, + [544] = 523, + [545] = 524, + [546] = 459, + [547] = 460, + [548] = 527, + [549] = 531, + [550] = 542, + [551] = 532, + [552] = 539, + [553] = 535, + [554] = 527, + [555] = 531, + [556] = 532, + [557] = 460, + [558] = 459, + [559] = 559, [560] = 460, - [561] = 527, - [562] = 531, - [563] = 534, - [564] = 459, - [565] = 534, - [566] = 539, - [567] = 459, - [568] = 541, - [569] = 569, - [570] = 570, - [571] = 571, + [561] = 535, + [562] = 539, + [563] = 532, + [564] = 564, + [565] = 565, + [566] = 542, + [567] = 567, + [568] = 568, + [569] = 542, + [570] = 459, + [571] = 460, [572] = 572, [573] = 539, [574] = 460, - [575] = 460, - [576] = 459, - [577] = 527, - [578] = 529, - [579] = 531, - [580] = 580, - [581] = 524, - [582] = 460, - [583] = 459, - [584] = 460, - [585] = 459, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 539, - [590] = 580, - [591] = 591, - [592] = 569, - [593] = 571, - [594] = 572, - [595] = 569, - [596] = 571, - [597] = 572, - [598] = 598, - [599] = 599, - [600] = 534, - [601] = 539, - [602] = 460, - [603] = 541, - [604] = 459, - [605] = 523, - [606] = 599, - [607] = 534, - [608] = 608, - [609] = 569, - [610] = 608, - [611] = 588, - [612] = 586, - [613] = 587, - [614] = 591, - [615] = 571, - [616] = 572, - [617] = 569, - [618] = 608, + [575] = 459, + [576] = 527, + [577] = 531, + [578] = 532, + [579] = 459, + [580] = 527, + [581] = 535, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 460, + [587] = 459, + [588] = 460, + [589] = 459, + [590] = 590, + [591] = 559, + [592] = 592, + [593] = 564, + [594] = 594, + [595] = 584, + [596] = 460, + [597] = 559, + [598] = 539, + [599] = 582, + [600] = 459, + [601] = 565, + [602] = 567, + [603] = 568, + [604] = 565, + [605] = 567, + [606] = 568, + [607] = 584, + [608] = 584, + [609] = 584, + [610] = 584, + [611] = 539, + [612] = 584, + [613] = 535, + [614] = 535, + [615] = 585, + [616] = 542, + [617] = 584, + [618] = 524, [619] = 523, - [620] = 571, - [621] = 572, - [622] = 572, - [623] = 569, - [624] = 608, - [625] = 459, - [626] = 608, - [627] = 460, - [628] = 459, - [629] = 571, - [630] = 460, - [631] = 608, - [632] = 459, - [633] = 569, - [634] = 608, - [635] = 571, - [636] = 598, - [637] = 608, - [638] = 572, + [620] = 620, + [621] = 564, + [622] = 594, + [623] = 559, + [624] = 567, + [625] = 568, + [626] = 460, + [627] = 459, + [628] = 565, + [629] = 567, + [630] = 568, + [631] = 592, + [632] = 594, + [633] = 565, + [634] = 559, + [635] = 592, + [636] = 564, + [637] = 459, + [638] = 567, [639] = 524, - [640] = 586, - [641] = 587, - [642] = 460, - [643] = 531, - [644] = 598, - [645] = 569, - [646] = 571, - [647] = 572, - [648] = 588, - [649] = 586, + [640] = 620, + [641] = 523, + [642] = 565, + [643] = 460, + [644] = 567, + [645] = 568, + [646] = 460, + [647] = 559, + [648] = 583, + [649] = 564, [650] = 459, - [651] = 587, - [652] = 586, - [653] = 587, - [654] = 586, - [655] = 587, - [656] = 598, - [657] = 591, - [658] = 460, - [659] = 571, - [660] = 569, - [661] = 571, - [662] = 572, - [663] = 588, - [664] = 586, - [665] = 587, - [666] = 572, - [667] = 460, - [668] = 459, - [669] = 460, - [670] = 459, - [671] = 460, - [672] = 459, - [673] = 569, - [674] = 460, - [675] = 459, - [676] = 569, - [677] = 571, - [678] = 572, - [679] = 527, - [680] = 529, - [681] = 591, - [682] = 570, - [683] = 586, - [684] = 586, - [685] = 587, - [686] = 587, - [687] = 687, - [688] = 688, - [689] = 688, - [690] = 569, - [691] = 580, - [692] = 460, - [693] = 459, - [694] = 687, - [695] = 527, - [696] = 688, - [697] = 687, - [698] = 569, - [699] = 529, - [700] = 460, - [701] = 459, - [702] = 531, - [703] = 586, - [704] = 688, - [705] = 591, - [706] = 687, - [707] = 572, - [708] = 688, - [709] = 587, - [710] = 687, - [711] = 571, - [712] = 569, + [651] = 564, + [652] = 565, + [653] = 559, + [654] = 590, + [655] = 564, + [656] = 568, + [657] = 531, + [658] = 459, + [659] = 659, + [660] = 568, + [661] = 590, + [662] = 592, + [663] = 663, + [664] = 559, + [665] = 565, + [666] = 590, + [667] = 459, + [668] = 567, + [669] = 568, + [670] = 564, + [671] = 659, + [672] = 565, + [673] = 594, + [674] = 592, + [675] = 594, + [676] = 663, + [677] = 460, + [678] = 620, + [679] = 567, + [680] = 592, + [681] = 659, + [682] = 568, + [683] = 460, + [684] = 459, + [685] = 460, + [686] = 663, + [687] = 460, + [688] = 565, + [689] = 659, + [690] = 559, + [691] = 620, + [692] = 564, + [693] = 594, + [694] = 567, + [695] = 568, + [696] = 460, + [697] = 594, + [698] = 567, + [699] = 559, + [700] = 459, + [701] = 565, + [702] = 583, + [703] = 663, + [704] = 527, + [705] = 564, + [706] = 663, + [707] = 532, + [708] = 592, + [709] = 559, + [710] = 659, + [711] = 583, + [712] = 564, [713] = 459, - [714] = 571, - [715] = 460, - [716] = 588, - [717] = 459, - [718] = 569, - [719] = 459, - [720] = 571, - [721] = 591, - [722] = 571, - [723] = 572, + [714] = 559, + [715] = 459, + [716] = 564, + [717] = 460, + [718] = 459, + [719] = 527, + [720] = 559, + [721] = 564, + [722] = 565, + [723] = 567, [724] = 572, - [725] = 598, - [726] = 599, - [727] = 460, - [728] = 539, - [729] = 460, - [730] = 460, - [731] = 541, - [732] = 459, - [733] = 460, - [734] = 459, - [735] = 460, - [736] = 588, - [737] = 586, - [738] = 459, - [739] = 587, - [740] = 534, - [741] = 570, - [742] = 460, - [743] = 587, - [744] = 459, - [745] = 460, - [746] = 459, - [747] = 541, - [748] = 459, - [749] = 460, + [725] = 592, + [726] = 594, + [727] = 531, + [728] = 568, + [729] = 532, + [730] = 565, + [731] = 567, + [732] = 460, + [733] = 459, + [734] = 590, + [735] = 583, + [736] = 460, + [737] = 459, + [738] = 559, + [739] = 460, + [740] = 565, + [741] = 559, + [742] = 567, + [743] = 568, + [744] = 460, + [745] = 459, + [746] = 592, + [747] = 594, + [748] = 564, + [749] = 565, [750] = 459, [751] = 460, - [752] = 459, - [753] = 580, - [754] = 460, - [755] = 459, - [756] = 569, - [757] = 569, - [758] = 571, - [759] = 571, - [760] = 460, - [761] = 534, - [762] = 586, - [763] = 599, - [764] = 587, - [765] = 572, - [766] = 586, - [767] = 459, - [768] = 587, - [769] = 586, - [770] = 587, - [771] = 586, + [752] = 567, + [753] = 459, + [754] = 568, + [755] = 582, + [756] = 583, + [757] = 620, + [758] = 585, + [759] = 592, + [760] = 535, + [761] = 594, + [762] = 572, + [763] = 542, + [764] = 460, + [765] = 459, + [766] = 590, + [767] = 592, + [768] = 460, + [769] = 594, + [770] = 539, + [771] = 564, [772] = 460, - [773] = 459, - [774] = 459, - [775] = 460, - [776] = 460, - [777] = 459, - [778] = 778, - [779] = 539, + [773] = 460, + [774] = 568, + [775] = 459, + [776] = 592, + [777] = 565, + [778] = 567, + [779] = 592, [780] = 460, - [781] = 781, - [782] = 782, - [783] = 783, + [781] = 594, + [782] = 585, + [783] = 594, [784] = 459, - [785] = 785, - [786] = 572, - [787] = 460, - [788] = 586, - [789] = 586, - [790] = 587, - [791] = 587, - [792] = 460, - [793] = 793, - [794] = 571, - [795] = 569, - [796] = 796, - [797] = 571, - [798] = 572, - [799] = 459, - [800] = 800, - [801] = 569, - [802] = 466, - [803] = 463, - [804] = 464, - [805] = 465, - [806] = 460, - [807] = 460, - [808] = 459, - [809] = 459, - [810] = 810, - [811] = 475, - [812] = 477, - [813] = 466, - [814] = 785, - [815] = 463, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 464, - [820] = 569, - [821] = 571, - [822] = 572, - [823] = 586, - [824] = 476, - [825] = 479, - [826] = 465, - [827] = 571, + [785] = 592, + [786] = 542, + [787] = 459, + [788] = 460, + [789] = 460, + [790] = 459, + [791] = 539, + [792] = 459, + [793] = 460, + [794] = 459, + [795] = 460, + [796] = 459, + [797] = 594, + [798] = 798, + [799] = 582, + [800] = 460, + [801] = 592, + [802] = 594, + [803] = 460, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 459, + [808] = 559, + [809] = 564, + [810] = 559, + [811] = 811, + [812] = 565, + [813] = 564, + [814] = 567, + [815] = 535, + [816] = 460, + [817] = 459, + [818] = 459, + [819] = 459, + [820] = 460, + [821] = 459, + [822] = 592, + [823] = 594, + [824] = 798, + [825] = 460, + [826] = 459, + [827] = 827, [828] = 828, - [829] = 572, - [830] = 783, - [831] = 466, - [832] = 473, - [833] = 463, - [834] = 480, - [835] = 464, - [836] = 469, - [837] = 481, - [838] = 838, - [839] = 839, - [840] = 465, - [841] = 482, - [842] = 569, - [843] = 591, - [844] = 571, - [845] = 587, - [846] = 782, - [847] = 483, - [848] = 484, - [849] = 796, - [850] = 572, - [851] = 598, + [829] = 460, + [830] = 564, + [831] = 805, + [832] = 565, + [833] = 460, + [834] = 459, + [835] = 463, + [836] = 464, + [837] = 467, + [838] = 466, + [839] = 559, + [840] = 811, + [841] = 592, + [842] = 594, + [843] = 567, + [844] = 568, + [845] = 565, + [846] = 567, + [847] = 568, + [848] = 806, + [849] = 559, + [850] = 850, + [851] = 564, [852] = 478, - [853] = 486, - [854] = 569, - [855] = 793, - [856] = 856, + [853] = 564, + [854] = 798, + [855] = 486, + [856] = 798, [857] = 470, - [858] = 487, - [859] = 485, - [860] = 800, + [858] = 559, + [859] = 806, + [860] = 485, [861] = 472, - [862] = 474, - [863] = 588, - [864] = 586, - [865] = 781, - [866] = 587, - [867] = 471, - [868] = 793, - [869] = 587, - [870] = 569, - [871] = 571, - [872] = 572, - [873] = 782, - [874] = 460, - [875] = 459, - [876] = 588, - [877] = 465, - [878] = 810, - [879] = 838, - [880] = 880, - [881] = 817, - [882] = 818, - [883] = 466, - [884] = 800, - [885] = 591, - [886] = 463, - [887] = 488, - [888] = 478, - [889] = 486, - [890] = 470, - [891] = 487, - [892] = 485, - [893] = 472, - [894] = 474, - [895] = 464, - [896] = 478, - [897] = 486, - [898] = 470, - [899] = 487, - [900] = 460, - [901] = 459, - [902] = 485, - [903] = 475, - [904] = 477, - [905] = 472, - [906] = 474, - [907] = 466, - [908] = 476, - [909] = 479, - [910] = 463, + [862] = 473, + [863] = 806, + [864] = 471, + [865] = 487, + [866] = 474, + [867] = 827, + [868] = 475, + [869] = 476, + [870] = 477, + [871] = 564, + [872] = 479, + [873] = 463, + [874] = 874, + [875] = 874, + [876] = 876, + [877] = 877, + [878] = 464, + [879] = 828, + [880] = 805, + [881] = 469, + [882] = 467, + [883] = 874, + [884] = 480, + [885] = 565, + [886] = 567, + [887] = 484, + [888] = 568, + [889] = 466, + [890] = 594, + [891] = 559, + [892] = 483, + [893] = 481, + [894] = 463, + [895] = 805, + [896] = 874, + [897] = 592, + [898] = 811, + [899] = 583, + [900] = 466, + [901] = 901, + [902] = 902, + [903] = 874, + [904] = 565, + [905] = 567, + [906] = 565, + [907] = 620, + [908] = 874, + [909] = 909, + [910] = 811, [911] = 464, - [912] = 465, - [913] = 475, - [914] = 477, - [915] = 473, - [916] = 480, - [917] = 469, - [918] = 481, - [919] = 471, - [920] = 476, - [921] = 479, - [922] = 482, - [923] = 483, - [924] = 586, - [925] = 460, - [926] = 459, - [927] = 473, - [928] = 480, - [929] = 469, - [930] = 481, - [931] = 465, - [932] = 471, - [933] = 598, - [934] = 482, - [935] = 483, - [936] = 484, - [937] = 880, - [938] = 880, - [939] = 782, - [940] = 460, - [941] = 459, - [942] = 880, - [943] = 943, - [944] = 781, - [945] = 466, - [946] = 569, - [947] = 571, - [948] = 572, - [949] = 880, - [950] = 463, - [951] = 828, - [952] = 839, - [953] = 785, - [954] = 783, - [955] = 796, - [956] = 781, - [957] = 783, - [958] = 793, - [959] = 856, - [960] = 816, - [961] = 880, - [962] = 800, - [963] = 796, - [964] = 569, - [965] = 571, - [966] = 586, - [967] = 587, - [968] = 464, - [969] = 785, - [970] = 880, - [971] = 572, + [912] = 467, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 567, + [917] = 568, + [918] = 568, + [919] = 559, + [920] = 874, + [921] = 874, + [922] = 590, + [923] = 592, + [924] = 850, + [925] = 482, + [926] = 594, + [927] = 564, + [928] = 466, + [929] = 913, + [930] = 930, + [931] = 806, + [932] = 489, + [933] = 472, + [934] = 473, + [935] = 471, + [936] = 487, + [937] = 474, + [938] = 475, + [939] = 476, + [940] = 876, + [941] = 877, + [942] = 472, + [943] = 473, + [944] = 471, + [945] = 487, + [946] = 460, + [947] = 459, + [948] = 474, + [949] = 477, + [950] = 479, + [951] = 475, + [952] = 476, + [953] = 463, + [954] = 482, + [955] = 483, + [956] = 464, + [957] = 467, + [958] = 466, + [959] = 477, + [960] = 479, + [961] = 478, + [962] = 469, + [963] = 480, + [964] = 484, + [965] = 481, + [966] = 909, + [967] = 482, + [968] = 483, + [969] = 485, + [970] = 486, + [971] = 470, [972] = 460, [973] = 459, - [974] = 880, - [975] = 586, - [976] = 587, + [974] = 478, + [975] = 469, + [976] = 480, [977] = 484, - [978] = 472, - [979] = 459, - [980] = 460, - [981] = 459, - [982] = 463, - [983] = 470, - [984] = 491, - [985] = 466, - [986] = 463, - [987] = 464, + [978] = 481, + [979] = 915, + [980] = 485, + [981] = 486, + [982] = 470, + [983] = 464, + [984] = 984, + [985] = 984, + [986] = 827, + [987] = 590, [988] = 466, - [989] = 463, - [990] = 464, - [991] = 465, - [992] = 465, - [993] = 785, - [994] = 464, - [995] = 488, - [996] = 478, - [997] = 486, - [998] = 569, - [999] = 571, - [1000] = 572, - [1001] = 586, - [1002] = 460, - [1003] = 587, - [1004] = 459, - [1005] = 488, - [1006] = 460, - [1007] = 459, - [1008] = 810, - [1009] = 838, - [1010] = 478, - [1011] = 486, - [1012] = 470, - [1013] = 487, - [1014] = 485, - [1015] = 1015, - [1016] = 817, - [1017] = 472, - [1018] = 474, - [1019] = 818, - [1020] = 1020, - [1021] = 1021, - [1022] = 460, - [1023] = 459, - [1024] = 475, - [1025] = 477, - [1026] = 856, - [1027] = 1027, - [1028] = 816, - [1029] = 1029, - [1030] = 476, - [1031] = 479, - [1032] = 783, - [1033] = 473, - [1034] = 480, - [1035] = 469, - [1036] = 481, - [1037] = 471, - [1038] = 482, - [1039] = 483, - [1040] = 484, - [1041] = 487, - [1042] = 472, - [1043] = 469, - [1044] = 481, - [1045] = 1045, - [1046] = 474, - [1047] = 1047, - [1048] = 482, - [1049] = 485, - [1050] = 483, - [1051] = 484, - [1052] = 487, - [1053] = 856, - [1054] = 475, - [1055] = 816, - [1056] = 1056, + [989] = 460, + [990] = 459, + [991] = 984, + [992] = 798, + [993] = 463, + [994] = 583, + [995] = 464, + [996] = 828, + [997] = 811, + [998] = 559, + [999] = 559, + [1000] = 564, + [1001] = 565, + [1002] = 567, + [1003] = 564, + [1004] = 568, + [1005] = 565, + [1006] = 567, + [1007] = 805, + [1008] = 592, + [1009] = 594, + [1010] = 467, + [1011] = 463, + [1012] = 620, + [1013] = 568, + [1014] = 460, + [1015] = 459, + [1016] = 592, + [1017] = 594, + [1018] = 559, + [1019] = 564, + [1020] = 565, + [1021] = 567, + [1022] = 568, + [1023] = 467, + [1024] = 850, + [1025] = 850, + [1026] = 1026, + [1027] = 827, + [1028] = 828, + [1029] = 811, + [1030] = 460, + [1031] = 459, + [1032] = 806, + [1033] = 592, + [1034] = 594, + [1035] = 901, + [1036] = 902, + [1037] = 914, + [1038] = 467, + [1039] = 472, + [1040] = 469, + [1041] = 473, + [1042] = 474, + [1043] = 901, + [1044] = 902, + [1045] = 459, + [1046] = 477, + [1047] = 876, + [1048] = 471, + [1049] = 913, + [1050] = 914, + [1051] = 487, + [1052] = 474, + [1053] = 876, + [1054] = 460, + [1055] = 459, + [1056] = 489, [1057] = 460, - [1058] = 459, - [1059] = 460, - [1060] = 1047, - [1061] = 459, + [1058] = 877, + [1059] = 475, + [1060] = 476, + [1061] = 915, [1062] = 460, - [1063] = 1063, - [1064] = 1064, - [1065] = 459, - [1066] = 476, - [1067] = 479, - [1068] = 473, - [1069] = 477, - [1070] = 480, - [1071] = 1071, - [1072] = 474, - [1073] = 471, - [1074] = 782, - [1075] = 466, - [1076] = 463, - [1077] = 469, - [1078] = 481, - [1079] = 482, - [1080] = 483, - [1081] = 484, - [1082] = 485, - [1083] = 1083, - [1084] = 471, - [1085] = 476, - [1086] = 479, - [1087] = 470, - [1088] = 473, - [1089] = 943, - [1090] = 477, - [1091] = 480, - [1092] = 800, - [1093] = 475, - [1094] = 828, - [1095] = 839, - [1096] = 1096, - [1097] = 1047, - [1098] = 793, - [1099] = 810, - [1100] = 838, - [1101] = 817, - [1102] = 818, - [1103] = 460, - [1104] = 459, - [1105] = 810, - [1106] = 838, - [1107] = 817, - [1108] = 818, - [1109] = 478, - [1110] = 486, - [1111] = 586, - [1112] = 465, - [1113] = 587, - [1114] = 466, + [1063] = 459, + [1064] = 471, + [1065] = 493, + [1066] = 901, + [1067] = 902, + [1068] = 459, + [1069] = 913, + [1070] = 914, + [1071] = 463, + [1072] = 463, + [1073] = 464, + [1074] = 482, + [1075] = 592, + [1076] = 466, + [1077] = 471, + [1078] = 464, + [1079] = 467, + [1080] = 463, + [1081] = 464, + [1082] = 594, + [1083] = 463, + [1084] = 460, + [1085] = 459, + [1086] = 464, + [1087] = 467, + [1088] = 467, + [1089] = 483, + [1090] = 466, + [1091] = 477, + [1092] = 472, + [1093] = 1093, + [1094] = 1094, + [1095] = 473, + [1096] = 479, + [1097] = 466, + [1098] = 877, + [1099] = 1093, + [1100] = 1094, + [1101] = 460, + [1102] = 460, + [1103] = 459, + [1104] = 475, + [1105] = 487, + [1106] = 559, + [1107] = 489, + [1108] = 564, + [1109] = 460, + [1110] = 1110, + [1111] = 1111, + [1112] = 459, + [1113] = 466, + [1114] = 482, [1115] = 463, [1116] = 464, - [1117] = 828, - [1118] = 839, - [1119] = 465, - [1120] = 466, - [1121] = 1121, - [1122] = 1122, - [1123] = 1121, - [1124] = 1122, - [1125] = 796, - [1126] = 781, - [1127] = 783, - [1128] = 782, - [1129] = 465, - [1130] = 800, - [1131] = 460, - [1132] = 586, - [1133] = 587, - [1134] = 459, - [1135] = 460, - [1136] = 1136, - [1137] = 1137, + [1117] = 460, + [1118] = 915, + [1119] = 476, + [1120] = 565, + [1121] = 567, + [1122] = 568, + [1123] = 474, + [1124] = 592, + [1125] = 472, + [1126] = 594, + [1127] = 483, + [1128] = 901, + [1129] = 902, + [1130] = 459, + [1131] = 913, + [1132] = 914, + [1133] = 460, + [1134] = 473, + [1135] = 459, + [1136] = 477, + [1137] = 476, [1138] = 481, - [1139] = 488, - [1140] = 482, - [1141] = 483, - [1142] = 484, - [1143] = 470, - [1144] = 482, - [1145] = 483, - [1146] = 484, - [1147] = 465, - [1148] = 475, - [1149] = 478, - [1150] = 1150, - [1151] = 473, - [1152] = 477, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 478, + [1143] = 469, + [1144] = 480, + [1145] = 1145, + [1146] = 1146, + [1147] = 482, + [1148] = 483, + [1149] = 1149, + [1150] = 478, + [1151] = 479, + [1152] = 469, [1153] = 1153, - [1154] = 486, - [1155] = 478, - [1156] = 469, - [1157] = 471, - [1158] = 1020, - [1159] = 488, - [1160] = 487, - [1161] = 466, - [1162] = 463, - [1163] = 491, - [1164] = 478, - [1165] = 1021, - [1166] = 464, - [1167] = 475, - [1168] = 477, - [1169] = 465, - [1170] = 475, - [1171] = 486, + [1154] = 475, + [1155] = 480, + [1156] = 1156, + [1157] = 460, + [1158] = 459, + [1159] = 484, + [1160] = 850, + [1161] = 827, + [1162] = 828, + [1163] = 484, + [1164] = 481, + [1165] = 485, + [1166] = 466, + [1167] = 486, + [1168] = 485, + [1169] = 480, + [1170] = 484, + [1171] = 485, [1172] = 486, - [1173] = 477, - [1174] = 476, - [1175] = 485, - [1176] = 586, - [1177] = 479, - [1178] = 480, - [1179] = 460, - [1180] = 459, - [1181] = 943, - [1182] = 481, - [1183] = 587, - [1184] = 487, - [1185] = 485, - [1186] = 1186, - [1187] = 460, - [1188] = 459, - [1189] = 472, - [1190] = 1190, - [1191] = 466, - [1192] = 476, - [1193] = 479, - [1194] = 463, - [1195] = 474, - [1196] = 1196, - [1197] = 1197, - [1198] = 464, - [1199] = 1186, - [1200] = 1020, - [1201] = 466, - [1202] = 470, - [1203] = 463, - [1204] = 466, - [1205] = 463, - [1206] = 1186, - [1207] = 466, - [1208] = 476, - [1209] = 479, - [1210] = 1021, - [1211] = 810, - [1212] = 1212, - [1213] = 463, - [1214] = 491, - [1215] = 1186, - [1216] = 1045, - [1217] = 1186, - [1218] = 1186, - [1219] = 464, - [1220] = 1056, - [1221] = 817, - [1222] = 464, - [1223] = 818, - [1224] = 472, - [1225] = 465, - [1226] = 1063, - [1227] = 1064, - [1228] = 482, - [1229] = 483, - [1230] = 1071, - [1231] = 484, - [1232] = 488, - [1233] = 1121, - [1234] = 1122, - [1235] = 1083, - [1236] = 482, - [1237] = 943, - [1238] = 483, - [1239] = 465, - [1240] = 1015, - [1241] = 487, - [1242] = 474, - [1243] = 485, - [1244] = 460, - [1245] = 1027, - [1246] = 470, - [1247] = 484, - [1248] = 478, - [1249] = 486, - [1250] = 459, - [1251] = 487, - [1252] = 485, - [1253] = 473, - [1254] = 480, + [1173] = 470, + [1174] = 486, + [1175] = 470, + [1176] = 487, + [1177] = 1177, + [1178] = 909, + [1179] = 592, + [1180] = 594, + [1181] = 470, + [1182] = 478, + [1183] = 1026, + [1184] = 479, + [1185] = 481, + [1186] = 828, + [1187] = 909, + [1188] = 1188, + [1189] = 914, + [1190] = 1156, + [1191] = 463, + [1192] = 471, + [1193] = 464, + [1194] = 1145, + [1195] = 467, + [1196] = 463, + [1197] = 482, + [1198] = 483, + [1199] = 464, + [1200] = 475, + [1201] = 467, + [1202] = 487, + [1203] = 476, + [1204] = 474, + [1205] = 1141, + [1206] = 463, + [1207] = 460, + [1208] = 459, + [1209] = 482, + [1210] = 483, + [1211] = 464, + [1212] = 493, + [1213] = 1146, + [1214] = 460, + [1215] = 459, + [1216] = 1026, + [1217] = 467, + [1218] = 466, + [1219] = 1219, + [1220] = 463, + [1221] = 464, + [1222] = 1219, + [1223] = 1219, + [1224] = 466, + [1225] = 472, + [1226] = 475, + [1227] = 471, + [1228] = 1219, + [1229] = 472, + [1230] = 473, + [1231] = 476, + [1232] = 1219, + [1233] = 487, + [1234] = 1219, + [1235] = 489, + [1236] = 474, + [1237] = 460, + [1238] = 489, + [1239] = 459, + [1240] = 478, + [1241] = 475, + [1242] = 469, + [1243] = 476, + [1244] = 480, + [1245] = 477, + [1246] = 478, + [1247] = 479, + [1248] = 484, + [1249] = 481, + [1250] = 480, + [1251] = 481, + [1252] = 466, + [1253] = 482, + [1254] = 483, [1255] = 469, - [1256] = 481, - [1257] = 472, - [1258] = 1029, - [1259] = 474, - [1260] = 475, - [1261] = 473, - [1262] = 477, - [1263] = 471, - [1264] = 1121, - [1265] = 1122, - [1266] = 1096, - [1267] = 460, - [1268] = 469, - [1269] = 828, - [1270] = 839, - [1271] = 459, - [1272] = 471, - [1273] = 470, - [1274] = 473, - [1275] = 856, - [1276] = 816, - [1277] = 472, - [1278] = 480, - [1279] = 810, - [1280] = 838, - [1281] = 817, - [1282] = 818, - [1283] = 465, - [1284] = 476, - [1285] = 479, - [1286] = 480, - [1287] = 469, - [1288] = 481, - [1289] = 474, - [1290] = 471, - [1291] = 838, - [1292] = 1021, - [1293] = 473, - [1294] = 480, - [1295] = 469, - [1296] = 470, - [1297] = 466, - [1298] = 481, - [1299] = 471, - [1300] = 482, - [1301] = 1015, - [1302] = 483, - [1303] = 484, - [1304] = 486, - [1305] = 572, - [1306] = 810, - [1307] = 838, - [1308] = 478, - [1309] = 486, + [1256] = 484, + [1257] = 473, + [1258] = 478, + [1259] = 469, + [1260] = 480, + [1261] = 484, + [1262] = 1093, + [1263] = 1094, + [1264] = 485, + [1265] = 486, + [1266] = 470, + [1267] = 481, + [1268] = 471, + [1269] = 1093, + [1270] = 1094, + [1271] = 472, + [1272] = 473, + [1273] = 474, + [1274] = 474, + [1275] = 592, + [1276] = 594, + [1277] = 489, + [1278] = 475, + [1279] = 476, + [1280] = 485, + [1281] = 486, + [1282] = 470, + [1283] = 1110, + [1284] = 1111, + [1285] = 485, + [1286] = 486, + [1287] = 470, + [1288] = 471, + [1289] = 463, + [1290] = 1290, + [1291] = 477, + [1292] = 1292, + [1293] = 1293, + [1294] = 478, + [1295] = 479, + [1296] = 464, + [1297] = 493, + [1298] = 472, + [1299] = 1299, + [1300] = 1026, + [1301] = 480, + [1302] = 1302, + [1303] = 481, + [1304] = 1304, + [1305] = 467, + [1306] = 1139, + [1307] = 1140, + [1308] = 482, + [1309] = 483, [1310] = 469, - [1311] = 465, - [1312] = 481, - [1313] = 487, - [1314] = 482, - [1315] = 483, - [1316] = 484, - [1317] = 465, - [1318] = 485, - [1319] = 475, - [1320] = 1320, - [1321] = 478, - [1322] = 1020, - [1323] = 1190, - [1324] = 1137, - [1325] = 1021, - [1326] = 466, - [1327] = 476, - [1328] = 479, - [1329] = 486, - [1330] = 1196, - [1331] = 473, - [1332] = 1197, - [1333] = 477, - [1334] = 1071, - [1335] = 482, - [1336] = 470, - [1337] = 1337, - [1338] = 463, - [1339] = 491, - [1340] = 470, - [1341] = 465, - [1342] = 483, + [1311] = 484, + [1312] = 1139, + [1313] = 1140, + [1314] = 901, + [1315] = 902, + [1316] = 913, + [1317] = 914, + [1318] = 876, + [1319] = 877, + [1320] = 485, + [1321] = 486, + [1322] = 470, + [1323] = 909, + [1324] = 915, + [1325] = 477, + [1326] = 479, + [1327] = 901, + [1328] = 902, + [1329] = 913, + [1330] = 1153, + [1331] = 466, + [1332] = 1332, + [1333] = 466, + [1334] = 477, + [1335] = 473, + [1336] = 479, + [1337] = 460, + [1338] = 1149, + [1339] = 1188, + [1340] = 459, + [1341] = 487, + [1342] = 1177, [1343] = 487, - [1344] = 1096, - [1345] = 464, - [1346] = 1020, - [1347] = 1212, - [1348] = 1021, - [1349] = 485, - [1350] = 1056, - [1351] = 484, - [1352] = 466, - [1353] = 466, - [1354] = 1020, - [1355] = 1021, - [1356] = 817, - [1357] = 818, - [1358] = 472, - [1359] = 487, - [1360] = 1027, - [1361] = 491, - [1362] = 1121, - [1363] = 1122, - [1364] = 474, - [1365] = 485, - [1366] = 1029, - [1367] = 1063, - [1368] = 1064, - [1369] = 1150, - [1370] = 1015, - [1371] = 465, - [1372] = 466, - [1373] = 810, - [1374] = 838, - [1375] = 463, - [1376] = 1121, - [1377] = 1122, - [1378] = 464, - [1379] = 1020, + [1344] = 1293, + [1345] = 471, + [1346] = 464, + [1347] = 464, + [1348] = 489, + [1349] = 474, + [1350] = 1350, + [1351] = 913, + [1352] = 1304, + [1353] = 1353, + [1354] = 1149, + [1355] = 475, + [1356] = 914, + [1357] = 463, + [1358] = 482, + [1359] = 483, + [1360] = 1093, + [1361] = 467, + [1362] = 471, + [1363] = 463, + [1364] = 482, + [1365] = 565, + [1366] = 464, + [1367] = 483, + [1368] = 489, + [1369] = 567, + [1370] = 467, + [1371] = 1153, + [1372] = 1177, + [1373] = 472, + [1374] = 478, + [1375] = 568, + [1376] = 1149, + [1377] = 464, + [1378] = 469, + [1379] = 473, [1380] = 475, - [1381] = 463, - [1382] = 1121, - [1383] = 476, - [1384] = 471, - [1385] = 1045, - [1386] = 1122, - [1387] = 1029, - [1388] = 477, - [1389] = 464, - [1390] = 571, - [1391] = 1027, - [1392] = 472, - [1393] = 463, - [1394] = 476, - [1395] = 1083, - [1396] = 474, - [1397] = 488, - [1398] = 472, - [1399] = 479, - [1400] = 473, - [1401] = 463, - [1402] = 465, - [1403] = 480, - [1404] = 470, - [1405] = 474, - [1406] = 475, - [1407] = 469, - [1408] = 1153, - [1409] = 481, - [1410] = 488, - [1411] = 1411, - [1412] = 1071, - [1413] = 477, - [1414] = 471, - [1415] = 480, - [1416] = 465, - [1417] = 476, - [1418] = 466, - [1419] = 479, - [1420] = 463, - [1421] = 464, - [1422] = 1096, - [1423] = 488, - [1424] = 488, - [1425] = 1411, - [1426] = 471, - [1427] = 1427, - [1428] = 475, - [1429] = 569, - [1430] = 464, - [1431] = 1056, - [1432] = 472, - [1433] = 482, - [1434] = 483, - [1435] = 484, - [1436] = 1083, - [1437] = 1063, - [1438] = 491, - [1439] = 477, - [1440] = 478, - [1441] = 486, - [1442] = 474, - [1443] = 465, - [1444] = 466, - [1445] = 1064, - [1446] = 1121, - [1447] = 1122, - [1448] = 1029, - [1449] = 473, - [1450] = 817, - [1451] = 487, - [1452] = 480, - [1453] = 469, - [1454] = 463, - [1455] = 481, - [1456] = 818, - [1457] = 1457, - [1458] = 485, - [1459] = 479, - [1460] = 478, - [1461] = 464, - [1462] = 464, - [1463] = 1027, - [1464] = 1464, - [1465] = 491, - [1466] = 478, - [1467] = 486, - [1468] = 1468, - [1469] = 460, - [1470] = 459, - [1471] = 1411, - [1472] = 472, - [1473] = 470, - [1474] = 488, - [1475] = 487, - [1476] = 485, - [1477] = 485, - [1478] = 487, - [1479] = 1479, - [1480] = 1411, - [1481] = 472, - [1482] = 474, - [1483] = 1212, - [1484] = 488, - [1485] = 482, - [1486] = 483, - [1487] = 484, - [1488] = 464, - [1489] = 475, - [1490] = 475, - [1491] = 1320, - [1492] = 472, - [1493] = 477, - [1494] = 473, - [1495] = 477, - [1496] = 466, - [1497] = 478, - [1498] = 486, - [1499] = 474, - [1500] = 469, - [1501] = 1320, - [1502] = 1027, - [1503] = 470, - [1504] = 488, + [1381] = 1094, + [1382] = 487, + [1383] = 493, + [1384] = 914, + [1385] = 467, + [1386] = 476, + [1387] = 480, + [1388] = 474, + [1389] = 484, + [1390] = 1188, + [1391] = 477, + [1392] = 489, + [1393] = 1110, + [1394] = 481, + [1395] = 467, + [1396] = 1149, + [1397] = 477, + [1398] = 478, + [1399] = 475, + [1400] = 479, + [1401] = 1153, + [1402] = 1110, + [1403] = 476, + [1404] = 901, + [1405] = 1139, + [1406] = 1140, + [1407] = 476, + [1408] = 479, + [1409] = 1111, + [1410] = 901, + [1411] = 487, + [1412] = 1145, + [1413] = 1413, + [1414] = 902, + [1415] = 1146, + [1416] = 466, + [1417] = 466, + [1418] = 477, + [1419] = 466, + [1420] = 913, + [1421] = 479, + [1422] = 1422, + [1423] = 489, + [1424] = 1290, + [1425] = 485, + [1426] = 1139, + [1427] = 1140, + [1428] = 485, + [1429] = 486, + [1430] = 1153, + [1431] = 470, + [1432] = 486, + [1433] = 493, + [1434] = 470, + [1435] = 477, + [1436] = 475, + [1437] = 1141, + [1438] = 469, + [1439] = 472, + [1440] = 487, + [1441] = 480, + [1442] = 493, + [1443] = 484, + [1444] = 473, + [1445] = 1445, + [1446] = 476, + [1447] = 482, + [1448] = 471, + [1449] = 466, + [1450] = 463, + [1451] = 1292, + [1452] = 1452, + [1453] = 481, + [1454] = 1139, + [1455] = 1140, + [1456] = 1456, + [1457] = 483, + [1458] = 478, + [1459] = 1093, + [1460] = 1094, + [1461] = 1156, + [1462] = 472, + [1463] = 473, + [1464] = 469, + [1465] = 466, + [1466] = 480, + [1467] = 484, + [1468] = 1111, + [1469] = 466, + [1470] = 485, + [1471] = 463, + [1472] = 1177, + [1473] = 464, + [1474] = 486, + [1475] = 1156, + [1476] = 902, + [1477] = 474, + [1478] = 1093, + [1479] = 481, + [1480] = 1452, + [1481] = 482, + [1482] = 483, + [1483] = 471, + [1484] = 467, + [1485] = 487, + [1486] = 463, + [1487] = 472, + [1488] = 1094, + [1489] = 464, + [1490] = 1093, + [1491] = 474, + [1492] = 485, + [1493] = 486, + [1494] = 470, + [1495] = 1332, + [1496] = 559, + [1497] = 463, + [1498] = 466, + [1499] = 1141, + [1500] = 564, + [1501] = 811, + [1502] = 1139, + [1503] = 806, + [1504] = 1302, [1505] = 478, - [1506] = 487, - [1507] = 471, - [1508] = 1029, - [1509] = 485, - [1510] = 466, - [1511] = 476, - [1512] = 479, - [1513] = 463, - [1514] = 488, - [1515] = 464, - [1516] = 472, - [1517] = 474, - [1518] = 474, - [1519] = 1519, - [1520] = 475, - [1521] = 485, - [1522] = 1020, - [1523] = 465, - [1524] = 1021, - [1525] = 478, - [1526] = 486, - [1527] = 486, - [1528] = 470, - [1529] = 475, - [1530] = 487, - [1531] = 485, - [1532] = 473, - [1533] = 480, - [1534] = 472, - [1535] = 469, - [1536] = 481, - [1537] = 474, - [1538] = 471, - [1539] = 475, - [1540] = 477, - [1541] = 586, - [1542] = 1457, - [1543] = 587, - [1544] = 482, - [1545] = 483, - [1546] = 484, - [1547] = 1150, - [1548] = 463, - [1549] = 476, - [1550] = 479, - [1551] = 476, - [1552] = 479, - [1553] = 475, - [1554] = 477, - [1555] = 473, - [1556] = 469, - [1557] = 476, - [1558] = 479, - [1559] = 473, - [1560] = 480, - [1561] = 469, - [1562] = 481, - [1563] = 477, - [1564] = 1519, - [1565] = 481, - [1566] = 471, - [1567] = 482, - [1568] = 466, - [1569] = 482, - [1570] = 483, - [1571] = 484, - [1572] = 463, - [1573] = 483, - [1574] = 484, - [1575] = 473, - [1576] = 480, - [1577] = 469, - [1578] = 481, - [1579] = 471, - [1580] = 482, - [1581] = 483, - [1582] = 484, - [1583] = 464, - [1584] = 471, - [1585] = 1519, - [1586] = 1212, - [1587] = 480, - [1588] = 465, - [1589] = 1519, - [1590] = 466, - [1591] = 463, - [1592] = 466, - [1593] = 463, - [1594] = 1190, - [1595] = 466, - [1596] = 474, - [1597] = 466, - [1598] = 1137, - [1599] = 463, - [1600] = 464, + [1506] = 469, + [1507] = 480, + [1508] = 1140, + [1509] = 484, + [1510] = 463, + [1511] = 1094, + [1512] = 473, + [1513] = 464, + [1514] = 467, + [1515] = 467, + [1516] = 1145, + [1517] = 1146, + [1518] = 470, + [1519] = 481, + [1520] = 1299, + [1521] = 479, + [1522] = 473, + [1523] = 463, + [1524] = 464, + [1525] = 477, + [1526] = 479, + [1527] = 459, + [1528] = 471, + [1529] = 1290, + [1530] = 471, + [1531] = 489, + [1532] = 472, + [1533] = 473, + [1534] = 1292, + [1535] = 493, + [1536] = 487, + [1537] = 485, + [1538] = 486, + [1539] = 470, + [1540] = 474, + [1541] = 482, + [1542] = 483, + [1543] = 1139, + [1544] = 1140, + [1545] = 1545, + [1546] = 1546, + [1547] = 471, + [1548] = 475, + [1549] = 489, + [1550] = 466, + [1551] = 477, + [1552] = 476, + [1553] = 479, + [1554] = 1554, + [1555] = 471, + [1556] = 463, + [1557] = 487, + [1558] = 1546, + [1559] = 474, + [1560] = 472, + [1561] = 473, + [1562] = 463, + [1563] = 482, + [1564] = 487, + [1565] = 1565, + [1566] = 483, + [1567] = 1567, + [1568] = 474, + [1569] = 464, + [1570] = 482, + [1571] = 480, + [1572] = 483, + [1573] = 484, + [1574] = 478, + [1575] = 469, + [1576] = 471, + [1577] = 480, + [1578] = 484, + [1579] = 485, + [1580] = 472, + [1581] = 473, + [1582] = 489, + [1583] = 486, + [1584] = 475, + [1585] = 487, + [1586] = 1565, + [1587] = 470, + [1588] = 476, + [1589] = 1567, + [1590] = 474, + [1591] = 467, + [1592] = 481, + [1593] = 466, + [1594] = 1554, + [1595] = 475, + [1596] = 463, + [1597] = 811, + [1598] = 1598, + [1599] = 464, + [1600] = 463, [1601] = 1601, - [1602] = 1602, - [1603] = 465, - [1604] = 1604, - [1605] = 1427, - [1606] = 1196, - [1607] = 1197, - [1608] = 1608, - [1609] = 1609, - [1610] = 1020, - [1611] = 1021, - [1612] = 1150, - [1613] = 1153, - [1614] = 1190, - [1615] = 1137, - [1616] = 470, - [1617] = 478, - [1618] = 486, - [1619] = 472, - [1620] = 487, - [1621] = 474, - [1622] = 485, - [1623] = 465, - [1624] = 475, - [1625] = 470, - [1626] = 466, - [1627] = 1337, - [1628] = 1150, - [1629] = 476, - [1630] = 479, - [1631] = 473, - [1632] = 463, - [1633] = 477, - [1634] = 480, - [1635] = 1153, - [1636] = 464, - [1637] = 469, - [1638] = 481, - [1639] = 482, - [1640] = 483, - [1641] = 484, - [1642] = 471, - [1643] = 491, - [1644] = 1153, - [1645] = 476, - [1646] = 491, - [1647] = 479, - [1648] = 473, - [1649] = 1196, - [1650] = 477, - [1651] = 480, - [1652] = 1020, - [1653] = 1021, - [1654] = 1197, - [1655] = 1655, - [1656] = 469, - [1657] = 470, - [1658] = 481, - [1659] = 471, - [1660] = 1655, - [1661] = 478, - [1662] = 1020, - [1663] = 1021, - [1664] = 486, - [1665] = 1063, - [1666] = 1064, - [1667] = 1015, - [1668] = 810, - [1669] = 838, - [1670] = 1670, - [1671] = 465, - [1672] = 487, - [1673] = 1673, - [1674] = 1096, - [1675] = 817, - [1676] = 818, - [1677] = 1121, - [1678] = 1122, - [1679] = 476, - [1680] = 479, - [1681] = 1468, - [1682] = 485, - [1683] = 480, - [1684] = 1519, - [1685] = 1121, - [1686] = 1122, - [1687] = 491, - [1688] = 465, - [1689] = 465, - [1690] = 1519, - [1691] = 796, - [1692] = 781, - [1693] = 783, - [1694] = 470, - [1695] = 782, - [1696] = 481, - [1697] = 465, - [1698] = 800, - [1699] = 482, - [1700] = 483, - [1701] = 484, - [1702] = 478, - [1703] = 486, - [1704] = 472, - [1705] = 487, - [1706] = 1673, - [1707] = 463, - [1708] = 1708, - [1709] = 1479, - [1710] = 470, - [1711] = 463, - [1712] = 475, - [1713] = 1468, - [1714] = 477, - [1715] = 464, - [1716] = 569, - [1717] = 476, - [1718] = 479, - [1719] = 471, - [1720] = 1411, - [1721] = 488, - [1722] = 1320, - [1723] = 465, - [1724] = 470, - [1725] = 473, - [1726] = 480, - [1727] = 469, - [1728] = 481, - [1729] = 471, - [1730] = 482, - [1731] = 483, - [1732] = 484, + [1602] = 476, + [1603] = 1452, + [1604] = 467, + [1605] = 475, + [1606] = 476, + [1607] = 485, + [1608] = 486, + [1609] = 592, + [1610] = 470, + [1611] = 594, + [1612] = 1302, + [1613] = 464, + [1614] = 493, + [1615] = 478, + [1616] = 469, + [1617] = 480, + [1618] = 1452, + [1619] = 484, + [1620] = 481, + [1621] = 475, + [1622] = 487, + [1623] = 481, + [1624] = 477, + [1625] = 485, + [1626] = 486, + [1627] = 470, + [1628] = 478, + [1629] = 479, + [1630] = 1630, + [1631] = 1631, + [1632] = 480, + [1633] = 1332, + [1634] = 481, + [1635] = 806, + [1636] = 1139, + [1637] = 477, + [1638] = 1140, + [1639] = 467, + [1640] = 1350, + [1641] = 1293, + [1642] = 482, + [1643] = 483, + [1644] = 478, + [1645] = 479, + [1646] = 469, + [1647] = 1353, + [1648] = 1554, + [1649] = 1299, + [1650] = 1293, + [1651] = 472, + [1652] = 480, + [1653] = 484, + [1654] = 481, + [1655] = 466, + [1656] = 476, + [1657] = 489, + [1658] = 474, + [1659] = 1302, + [1660] = 482, + [1661] = 483, + [1662] = 1299, + [1663] = 469, + [1664] = 1554, + [1665] = 484, + [1666] = 485, + [1667] = 486, + [1668] = 470, + [1669] = 806, + [1670] = 472, + [1671] = 473, + [1672] = 466, + [1673] = 493, + [1674] = 1674, + [1675] = 477, + [1676] = 1422, + [1677] = 473, + [1678] = 1304, + [1679] = 1290, + [1680] = 485, + [1681] = 486, + [1682] = 470, + [1683] = 471, + [1684] = 482, + [1685] = 471, + [1686] = 1413, + [1687] = 483, + [1688] = 477, + [1689] = 472, + [1690] = 1304, + [1691] = 475, + [1692] = 487, + [1693] = 487, + [1694] = 476, + [1695] = 1554, + [1696] = 1413, + [1697] = 474, + [1698] = 478, + [1699] = 466, + [1700] = 477, + [1701] = 1139, + [1702] = 1140, + [1703] = 1145, + [1704] = 1146, + [1705] = 1149, + [1706] = 1110, + [1707] = 901, + [1708] = 902, + [1709] = 479, + [1710] = 463, + [1711] = 469, + [1712] = 1153, + [1713] = 1111, + [1714] = 913, + [1715] = 914, + [1716] = 1093, + [1717] = 1094, + [1718] = 474, + [1719] = 479, + [1720] = 1293, + [1721] = 493, + [1722] = 482, + [1723] = 483, + [1724] = 478, + [1725] = 464, + [1726] = 479, + [1727] = 1554, + [1728] = 464, + [1729] = 469, + [1730] = 1093, + [1731] = 1094, + [1732] = 1139, [1733] = 472, - [1734] = 482, - [1735] = 483, - [1736] = 484, - [1737] = 782, - [1738] = 476, - [1739] = 478, - [1740] = 486, - [1741] = 487, - [1742] = 1708, - [1743] = 485, - [1744] = 800, - [1745] = 472, - [1746] = 571, - [1747] = 474, - [1748] = 466, - [1749] = 463, - [1750] = 465, - [1751] = 800, - [1752] = 475, + [1734] = 478, + [1735] = 473, + [1736] = 1299, + [1737] = 466, + [1738] = 466, + [1739] = 469, + [1740] = 1140, + [1741] = 475, + [1742] = 850, + [1743] = 480, + [1744] = 827, + [1745] = 828, + [1746] = 484, + [1747] = 467, + [1748] = 480, + [1749] = 1292, + [1750] = 484, + [1751] = 485, + [1752] = 486, [1753] = 466, - [1754] = 1754, - [1755] = 473, - [1756] = 1411, + [1754] = 470, + [1755] = 463, + [1756] = 464, [1757] = 463, - [1758] = 477, - [1759] = 464, - [1760] = 1020, - [1761] = 1021, - [1762] = 491, - [1763] = 1673, - [1764] = 487, - [1765] = 1150, + [1758] = 464, + [1759] = 1332, + [1760] = 481, + [1761] = 467, + [1762] = 460, + [1763] = 476, + [1764] = 481, + [1765] = 472, [1766] = 466, - [1767] = 463, - [1768] = 469, - [1769] = 1754, - [1770] = 1708, - [1771] = 1427, - [1772] = 471, + [1767] = 475, + [1768] = 489, + [1769] = 477, + [1770] = 485, + [1771] = 478, + [1772] = 1546, [1773] = 479, - [1774] = 476, - [1775] = 479, - [1776] = 491, - [1777] = 470, - [1778] = 466, - [1779] = 463, + [1774] = 482, + [1775] = 1413, + [1776] = 486, + [1777] = 483, + [1778] = 470, + [1779] = 827, [1780] = 480, - [1781] = 1754, - [1782] = 478, - [1783] = 486, - [1784] = 481, - [1785] = 1754, - [1786] = 487, - [1787] = 1457, - [1788] = 485, - [1789] = 1754, - [1790] = 1027, - [1791] = 465, - [1792] = 472, - [1793] = 1754, - [1794] = 482, - [1795] = 483, - [1796] = 484, - [1797] = 474, - [1798] = 1754, - [1799] = 1020, - [1800] = 1021, - [1801] = 1464, - [1802] = 1153, - [1803] = 1320, - [1804] = 475, - [1805] = 1754, - [1806] = 473, - [1807] = 477, + [1781] = 480, + [1782] = 472, + [1783] = 473, + [1784] = 463, + [1785] = 478, + [1786] = 476, + [1787] = 481, + [1788] = 489, + [1789] = 469, + [1790] = 1790, + [1791] = 480, + [1792] = 463, + [1793] = 464, + [1794] = 466, + [1795] = 1795, + [1796] = 475, + [1797] = 484, + [1798] = 487, + [1799] = 1413, + [1800] = 1153, + [1801] = 828, + [1802] = 477, + [1803] = 478, + [1804] = 482, + [1805] = 483, + [1806] = 479, + [1807] = 484, [1808] = 469, - [1809] = 1337, - [1810] = 471, - [1811] = 488, - [1812] = 476, - [1813] = 1604, - [1814] = 1320, - [1815] = 479, - [1816] = 480, - [1817] = 481, - [1818] = 1029, - [1819] = 1411, - [1820] = 1427, - [1821] = 482, - [1822] = 483, - [1823] = 1608, - [1824] = 1609, - [1825] = 1457, - [1826] = 484, - [1827] = 488, - [1828] = 1411, - [1829] = 491, - [1830] = 478, - [1831] = 486, - [1832] = 480, - [1833] = 1670, - [1834] = 1027, - [1835] = 1468, - [1836] = 478, - [1837] = 1673, - [1838] = 470, - [1839] = 470, - [1840] = 478, - [1841] = 486, - [1842] = 472, - [1843] = 488, - [1844] = 487, - [1845] = 474, - [1846] = 487, - [1847] = 485, - [1848] = 475, - [1849] = 466, - [1850] = 1020, - [1851] = 1021, - [1852] = 476, - [1853] = 479, - [1854] = 473, - [1855] = 486, - [1856] = 477, - [1857] = 480, - [1858] = 485, - [1859] = 474, - [1860] = 469, - [1861] = 481, - [1862] = 482, - [1863] = 483, - [1864] = 484, - [1865] = 572, - [1866] = 471, - [1867] = 796, - [1868] = 488, - [1869] = 463, - [1870] = 488, - [1871] = 472, - [1872] = 475, - [1873] = 1873, - [1874] = 1655, - [1875] = 1190, - [1876] = 1137, - [1877] = 474, - [1878] = 464, - [1879] = 781, - [1880] = 473, - [1881] = 477, - [1882] = 783, - [1883] = 1708, - [1884] = 1708, - [1885] = 1337, - [1886] = 465, - [1887] = 465, - [1888] = 491, - [1889] = 828, - [1890] = 839, - [1891] = 469, - [1892] = 488, - [1893] = 856, - [1894] = 816, - [1895] = 466, - [1896] = 485, - [1897] = 1708, - [1898] = 810, - [1899] = 838, - [1900] = 817, - [1901] = 818, - [1902] = 465, - [1903] = 1320, - [1904] = 481, - [1905] = 1029, - [1906] = 1655, - [1907] = 1907, - [1908] = 1907, - [1909] = 1907, - [1910] = 486, - [1911] = 1655, - [1912] = 470, - [1913] = 1913, - [1914] = 856, - [1915] = 1915, - [1916] = 816, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1920, - [1921] = 1921, - [1922] = 1922, - [1923] = 478, - [1924] = 486, - [1925] = 587, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1921, - [1930] = 1020, - [1931] = 1021, - [1932] = 1932, - [1933] = 474, - [1934] = 466, - [1935] = 1935, - [1936] = 472, - [1937] = 1937, - [1938] = 1938, - [1939] = 1907, - [1940] = 1940, - [1941] = 1917, - [1942] = 1942, - [1943] = 482, - [1944] = 1944, - [1945] = 1945, - [1946] = 1919, - [1947] = 1913, - [1948] = 1921, - [1949] = 1922, - [1950] = 483, - [1951] = 484, - [1952] = 1918, - [1953] = 487, - [1954] = 1920, - [1955] = 1926, - [1956] = 485, - [1957] = 1927, - [1958] = 1928, - [1959] = 1932, - [1960] = 1935, - [1961] = 1944, - [1962] = 1468, - [1963] = 1945, - [1964] = 1913, - [1965] = 1928, - [1966] = 1940, - [1967] = 1919, - [1968] = 1464, - [1969] = 475, - [1970] = 463, - [1971] = 1673, - [1972] = 1918, - [1973] = 1479, - [1974] = 1920, - [1975] = 472, - [1976] = 1942, - [1977] = 1940, - [1978] = 1921, - [1979] = 1468, - [1980] = 1940, - [1981] = 473, - [1982] = 1468, - [1983] = 1926, - [1984] = 474, - [1985] = 477, - [1986] = 470, - [1987] = 1150, - [1988] = 469, - [1989] = 1942, - [1990] = 487, - [1991] = 466, - [1992] = 463, - [1993] = 1922, - [1994] = 474, - [1995] = 465, - [1996] = 485, - [1997] = 471, - [1998] = 1927, - [1999] = 1907, - [2000] = 1915, - [2001] = 488, - [2002] = 475, - [2003] = 476, - [2004] = 491, - [2005] = 475, - [2006] = 479, - [2007] = 473, - [2008] = 477, - [2009] = 469, - [2010] = 471, - [2011] = 473, - [2012] = 1937, - [2013] = 476, - [2014] = 479, - [2015] = 1938, - [2016] = 1907, - [2017] = 480, - [2018] = 1608, - [2019] = 1609, - [2020] = 1670, - [2021] = 477, - [2022] = 481, - [2023] = 472, - [2024] = 480, - [2025] = 1915, - [2026] = 488, - [2027] = 1320, - [2028] = 469, - [2029] = 481, - [2030] = 1604, - [2031] = 1673, - [2032] = 1937, - [2033] = 1938, - [2034] = 1153, - [2035] = 1907, - [2036] = 1655, + [1809] = 485, + [1810] = 564, + [1811] = 476, + [1812] = 565, + [1813] = 1422, + [1814] = 474, + [1815] = 480, + [1816] = 486, + [1817] = 1630, + [1818] = 1631, + [1819] = 484, + [1820] = 478, + [1821] = 1821, + [1822] = 481, + [1823] = 481, + [1824] = 482, + [1825] = 470, + [1826] = 1353, + [1827] = 483, + [1828] = 469, + [1829] = 471, + [1830] = 1153, + [1831] = 484, + [1832] = 477, + [1833] = 489, + [1834] = 1790, + [1835] = 485, + [1836] = 481, + [1837] = 1452, + [1838] = 471, + [1839] = 485, + [1840] = 486, + [1841] = 470, + [1842] = 486, + [1843] = 464, + [1844] = 1546, + [1845] = 479, + [1846] = 1452, + [1847] = 475, + [1848] = 1139, + [1849] = 1674, + [1850] = 1821, + [1851] = 485, + [1852] = 486, + [1853] = 470, + [1854] = 470, + [1855] = 475, + [1856] = 469, + [1857] = 1565, + [1858] = 467, + [1859] = 1293, + [1860] = 476, + [1861] = 493, + [1862] = 1567, + [1863] = 1290, + [1864] = 1292, + [1865] = 1790, + [1866] = 479, + [1867] = 1821, + [1868] = 472, + [1869] = 471, + [1870] = 483, + [1871] = 1140, + [1872] = 1350, + [1873] = 1350, + [1874] = 1821, + [1875] = 1413, + [1876] = 489, + [1877] = 478, + [1878] = 473, + [1879] = 567, + [1880] = 489, + [1881] = 487, + [1882] = 1565, + [1883] = 1139, + [1884] = 489, + [1885] = 476, + [1886] = 1452, + [1887] = 1821, + [1888] = 471, + [1889] = 1567, + [1890] = 479, + [1891] = 466, + [1892] = 469, + [1893] = 1790, + [1894] = 472, + [1895] = 489, + [1896] = 1545, + [1897] = 493, + [1898] = 463, + [1899] = 1598, + [1900] = 493, + [1901] = 484, + [1902] = 487, + [1903] = 1140, + [1904] = 1452, + [1905] = 568, + [1906] = 466, + [1907] = 473, + [1908] = 474, + [1909] = 1821, + [1910] = 1149, + [1911] = 487, + [1912] = 493, + [1913] = 1601, + [1914] = 464, + [1915] = 463, + [1916] = 472, + [1917] = 467, + [1918] = 473, + [1919] = 464, + [1920] = 876, + [1921] = 877, + [1922] = 475, + [1923] = 1790, + [1924] = 1790, + [1925] = 482, + [1926] = 466, + [1927] = 1353, + [1928] = 477, + [1929] = 909, + [1930] = 915, + [1931] = 463, + [1932] = 1139, + [1933] = 1149, + [1934] = 1140, + [1935] = 474, + [1936] = 483, + [1937] = 480, + [1938] = 471, + [1939] = 901, + [1940] = 902, + [1941] = 913, + [1942] = 914, + [1943] = 466, + [1944] = 482, + [1945] = 477, + [1946] = 1413, + [1947] = 463, + [1948] = 464, + [1949] = 1422, + [1950] = 473, + [1951] = 487, + [1952] = 1821, + [1953] = 464, + [1954] = 1821, + [1955] = 476, + [1956] = 481, + [1957] = 850, + [1958] = 474, + [1959] = 559, + [1960] = 474, + [1961] = 467, + [1962] = 1299, + [1963] = 493, + [1964] = 1964, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1968, + [1969] = 1969, + [1970] = 1970, + [1971] = 1971, + [1972] = 1972, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, + [1977] = 463, + [1978] = 909, + [1979] = 915, + [1980] = 464, + [1981] = 467, + [1982] = 466, + [1983] = 1413, + [1984] = 471, + [1985] = 472, + [1986] = 473, + [1987] = 487, + [1988] = 474, + [1989] = 471, + [1990] = 472, + [1991] = 473, + [1992] = 475, + [1993] = 487, + [1994] = 476, + [1995] = 474, + [1996] = 475, + [1997] = 476, + [1998] = 477, + [1999] = 478, + [2000] = 479, + [2001] = 480, + [2002] = 481, + [2003] = 477, + [2004] = 482, + [2005] = 483, + [2006] = 478, + [2007] = 479, + [2008] = 469, + [2009] = 489, + [2010] = 480, + [2011] = 484, + [2012] = 481, + [2013] = 482, + [2014] = 483, + [2015] = 469, + [2016] = 484, + [2017] = 485, + [2018] = 486, + [2019] = 470, + [2020] = 2020, + [2021] = 471, + [2022] = 472, + [2023] = 473, + [2024] = 485, + [2025] = 486, + [2026] = 470, + [2027] = 487, + [2028] = 474, + [2029] = 475, + [2030] = 476, + [2031] = 489, + [2032] = 477, + [2033] = 478, + [2034] = 479, + [2035] = 480, + [2036] = 481, [2037] = 482, [2038] = 483, - [2039] = 484, - [2040] = 1918, - [2041] = 1915, - [2042] = 464, - [2043] = 1655, - [2044] = 464, - [2045] = 1464, - [2046] = 1937, - [2047] = 1479, - [2048] = 1938, - [2049] = 1907, - [2050] = 1932, - [2051] = 471, - [2052] = 476, - [2053] = 491, - [2054] = 479, - [2055] = 1150, - [2056] = 1655, - [2057] = 1907, - [2058] = 1915, - [2059] = 480, - [2060] = 481, - [2061] = 1907, - [2062] = 482, - [2063] = 483, - [2064] = 1937, - [2065] = 484, - [2066] = 1928, - [2067] = 1919, - [2068] = 1907, - [2069] = 478, - [2070] = 1907, - [2071] = 1938, - [2072] = 488, - [2073] = 1907, - [2074] = 1907, - [2075] = 1907, - [2076] = 491, - [2077] = 1907, - [2078] = 465, - [2079] = 1917, - [2080] = 1940, - [2081] = 1907, - [2082] = 1673, - [2083] = 1907, - [2084] = 1907, - [2085] = 1468, - [2086] = 1907, - [2087] = 488, - [2088] = 1907, - [2089] = 1932, - [2090] = 1907, - [2091] = 1907, - [2092] = 1907, - [2093] = 1907, - [2094] = 1907, - [2095] = 1907, - [2096] = 1907, - [2097] = 1907, - [2098] = 1907, - [2099] = 1935, - [2100] = 1907, - [2101] = 1907, - [2102] = 1907, - [2103] = 1907, - [2104] = 1907, - [2105] = 1907, - [2106] = 1907, - [2107] = 1907, - [2108] = 1907, - [2109] = 1907, - [2110] = 1320, - [2111] = 470, - [2112] = 1320, - [2113] = 810, - [2114] = 838, - [2115] = 1935, - [2116] = 817, - [2117] = 818, - [2118] = 1922, - [2119] = 1944, - [2120] = 1945, - [2121] = 1604, - [2122] = 491, - [2123] = 1907, - [2124] = 1907, - [2125] = 1608, - [2126] = 1920, - [2127] = 491, - [2128] = 1907, - [2129] = 1926, - [2130] = 1907, - [2131] = 1917, - [2132] = 1942, - [2133] = 1920, - [2134] = 1907, - [2135] = 1919, - [2136] = 1907, - [2137] = 478, - [2138] = 1944, - [2139] = 1907, - [2140] = 1907, - [2141] = 1907, - [2142] = 828, - [2143] = 1907, - [2144] = 486, - [2145] = 1945, - [2146] = 1907, - [2147] = 1921, - [2148] = 586, - [2149] = 488, - [2150] = 487, - [2151] = 1907, - [2152] = 1922, - [2153] = 1907, - [2154] = 1926, - [2155] = 1917, - [2156] = 1907, - [2157] = 1913, - [2158] = 1670, - [2159] = 1917, - [2160] = 1921, - [2161] = 1922, - [2162] = 1926, - [2163] = 1927, - [2164] = 1928, - [2165] = 1907, - [2166] = 1932, - [2167] = 1935, - [2168] = 1944, - [2169] = 1945, - [2170] = 1913, - [2171] = 1907, - [2172] = 1940, - [2173] = 1915, - [2174] = 1907, - [2175] = 1942, - [2176] = 1907, - [2177] = 839, - [2178] = 1927, - [2179] = 485, - [2180] = 1928, - [2181] = 1927, - [2182] = 1907, - [2183] = 1907, - [2184] = 1937, - [2185] = 1938, - [2186] = 1920, - [2187] = 1673, - [2188] = 1932, - [2189] = 1907, - [2190] = 1913, - [2191] = 1935, - [2192] = 1907, - [2193] = 1907, - [2194] = 1907, - [2195] = 491, - [2196] = 1907, - [2197] = 1907, - [2198] = 1907, - [2199] = 1907, - [2200] = 1907, - [2201] = 1907, - [2202] = 1907, - [2203] = 1907, - [2204] = 1907, - [2205] = 1907, - [2206] = 1907, - [2207] = 1609, - [2208] = 1907, - [2209] = 1944, - [2210] = 1153, - [2211] = 1907, - [2212] = 1945, - [2213] = 1942, - [2214] = 491, - [2215] = 1907, - [2216] = 1907, - [2217] = 488, - [2218] = 482, - [2219] = 470, - [2220] = 483, - [2221] = 484, - [2222] = 486, - [2223] = 478, - [2224] = 486, - [2225] = 472, - [2226] = 487, - [2227] = 474, - [2228] = 1015, - [2229] = 485, - [2230] = 475, - [2231] = 810, - [2232] = 476, - [2233] = 479, - [2234] = 473, - [2235] = 491, - [2236] = 477, - [2237] = 480, - [2238] = 838, - [2239] = 469, - [2240] = 481, - [2241] = 482, - [2242] = 483, - [2243] = 484, - [2244] = 471, - [2245] = 487, - [2246] = 465, - [2247] = 491, - [2248] = 485, - [2249] = 488, - [2250] = 1096, - [2251] = 470, - [2252] = 817, - [2253] = 1320, - [2254] = 466, - [2255] = 463, - [2256] = 466, - [2257] = 463, - [2258] = 475, - [2259] = 465, - [2260] = 471, - [2261] = 473, - [2262] = 459, - [2263] = 476, - [2264] = 464, - [2265] = 469, - [2266] = 479, - [2267] = 480, - [2268] = 1608, - [2269] = 1609, - [2270] = 465, - [2271] = 481, - [2272] = 477, - [2273] = 463, - [2274] = 472, - [2275] = 466, - [2276] = 491, - [2277] = 465, - [2278] = 474, - [2279] = 1320, - [2280] = 488, - [2281] = 491, - [2282] = 1020, - [2283] = 1021, - [2284] = 465, - [2285] = 1604, - [2286] = 1020, - [2287] = 1021, - [2288] = 1063, - [2289] = 1064, - [2290] = 1015, - [2291] = 810, - [2292] = 838, - [2293] = 1096, - [2294] = 817, - [2295] = 818, - [2296] = 1121, - [2297] = 1122, - [2298] = 491, - [2299] = 465, - [2300] = 1121, - [2301] = 1122, - [2302] = 478, - [2303] = 465, - [2304] = 465, - [2305] = 460, - [2306] = 818, - [2307] = 943, - [2308] = 465, - [2309] = 2309, - [2310] = 466, - [2311] = 463, - [2312] = 2312, - [2313] = 484, - [2314] = 466, - [2315] = 463, - [2316] = 483, - [2317] = 466, - [2318] = 476, - [2319] = 479, - [2320] = 2320, - [2321] = 1064, - [2322] = 2322, - [2323] = 1027, - [2324] = 463, - [2325] = 488, - [2326] = 2326, - [2327] = 2327, - [2328] = 484, - [2329] = 1029, - [2330] = 463, - [2331] = 2331, - [2332] = 464, - [2333] = 486, - [2334] = 2331, - [2335] = 1021, - [2336] = 2320, - [2337] = 2337, - [2338] = 487, - [2339] = 477, - [2340] = 469, - [2341] = 469, - [2342] = 2342, - [2343] = 485, - [2344] = 2309, - [2345] = 2327, - [2346] = 1122, - [2347] = 480, - [2348] = 471, - [2349] = 488, - [2350] = 465, - [2351] = 491, - [2352] = 491, - [2353] = 474, - [2354] = 465, - [2355] = 2342, - [2356] = 466, - [2357] = 2342, - [2358] = 471, - [2359] = 2327, - [2360] = 481, - [2361] = 2309, - [2362] = 2342, - [2363] = 2327, - [2364] = 463, - [2365] = 464, - [2366] = 2327, - [2367] = 1121, - [2368] = 464, - [2369] = 465, - [2370] = 475, - [2371] = 1122, - [2372] = 478, - [2373] = 2327, - [2374] = 2320, - [2375] = 2320, - [2376] = 466, - [2377] = 2331, - [2378] = 2331, - [2379] = 2322, - [2380] = 1020, - [2381] = 2309, - [2382] = 1021, - [2383] = 2322, + [2039] = 469, + [2040] = 484, + [2041] = 485, + [2042] = 486, + [2043] = 470, + [2044] = 2044, + [2045] = 1545, + [2046] = 1567, + [2047] = 1546, + [2048] = 1964, + [2049] = 1966, + [2050] = 1967, + [2051] = 1968, + [2052] = 1969, + [2053] = 1970, + [2054] = 1971, + [2055] = 1972, + [2056] = 1973, + [2057] = 1974, + [2058] = 1975, + [2059] = 1976, + [2060] = 493, + [2061] = 2020, + [2062] = 1565, + [2063] = 1567, + [2064] = 2020, + [2065] = 2065, + [2066] = 2066, + [2067] = 2044, + [2068] = 493, + [2069] = 1601, + [2070] = 1299, + [2071] = 489, + [2072] = 1546, + [2073] = 493, + [2074] = 2074, + [2075] = 2044, + [2076] = 1413, + [2077] = 1630, + [2078] = 1631, + [2079] = 467, + [2080] = 2065, + [2081] = 2066, + [2082] = 2082, + [2083] = 1964, + [2084] = 1965, + [2085] = 1966, + [2086] = 1967, + [2087] = 1968, + [2088] = 1969, + [2089] = 1970, + [2090] = 1971, + [2091] = 1972, + [2092] = 1973, + [2093] = 1974, + [2094] = 1975, + [2095] = 1976, + [2096] = 2020, + [2097] = 1965, + [2098] = 1545, + [2099] = 463, + [2100] = 464, + [2101] = 466, + [2102] = 2065, + [2103] = 2066, + [2104] = 2082, + [2105] = 2044, + [2106] = 493, + [2107] = 2065, + [2108] = 2066, + [2109] = 2082, + [2110] = 1546, + [2111] = 2065, + [2112] = 2066, + [2113] = 2082, + [2114] = 2082, + [2115] = 2082, + [2116] = 1674, + [2117] = 2082, + [2118] = 1598, + [2119] = 2082, + [2120] = 2082, + [2121] = 2082, + [2122] = 2082, + [2123] = 2082, + [2124] = 2082, + [2125] = 2082, + [2126] = 2082, + [2127] = 2082, + [2128] = 2082, + [2129] = 2082, + [2130] = 2082, + [2131] = 877, + [2132] = 2082, + [2133] = 2082, + [2134] = 2082, + [2135] = 2082, + [2136] = 2082, + [2137] = 2082, + [2138] = 2082, + [2139] = 2082, + [2140] = 2082, + [2141] = 2082, + [2142] = 2082, + [2143] = 2082, + [2144] = 2082, + [2145] = 2082, + [2146] = 2082, + [2147] = 2082, + [2148] = 2082, + [2149] = 2082, + [2150] = 2082, + [2151] = 2082, + [2152] = 2082, + [2153] = 2082, + [2154] = 2082, + [2155] = 2082, + [2156] = 2082, + [2157] = 2082, + [2158] = 2082, + [2159] = 2082, + [2160] = 2082, + [2161] = 2082, + [2162] = 2082, + [2163] = 2082, + [2164] = 2082, + [2165] = 2082, + [2166] = 2082, + [2167] = 2082, + [2168] = 2082, + [2169] = 2082, + [2170] = 2082, + [2171] = 2082, + [2172] = 2082, + [2173] = 2082, + [2174] = 2082, + [2175] = 2082, + [2176] = 2082, + [2177] = 2082, + [2178] = 2082, + [2179] = 2082, + [2180] = 2082, + [2181] = 2082, + [2182] = 2082, + [2183] = 2082, + [2184] = 2082, + [2185] = 2082, + [2186] = 2082, + [2187] = 2082, + [2188] = 2082, + [2189] = 2082, + [2190] = 1293, + [2191] = 2074, + [2192] = 2192, + [2193] = 1139, + [2194] = 1140, + [2195] = 1964, + [2196] = 489, + [2197] = 1965, + [2198] = 1966, + [2199] = 1967, + [2200] = 2074, + [2201] = 2192, + [2202] = 1968, + [2203] = 1969, + [2204] = 1970, + [2205] = 1601, + [2206] = 1971, + [2207] = 1972, + [2208] = 1565, + [2209] = 1299, + [2210] = 1973, + [2211] = 1546, + [2212] = 1974, + [2213] = 1567, + [2214] = 1975, + [2215] = 1976, + [2216] = 1674, + [2217] = 2192, + [2218] = 2074, + [2219] = 2192, + [2220] = 1598, + [2221] = 1964, + [2222] = 1965, + [2223] = 1966, + [2224] = 1967, + [2225] = 1968, + [2226] = 1969, + [2227] = 1413, + [2228] = 901, + [2229] = 902, + [2230] = 1970, + [2231] = 913, + [2232] = 914, + [2233] = 1971, + [2234] = 1972, + [2235] = 1973, + [2236] = 1974, + [2237] = 1975, + [2238] = 1976, + [2239] = 493, + [2240] = 1293, + [2241] = 1630, + [2242] = 1631, + [2243] = 1565, + [2244] = 493, + [2245] = 1567, + [2246] = 489, + [2247] = 2020, + [2248] = 592, + [2249] = 594, + [2250] = 2082, + [2251] = 2192, + [2252] = 1565, + [2253] = 2044, + [2254] = 1964, + [2255] = 1967, + [2256] = 1968, + [2257] = 1969, + [2258] = 1970, + [2259] = 1971, + [2260] = 1972, + [2261] = 1973, + [2262] = 1974, + [2263] = 1975, + [2264] = 1976, + [2265] = 2020, + [2266] = 2044, + [2267] = 2065, + [2268] = 2066, + [2269] = 2192, + [2270] = 876, + [2271] = 1965, + [2272] = 2082, + [2273] = 1094, + [2274] = 493, + [2275] = 485, + [2276] = 486, + [2277] = 470, + [2278] = 475, + [2279] = 1413, + [2280] = 476, + [2281] = 459, + [2282] = 493, + [2283] = 489, + [2284] = 471, + [2285] = 466, + [2286] = 471, + [2287] = 472, + [2288] = 473, + [2289] = 466, + [2290] = 475, + [2291] = 489, + [2292] = 493, + [2293] = 472, + [2294] = 473, + [2295] = 477, + [2296] = 478, + [2297] = 479, + [2298] = 493, + [2299] = 487, + [2300] = 476, + [2301] = 474, + [2302] = 489, + [2303] = 477, + [2304] = 480, + [2305] = 481, + [2306] = 1630, + [2307] = 1631, + [2308] = 463, + [2309] = 464, + [2310] = 463, + [2311] = 464, + [2312] = 482, + [2313] = 483, + [2314] = 478, + [2315] = 1413, + [2316] = 479, + [2317] = 469, + [2318] = 482, + [2319] = 466, + [2320] = 483, + [2321] = 466, + [2322] = 1140, + [2323] = 1545, + [2324] = 487, + [2325] = 480, + [2326] = 493, + [2327] = 484, + [2328] = 485, + [2329] = 486, + [2330] = 1026, + [2331] = 470, + [2332] = 469, + [2333] = 1110, + [2334] = 901, + [2335] = 902, + [2336] = 466, + [2337] = 481, + [2338] = 1111, + [2339] = 913, + [2340] = 914, + [2341] = 484, + [2342] = 474, + [2343] = 463, + [2344] = 466, + [2345] = 464, + [2346] = 1139, + [2347] = 1140, + [2348] = 1145, + [2349] = 1146, + [2350] = 1110, + [2351] = 901, + [2352] = 902, + [2353] = 1111, + [2354] = 913, + [2355] = 914, + [2356] = 1093, + [2357] = 1094, + [2358] = 467, + [2359] = 1093, + [2360] = 460, + [2361] = 466, + [2362] = 466, + [2363] = 1139, + [2364] = 466, + [2365] = 479, + [2366] = 463, + [2367] = 464, + [2368] = 475, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, + [2375] = 476, + [2376] = 493, + [2377] = 1110, + [2378] = 1111, + [2379] = 2370, + [2380] = 2371, + [2381] = 493, + [2382] = 489, + [2383] = 2383, [2384] = 463, - [2385] = 2326, - [2386] = 463, - [2387] = 1121, - [2388] = 810, - [2389] = 2326, - [2390] = 480, - [2391] = 838, - [2392] = 1190, - [2393] = 1137, - [2394] = 2322, - [2395] = 1063, - [2396] = 466, - [2397] = 472, - [2398] = 466, - [2399] = 1071, - [2400] = 463, - [2401] = 473, - [2402] = 491, - [2403] = 2309, - [2404] = 470, - [2405] = 1083, - [2406] = 464, - [2407] = 2312, - [2408] = 1015, - [2409] = 488, - [2410] = 817, - [2411] = 1020, - [2412] = 1056, - [2413] = 1021, - [2414] = 482, - [2415] = 483, - [2416] = 466, - [2417] = 466, - [2418] = 2342, - [2419] = 1096, - [2420] = 463, - [2421] = 466, - [2422] = 465, - [2423] = 818, - [2424] = 463, - [2425] = 465, - [2426] = 1020, - [2427] = 481, - [2428] = 473, - [2429] = 482, - [2430] = 2326, - [2431] = 2342, - [2432] = 484, - [2433] = 476, - [2434] = 479, - [2435] = 480, - [2436] = 1027, - [2437] = 473, - [2438] = 471, - [2439] = 484, - [2440] = 474, - [2441] = 476, - [2442] = 2442, - [2443] = 472, - [2444] = 473, - [2445] = 487, - [2446] = 486, - [2447] = 480, - [2448] = 481, - [2449] = 1196, - [2450] = 477, - [2451] = 2312, - [2452] = 488, - [2453] = 469, - [2454] = 475, - [2455] = 474, - [2456] = 470, - [2457] = 473, - [2458] = 1457, - [2459] = 483, - [2460] = 482, - [2461] = 476, - [2462] = 470, - [2463] = 477, - [2464] = 483, - [2465] = 465, - [2466] = 478, - [2467] = 480, - [2468] = 486, - [2469] = 484, - [2470] = 487, - [2471] = 479, - [2472] = 485, - [2473] = 466, - [2474] = 466, - [2475] = 463, - [2476] = 464, - [2477] = 472, - [2478] = 474, - [2479] = 464, - [2480] = 1212, - [2481] = 488, - [2482] = 475, - [2483] = 474, - [2484] = 480, - [2485] = 471, - [2486] = 482, - [2487] = 2487, - [2488] = 1197, - [2489] = 482, - [2490] = 465, - [2491] = 2491, - [2492] = 481, - [2493] = 481, - [2494] = 475, - [2495] = 2495, - [2496] = 1320, - [2497] = 1150, - [2498] = 470, - [2499] = 481, - [2500] = 470, - [2501] = 471, - [2502] = 491, - [2503] = 463, - [2504] = 1020, - [2505] = 469, - [2506] = 480, - [2507] = 473, - [2508] = 2508, - [2509] = 1153, - [2510] = 475, - [2511] = 477, - [2512] = 2512, - [2513] = 1137, - [2514] = 466, - [2515] = 478, - [2516] = 478, - [2517] = 486, - [2518] = 2518, - [2519] = 463, - [2520] = 2520, - [2521] = 486, - [2522] = 491, - [2523] = 473, - [2524] = 487, - [2525] = 477, - [2526] = 1190, - [2527] = 464, - [2528] = 466, - [2529] = 485, - [2530] = 463, - [2531] = 465, - [2532] = 471, - [2533] = 488, - [2534] = 482, - [2535] = 484, - [2536] = 1020, - [2537] = 483, - [2538] = 1021, - [2539] = 466, - [2540] = 1021, - [2541] = 2541, - [2542] = 478, - [2543] = 2337, - [2544] = 1337, - [2545] = 2545, - [2546] = 487, - [2547] = 463, - [2548] = 472, - [2549] = 2312, - [2550] = 485, - [2551] = 482, - [2552] = 476, - [2553] = 483, - [2554] = 483, - [2555] = 1020, - [2556] = 1021, - [2557] = 2309, - [2558] = 469, - [2559] = 481, - [2560] = 485, - [2561] = 465, - [2562] = 479, - [2563] = 469, - [2564] = 479, - [2565] = 2565, - [2566] = 2566, - [2567] = 484, - [2568] = 491, - [2569] = 1029, - [2570] = 472, - [2571] = 471, - [2572] = 469, - [2573] = 484, - [2574] = 483, - [2575] = 466, - [2576] = 463, - [2577] = 464, - [2578] = 465, - [2579] = 478, - [2580] = 486, - [2581] = 470, - [2582] = 487, - [2583] = 485, - [2584] = 471, - [2585] = 472, - [2586] = 474, - [2587] = 2587, - [2588] = 2588, - [2589] = 473, - [2590] = 480, - [2591] = 469, - [2592] = 481, - [2593] = 471, - [2594] = 2337, + [2385] = 463, + [2386] = 464, + [2387] = 466, + [2388] = 463, + [2389] = 1093, + [2390] = 464, + [2391] = 1149, + [2392] = 464, + [2393] = 489, + [2394] = 467, + [2395] = 2369, + [2396] = 2372, + [2397] = 1153, + [2398] = 2370, + [2399] = 2371, + [2400] = 2373, + [2401] = 467, + [2402] = 2374, + [2403] = 489, + [2404] = 480, + [2405] = 2405, + [2406] = 2369, + [2407] = 2372, + [2408] = 467, + [2409] = 466, + [2410] = 1139, + [2411] = 1140, + [2412] = 901, + [2413] = 902, + [2414] = 2369, + [2415] = 913, + [2416] = 914, + [2417] = 1139, + [2418] = 1140, + [2419] = 2372, + [2420] = 2374, + [2421] = 2370, + [2422] = 2371, + [2423] = 1177, + [2424] = 1141, + [2425] = 2373, + [2426] = 463, + [2427] = 464, + [2428] = 485, + [2429] = 484, + [2430] = 2369, + [2431] = 463, + [2432] = 2383, + [2433] = 2373, + [2434] = 2405, + [2435] = 1145, + [2436] = 1094, + [2437] = 464, + [2438] = 2374, + [2439] = 463, + [2440] = 481, + [2441] = 478, + [2442] = 1146, + [2443] = 469, + [2444] = 480, + [2445] = 484, + [2446] = 1093, + [2447] = 1094, + [2448] = 2372, + [2449] = 2449, + [2450] = 481, + [2451] = 471, + [2452] = 493, + [2453] = 463, + [2454] = 464, + [2455] = 482, + [2456] = 2383, + [2457] = 2383, + [2458] = 463, + [2459] = 485, + [2460] = 486, + [2461] = 464, + [2462] = 1290, + [2463] = 1292, + [2464] = 463, + [2465] = 464, + [2466] = 477, + [2467] = 472, + [2468] = 473, + [2469] = 467, + [2470] = 470, + [2471] = 464, + [2472] = 470, + [2473] = 2369, + [2474] = 1139, + [2475] = 483, + [2476] = 487, + [2477] = 1140, + [2478] = 2372, + [2479] = 469, + [2480] = 474, + [2481] = 486, + [2482] = 478, + [2483] = 466, + [2484] = 466, + [2485] = 466, + [2486] = 1156, + [2487] = 2383, + [2488] = 481, + [2489] = 2489, + [2490] = 489, + [2491] = 1332, + [2492] = 471, + [2493] = 480, + [2494] = 472, + [2495] = 473, + [2496] = 487, + [2497] = 474, + [2498] = 463, + [2499] = 464, + [2500] = 467, + [2501] = 475, + [2502] = 476, + [2503] = 489, + [2504] = 487, + [2505] = 471, + [2506] = 2506, + [2507] = 466, + [2508] = 482, + [2509] = 471, + [2510] = 483, + [2511] = 472, + [2512] = 473, + [2513] = 2405, + [2514] = 463, + [2515] = 464, + [2516] = 466, + [2517] = 469, + [2518] = 487, + [2519] = 474, + [2520] = 493, + [2521] = 475, + [2522] = 484, + [2523] = 476, + [2524] = 477, + [2525] = 478, + [2526] = 479, + [2527] = 480, + [2528] = 481, + [2529] = 482, + [2530] = 483, + [2531] = 469, + [2532] = 484, + [2533] = 485, + [2534] = 486, + [2535] = 470, + [2536] = 477, + [2537] = 478, + [2538] = 479, + [2539] = 480, + [2540] = 481, + [2541] = 1413, + [2542] = 482, + [2543] = 483, + [2544] = 469, + [2545] = 484, + [2546] = 485, + [2547] = 486, + [2548] = 470, + [2549] = 463, + [2550] = 464, + [2551] = 467, + [2552] = 466, + [2553] = 474, + [2554] = 1350, + [2555] = 1149, + [2556] = 1353, + [2557] = 1153, + [2558] = 485, + [2559] = 486, + [2560] = 470, + [2561] = 463, + [2562] = 1139, + [2563] = 1140, + [2564] = 2383, + [2565] = 473, + [2566] = 464, + [2567] = 493, + [2568] = 463, + [2569] = 464, + [2570] = 478, + [2571] = 469, + [2572] = 2572, + [2573] = 467, + [2574] = 480, + [2575] = 484, + [2576] = 2576, + [2577] = 481, + [2578] = 475, + [2579] = 1293, + [2580] = 471, + [2581] = 485, + [2582] = 493, + [2583] = 486, + [2584] = 470, + [2585] = 1299, + [2586] = 472, + [2587] = 473, + [2588] = 487, + [2589] = 474, + [2590] = 1139, + [2591] = 1140, + [2592] = 476, + [2593] = 2449, + [2594] = 2594, [2595] = 2595, - [2596] = 2596, - [2597] = 482, - [2598] = 483, - [2599] = 484, - [2600] = 475, - [2601] = 477, + [2596] = 475, + [2597] = 476, + [2598] = 477, + [2599] = 477, + [2600] = 478, + [2601] = 479, [2602] = 2602, - [2603] = 1608, - [2604] = 1609, - [2605] = 1411, - [2606] = 476, - [2607] = 479, - [2608] = 2518, - [2609] = 1457, - [2610] = 1427, - [2611] = 1337, - [2612] = 473, - [2613] = 480, - [2614] = 469, - [2615] = 481, - [2616] = 471, - [2617] = 2617, - [2618] = 1411, - [2619] = 2619, - [2620] = 482, - [2621] = 483, - [2622] = 484, - [2623] = 2623, - [2624] = 2624, - [2625] = 2625, - [2626] = 2545, - [2627] = 2627, - [2628] = 2566, + [2603] = 480, + [2604] = 2604, + [2605] = 481, + [2606] = 2606, + [2607] = 2607, + [2608] = 2608, + [2609] = 482, + [2610] = 483, + [2611] = 469, + [2612] = 484, + [2613] = 485, + [2614] = 486, + [2615] = 470, + [2616] = 2616, + [2617] = 1139, + [2618] = 1140, + [2619] = 1290, + [2620] = 1292, + [2621] = 489, + [2622] = 478, + [2623] = 479, + [2624] = 466, + [2625] = 2405, + [2626] = 1302, + [2627] = 1304, + [2628] = 472, [2629] = 2629, - [2630] = 1320, + [2630] = 477, [2631] = 2631, - [2632] = 1027, - [2633] = 1029, - [2634] = 1320, - [2635] = 2512, - [2636] = 2636, - [2637] = 2637, - [2638] = 2638, - [2639] = 2639, - [2640] = 2640, - [2641] = 2641, - [2642] = 2642, - [2643] = 2643, - [2644] = 2644, - [2645] = 2541, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 2442, - [2652] = 460, - [2653] = 459, - [2654] = 1020, - [2655] = 1021, - [2656] = 2656, - [2657] = 2657, - [2658] = 491, - [2659] = 2656, - [2660] = 2657, - [2661] = 1479, - [2662] = 482, - [2663] = 2657, - [2664] = 475, - [2665] = 1150, - [2666] = 491, - [2667] = 2656, - [2668] = 2657, - [2669] = 2656, - [2670] = 2657, - [2671] = 2656, - [2672] = 2656, - [2673] = 2656, - [2674] = 2656, - [2675] = 2656, - [2676] = 2656, - [2677] = 1670, - [2678] = 2656, - [2679] = 2656, - [2680] = 2656, - [2681] = 2656, - [2682] = 2656, - [2683] = 2656, - [2684] = 2656, - [2685] = 2656, - [2686] = 1153, - [2687] = 2656, - [2688] = 2656, - [2689] = 2656, - [2690] = 2656, - [2691] = 2656, - [2692] = 2656, - [2693] = 2656, - [2694] = 2656, - [2695] = 2656, - [2696] = 2656, - [2697] = 2656, - [2698] = 2656, - [2699] = 2656, - [2700] = 2656, - [2701] = 2656, - [2702] = 2656, - [2703] = 2656, - [2704] = 2656, - [2705] = 2656, - [2706] = 2656, - [2707] = 2656, - [2708] = 2656, - [2709] = 2656, - [2710] = 2656, - [2711] = 2656, - [2712] = 2712, - [2713] = 2656, - [2714] = 2656, - [2715] = 2715, - [2716] = 2656, - [2717] = 2656, - [2718] = 2656, - [2719] = 2656, - [2720] = 2656, - [2721] = 2656, - [2722] = 2656, - [2723] = 2656, - [2724] = 2656, - [2725] = 2656, - [2726] = 2656, - [2727] = 2727, - [2728] = 2656, - [2729] = 2729, - [2730] = 2656, - [2731] = 2656, - [2732] = 2656, - [2733] = 2656, - [2734] = 2656, - [2735] = 2656, - [2736] = 470, - [2737] = 488, - [2738] = 476, - [2739] = 478, - [2740] = 486, - [2741] = 479, - [2742] = 473, - [2743] = 487, - [2744] = 485, - [2745] = 477, - [2746] = 480, - [2747] = 472, - [2748] = 474, - [2749] = 2508, - [2750] = 2750, - [2751] = 2751, + [2632] = 473, + [2633] = 2633, + [2634] = 478, + [2635] = 2631, + [2636] = 479, + [2637] = 2631, + [2638] = 2631, + [2639] = 480, + [2640] = 2631, + [2641] = 2631, + [2642] = 2631, + [2643] = 481, + [2644] = 2631, + [2645] = 2631, + [2646] = 482, + [2647] = 2631, + [2648] = 483, + [2649] = 2631, + [2650] = 469, + [2651] = 2631, + [2652] = 484, + [2653] = 2631, + [2654] = 487, + [2655] = 2631, + [2656] = 2631, + [2657] = 2631, + [2658] = 2631, + [2659] = 2631, + [2660] = 2660, + [2661] = 2631, + [2662] = 474, + [2663] = 2631, + [2664] = 485, + [2665] = 2631, + [2666] = 486, + [2667] = 2631, + [2668] = 470, + [2669] = 2631, + [2670] = 2631, + [2671] = 2631, + [2672] = 2631, + [2673] = 2631, + [2674] = 2631, + [2675] = 481, + [2676] = 2631, + [2677] = 489, + [2678] = 2631, + [2679] = 463, + [2680] = 2631, + [2681] = 464, + [2682] = 2631, + [2683] = 2631, + [2684] = 2631, + [2685] = 467, + [2686] = 2631, + [2687] = 2631, + [2688] = 2631, + [2689] = 2631, + [2690] = 475, + [2691] = 2631, + [2692] = 2692, + [2693] = 2631, + [2694] = 482, + [2695] = 2631, + [2696] = 2631, + [2697] = 2631, + [2698] = 2631, + [2699] = 466, + [2700] = 2631, + [2701] = 2701, + [2702] = 2631, + [2703] = 2631, + [2704] = 483, + [2705] = 2631, + [2706] = 472, + [2707] = 2631, + [2708] = 473, + [2709] = 2631, + [2710] = 2631, + [2711] = 2631, + [2712] = 2631, + [2713] = 471, + [2714] = 2631, + [2715] = 487, + [2716] = 2631, + [2717] = 474, + [2718] = 2631, + [2719] = 2631, + [2720] = 2631, + [2721] = 2721, + [2722] = 2631, + [2723] = 476, + [2724] = 2631, + [2725] = 475, + [2726] = 476, + [2727] = 1598, + [2728] = 1452, + [2729] = 469, + [2730] = 475, + [2731] = 1293, + [2732] = 2732, + [2733] = 482, + [2734] = 483, + [2735] = 478, + [2736] = 478, + [2737] = 2737, + [2738] = 479, + [2739] = 469, + [2740] = 469, + [2741] = 480, + [2742] = 484, + [2743] = 2743, + [2744] = 1601, + [2745] = 481, + [2746] = 2746, + [2747] = 1452, + [2748] = 484, + [2749] = 1299, + [2750] = 477, + [2751] = 476, [2752] = 2752, - [2753] = 475, - [2754] = 473, - [2755] = 477, - [2756] = 469, - [2757] = 471, - [2758] = 476, - [2759] = 479, - [2760] = 480, - [2761] = 481, - [2762] = 482, - [2763] = 483, - [2764] = 484, - [2765] = 2765, + [2753] = 2631, + [2754] = 486, + [2755] = 2755, + [2756] = 470, + [2757] = 2572, + [2758] = 2732, + [2759] = 2759, + [2760] = 471, + [2761] = 477, + [2762] = 485, + [2763] = 479, + [2764] = 486, + [2765] = 470, [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2770, - [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, + [2767] = 489, + [2768] = 472, + [2769] = 473, + [2770] = 482, + [2771] = 483, + [2772] = 1350, + [2773] = 1353, + [2774] = 493, + [2775] = 478, [2776] = 2776, - [2777] = 470, - [2778] = 469, - [2779] = 478, - [2780] = 486, - [2781] = 487, - [2782] = 485, - [2783] = 481, - [2784] = 482, - [2785] = 483, - [2786] = 488, - [2787] = 472, - [2788] = 474, - [2789] = 484, - [2790] = 2657, - [2791] = 2656, - [2792] = 491, - [2793] = 488, - [2794] = 475, - [2795] = 473, - [2796] = 477, - [2797] = 469, - [2798] = 471, - [2799] = 476, - [2800] = 479, - [2801] = 480, + [2777] = 2576, + [2778] = 479, + [2779] = 487, + [2780] = 2780, + [2781] = 493, + [2782] = 2631, + [2783] = 2783, + [2784] = 480, + [2785] = 484, + [2786] = 485, + [2787] = 486, + [2788] = 2732, + [2789] = 470, + [2790] = 2631, + [2791] = 478, + [2792] = 480, + [2793] = 1413, + [2794] = 469, + [2795] = 480, + [2796] = 1149, + [2797] = 484, + [2798] = 1153, + [2799] = 2799, + [2800] = 2631, + [2801] = 481, [2802] = 481, - [2803] = 2656, - [2804] = 2647, + [2803] = 2489, + [2804] = 1413, [2805] = 2805, [2806] = 2806, - [2807] = 2807, - [2808] = 469, + [2807] = 2732, + [2808] = 2808, [2809] = 2809, - [2810] = 2810, - [2811] = 2805, - [2812] = 2806, - [2813] = 481, - [2814] = 478, - [2815] = 2566, - [2816] = 2809, - [2817] = 2810, - [2818] = 2805, - [2819] = 2806, - [2820] = 2820, - [2821] = 2809, - [2822] = 2491, - [2823] = 2810, - [2824] = 2805, - [2825] = 2806, + [2810] = 485, + [2811] = 2449, + [2812] = 486, + [2813] = 2813, + [2814] = 2814, + [2815] = 470, + [2816] = 1630, + [2817] = 1631, + [2818] = 2631, + [2819] = 2819, + [2820] = 1139, + [2821] = 1140, + [2822] = 2602, + [2823] = 2823, + [2824] = 2506, + [2825] = 2825, [2826] = 2826, - [2827] = 2809, - [2828] = 2810, + [2827] = 2827, + [2828] = 2828, [2829] = 2829, - [2830] = 2809, - [2831] = 1464, - [2832] = 471, - [2833] = 1670, - [2834] = 486, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2604, + [2834] = 471, [2835] = 2835, - [2836] = 2836, - [2837] = 2837, - [2838] = 2838, - [2839] = 1673, - [2840] = 2636, - [2841] = 1468, - [2842] = 2541, - [2843] = 2646, - [2844] = 2647, - [2845] = 2805, - [2846] = 482, - [2847] = 2518, - [2848] = 483, - [2849] = 484, - [2850] = 488, - [2851] = 2641, - [2852] = 1655, - [2853] = 2648, - [2854] = 2642, - [2855] = 2649, - [2856] = 475, - [2857] = 2643, - [2858] = 2602, - [2859] = 1320, - [2860] = 477, - [2861] = 2644, - [2862] = 2642, - [2863] = 2810, - [2864] = 470, - [2865] = 487, - [2866] = 2866, - [2867] = 2646, - [2868] = 2650, - [2869] = 485, - [2870] = 2637, - [2871] = 1150, - [2872] = 2508, - [2873] = 2750, - [2874] = 1153, - [2875] = 2750, - [2876] = 1673, - [2877] = 2520, - [2878] = 2565, - [2879] = 475, - [2880] = 2442, - [2881] = 473, - [2882] = 477, - [2883] = 2638, - [2884] = 2639, - [2885] = 2806, - [2886] = 2647, - [2887] = 2887, - [2888] = 469, - [2889] = 2889, - [2890] = 472, - [2891] = 476, + [2836] = 489, + [2837] = 1422, + [2838] = 2732, + [2839] = 493, + [2840] = 474, + [2841] = 2841, + [2842] = 460, + [2843] = 459, + [2844] = 2732, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 472, + [2849] = 2849, + [2850] = 2850, + [2851] = 477, + [2852] = 2852, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 2857, + [2858] = 2606, + [2859] = 485, + [2860] = 2860, + [2861] = 2830, + [2862] = 2746, + [2863] = 2863, + [2864] = 2864, + [2865] = 2595, + [2866] = 478, + [2867] = 469, + [2868] = 2823, + [2869] = 2825, + [2870] = 480, + [2871] = 2835, + [2872] = 484, + [2873] = 2825, + [2874] = 2874, + [2875] = 2860, + [2876] = 1567, + [2877] = 2841, + [2878] = 2826, + [2879] = 2827, + [2880] = 2880, + [2881] = 481, + [2882] = 2828, + [2883] = 2829, + [2884] = 2830, + [2885] = 2885, + [2886] = 2885, + [2887] = 2831, + [2888] = 2832, + [2889] = 2835, + [2890] = 2849, + [2891] = 2841, [2892] = 479, - [2893] = 474, - [2894] = 2640, - [2895] = 2640, - [2896] = 460, - [2897] = 459, - [2898] = 491, - [2899] = 471, - [2900] = 2641, - [2901] = 1655, - [2902] = 2902, - [2903] = 2648, - [2904] = 2887, - [2905] = 2905, + [2893] = 2752, + [2894] = 475, + [2895] = 2746, + [2896] = 2863, + [2897] = 1565, + [2898] = 2752, + [2899] = 2572, + [2900] = 1413, + [2901] = 2845, + [2902] = 2853, + [2903] = 2854, + [2904] = 2759, + [2905] = 2845, [2906] = 2906, - [2907] = 2907, - [2908] = 2491, - [2909] = 2636, - [2910] = 2637, - [2911] = 2638, - [2912] = 2639, - [2913] = 2640, - [2914] = 2641, - [2915] = 2642, - [2916] = 2643, - [2917] = 2644, - [2918] = 2646, - [2919] = 2919, - [2920] = 2627, - [2921] = 488, - [2922] = 2649, - [2923] = 2650, - [2924] = 476, - [2925] = 479, - [2926] = 480, - [2927] = 1468, - [2928] = 2495, - [2929] = 1608, - [2930] = 1609, - [2931] = 2931, - [2932] = 2932, - [2933] = 2487, - [2934] = 481, - [2935] = 2602, - [2936] = 460, - [2937] = 459, - [2938] = 2649, - [2939] = 2650, - [2940] = 460, - [2941] = 459, - [2942] = 2810, - [2943] = 2805, - [2944] = 2806, - [2945] = 1604, - [2946] = 2643, - [2947] = 2809, - [2948] = 2948, - [2949] = 482, - [2950] = 483, - [2951] = 2624, - [2952] = 2625, - [2953] = 484, - [2954] = 2627, - [2955] = 2887, - [2956] = 2624, - [2957] = 2625, - [2958] = 2627, - [2959] = 2520, - [2960] = 2565, - [2961] = 2636, - [2962] = 2637, - [2963] = 2638, - [2964] = 2639, - [2965] = 2640, - [2966] = 2641, - [2967] = 2642, - [2968] = 2643, - [2969] = 2644, - [2970] = 2646, - [2971] = 2647, - [2972] = 2648, - [2973] = 2649, - [2974] = 2650, - [2975] = 1320, - [2976] = 2495, - [2977] = 2487, - [2978] = 2978, - [2979] = 2750, - [2980] = 2810, - [2981] = 2809, - [2982] = 2805, - [2983] = 2806, - [2984] = 2984, - [2985] = 2985, - [2986] = 2809, - [2987] = 2948, - [2988] = 2887, - [2989] = 2624, - [2990] = 2625, - [2991] = 491, - [2992] = 2627, - [2993] = 2810, - [2994] = 2624, - [2995] = 2948, - [2996] = 2996, - [2997] = 2750, - [2998] = 2805, - [2999] = 488, - [3000] = 2512, - [3001] = 2636, - [3002] = 2637, - [3003] = 2638, - [3004] = 2887, - [3005] = 2639, - [3006] = 2806, - [3007] = 491, - [3008] = 1479, - [3009] = 473, - [3010] = 2809, - [3011] = 2644, - [3012] = 2948, - [3013] = 2625, - [3014] = 480, - [3015] = 2887, - [3016] = 2545, - [3017] = 2810, - [3018] = 2648, - [3019] = 2646, - [3020] = 3020, - [3021] = 2766, - [3022] = 2767, - [3023] = 3020, - [3024] = 2712, - [3025] = 2768, - [3026] = 3020, - [3027] = 2715, - [3028] = 3020, - [3029] = 2769, - [3030] = 3020, - [3031] = 2727, - [3032] = 2770, - [3033] = 3020, - [3034] = 2729, - [3035] = 2771, - [3036] = 3020, - [3037] = 2772, - [3038] = 3020, - [3039] = 2773, - [3040] = 3020, - [3041] = 2774, - [3042] = 3020, - [3043] = 2775, - [3044] = 3020, - [3045] = 2776, - [3046] = 3020, - [3047] = 2978, - [3048] = 3020, - [3049] = 2984, - [3050] = 3020, - [3051] = 2985, - [3052] = 3020, - [3053] = 2996, - [3054] = 3020, - [3055] = 3020, - [3056] = 2919, - [3057] = 3020, - [3058] = 3020, - [3059] = 2807, - [3060] = 3020, - [3061] = 3020, - [3062] = 459, - [3063] = 3020, - [3064] = 2820, - [3065] = 3020, - [3066] = 2826, - [3067] = 3020, - [3068] = 2829, - [3069] = 3020, - [3070] = 2835, - [3071] = 3020, - [3072] = 3020, - [3073] = 465, - [3074] = 3020, - [3075] = 475, - [3076] = 3020, - [3077] = 2836, - [3078] = 2837, - [3079] = 3020, - [3080] = 1020, - [3081] = 3020, - [3082] = 1021, - [3083] = 3020, - [3084] = 3020, - [3085] = 3020, - [3086] = 3020, - [3087] = 473, - [3088] = 3020, - [3089] = 2776, - [3090] = 3020, - [3091] = 473, - [3092] = 477, - [3093] = 3020, - [3094] = 3020, - [3095] = 480, - [3096] = 3020, - [3097] = 2587, - [3098] = 3020, - [3099] = 475, - [3100] = 3020, - [3101] = 2588, - [3102] = 3020, - [3103] = 2907, - [3104] = 3020, - [3105] = 2978, - [3106] = 3020, - [3107] = 2984, - [3108] = 3020, - [3109] = 469, - [3110] = 3020, - [3111] = 2866, - [3112] = 3020, - [3113] = 2629, - [3114] = 2985, - [3115] = 3020, - [3116] = 3116, - [3117] = 477, - [3118] = 3020, - [3119] = 2996, - [3120] = 2919, - [3121] = 3020, - [3122] = 2807, - [3123] = 2820, - [3124] = 3020, - [3125] = 2826, - [3126] = 3020, - [3127] = 2829, - [3128] = 3020, - [3129] = 471, - [3130] = 3020, - [3131] = 2835, - [3132] = 3020, - [3133] = 2836, - [3134] = 3020, - [3135] = 2837, - [3136] = 1320, - [3137] = 476, - [3138] = 460, - [3139] = 459, - [3140] = 479, - [3141] = 475, - [3142] = 460, - [3143] = 459, - [3144] = 469, - [3145] = 480, - [3146] = 481, - [3147] = 3020, - [3148] = 471, - [3149] = 3149, - [3150] = 3149, - [3151] = 491, - [3152] = 2595, - [3153] = 2596, - [3154] = 481, - [3155] = 3020, - [3156] = 2765, - [3157] = 2866, - [3158] = 3158, - [3159] = 2629, - [3160] = 3160, - [3161] = 3161, - [3162] = 476, - [3163] = 3163, - [3164] = 2902, - [3165] = 2905, - [3166] = 3166, - [3167] = 479, - [3168] = 3166, - [3169] = 473, - [3170] = 2906, - [3171] = 2838, - [3172] = 2617, - [3173] = 2619, - [3174] = 2750, - [3175] = 2623, - [3176] = 2631, - [3177] = 477, - [3178] = 480, - [3179] = 3020, - [3180] = 3149, - [3181] = 3158, - [3182] = 482, - [3183] = 3160, - [3184] = 483, - [3185] = 3161, - [3186] = 484, - [3187] = 3163, - [3188] = 3166, - [3189] = 476, - [3190] = 469, - [3191] = 481, - [3192] = 482, - [3193] = 483, - [3194] = 484, - [3195] = 2902, - [3196] = 2905, - [3197] = 3020, - [3198] = 471, - [3199] = 2906, - [3200] = 2587, - [3201] = 2838, - [3202] = 2588, - [3203] = 2617, - [3204] = 460, - [3205] = 459, - [3206] = 2595, - [3207] = 2596, - [3208] = 2619, - [3209] = 3160, - [3210] = 2623, - [3211] = 475, - [3212] = 3158, - [3213] = 473, - [3214] = 3214, - [3215] = 477, - [3216] = 469, - [3217] = 3217, - [3218] = 471, - [3219] = 3160, - [3220] = 476, - [3221] = 479, - [3222] = 3161, - [3223] = 2631, - [3224] = 480, - [3225] = 3163, - [3226] = 3166, - [3227] = 481, - [3228] = 460, - [3229] = 459, - [3230] = 491, - [3231] = 479, - [3232] = 482, - [3233] = 483, - [3234] = 484, - [3235] = 3020, - [3236] = 482, - [3237] = 483, - [3238] = 484, - [3239] = 488, - [3240] = 3161, - [3241] = 460, - [3242] = 2636, - [3243] = 2637, - [3244] = 2638, - [3245] = 2639, - [3246] = 2640, - [3247] = 2641, - [3248] = 2642, - [3249] = 2643, - [3250] = 2644, - [3251] = 2775, - [3252] = 2647, - [3253] = 2648, - [3254] = 2649, - [3255] = 2650, - [3256] = 491, - [3257] = 3020, - [3258] = 2624, - [3259] = 2625, - [3260] = 2627, - [3261] = 2907, - [3262] = 2712, - [3263] = 2931, - [3264] = 2932, - [3265] = 2751, - [3266] = 2752, - [3267] = 2715, - [3268] = 3020, - [3269] = 2765, - [3270] = 2766, - [3271] = 2767, - [3272] = 2727, - [3273] = 2768, - [3274] = 2729, - [3275] = 2931, - [3276] = 2769, - [3277] = 2932, - [3278] = 2770, - [3279] = 466, - [3280] = 3020, - [3281] = 463, - [3282] = 2751, - [3283] = 464, - [3284] = 2752, - [3285] = 2771, - [3286] = 2772, - [3287] = 2773, - [3288] = 2774, - [3289] = 3163, - [3290] = 460, - [3291] = 460, - [3292] = 459, - [3293] = 481, - [3294] = 471, - [3295] = 472, - [3296] = 487, - [3297] = 474, - [3298] = 491, - [3299] = 3299, - [3300] = 3300, - [3301] = 473, - [3302] = 3299, - [3303] = 3300, - [3304] = 3304, - [3305] = 480, - [3306] = 3306, - [3307] = 3307, - [3308] = 460, - [3309] = 459, - [3310] = 3310, - [3311] = 460, - [3312] = 476, - [3313] = 469, - [3314] = 3307, - [3315] = 460, - [3316] = 479, - [3317] = 460, - [3318] = 459, - [3319] = 3306, - [3320] = 3299, - [3321] = 459, - [3322] = 3300, - [3323] = 3304, - [3324] = 3306, - [3325] = 3307, - [3326] = 3310, - [3327] = 3299, - [3328] = 3300, - [3329] = 477, - [3330] = 3304, - [3331] = 3306, - [3332] = 3307, - [3333] = 482, - [3334] = 3310, - [3335] = 485, - [3336] = 3304, - [3337] = 483, - [3338] = 459, - [3339] = 460, - [3340] = 484, - [3341] = 478, - [3342] = 486, - [3343] = 459, - [3344] = 475, - [3345] = 459, - [3346] = 470, - [3347] = 3310, - [3348] = 459, - [3349] = 1121, + [2907] = 2616, + [2908] = 2853, + [2909] = 2863, + [2910] = 2906, + [2911] = 2594, + [2912] = 2912, + [2913] = 2913, + [2914] = 2914, + [2915] = 2880, + [2916] = 476, + [2917] = 1293, + [2918] = 2860, + [2919] = 2874, + [2920] = 2860, + [2921] = 2921, + [2922] = 1546, + [2923] = 485, + [2924] = 486, + [2925] = 1299, + [2926] = 2826, + [2927] = 2823, + [2928] = 2825, + [2929] = 2826, + [2930] = 2827, + [2931] = 2828, + [2932] = 2576, + [2933] = 2829, + [2934] = 2830, + [2935] = 2831, + [2936] = 2832, + [2937] = 2880, + [2938] = 2885, + [2939] = 2835, + [2940] = 2841, + [2941] = 2845, + [2942] = 2853, + [2943] = 2854, + [2944] = 1546, + [2945] = 477, + [2946] = 2607, + [2947] = 470, + [2948] = 2759, + [2949] = 2885, + [2950] = 2874, + [2951] = 2608, + [2952] = 493, + [2953] = 2906, + [2954] = 2831, + [2955] = 460, + [2956] = 2956, + [2957] = 478, + [2958] = 479, + [2959] = 2906, + [2960] = 489, + [2961] = 2602, + [2962] = 480, + [2963] = 2860, + [2964] = 471, + [2965] = 2906, + [2966] = 487, + [2967] = 2860, + [2968] = 481, + [2969] = 2489, + [2970] = 2809, + [2971] = 482, + [2972] = 483, + [2973] = 474, + [2974] = 469, + [2975] = 2880, + [2976] = 2829, + [2977] = 2977, + [2978] = 484, + [2979] = 2880, + [2980] = 2885, + [2981] = 2827, + [2982] = 2863, + [2983] = 1630, + [2984] = 1631, + [2985] = 2616, + [2986] = 2860, + [2987] = 2823, + [2988] = 2832, + [2989] = 2989, + [2990] = 2828, + [2991] = 485, + [2992] = 486, + [2993] = 470, + [2994] = 1545, + [2995] = 2885, + [2996] = 2874, + [2997] = 489, + [2998] = 2809, + [2999] = 482, + [3000] = 483, + [3001] = 2880, + [3002] = 2506, + [3003] = 2880, + [3004] = 2906, + [3005] = 472, + [3006] = 3006, + [3007] = 3007, + [3008] = 2746, + [3009] = 493, + [3010] = 2594, + [3011] = 2595, + [3012] = 2823, + [3013] = 2825, + [3014] = 2826, + [3015] = 2809, + [3016] = 2827, + [3017] = 493, + [3018] = 3018, + [3019] = 1413, + [3020] = 2849, + [3021] = 3021, + [3022] = 459, + [3023] = 1674, + [3024] = 2828, + [3025] = 2829, + [3026] = 2874, + [3027] = 2830, + [3028] = 2831, + [3029] = 2832, + [3030] = 2835, + [3031] = 2841, + [3032] = 3032, + [3033] = 2906, + [3034] = 3034, + [3035] = 2845, + [3036] = 2853, + [3037] = 2854, + [3038] = 2752, + [3039] = 2607, + [3040] = 2608, + [3041] = 2809, + [3042] = 460, + [3043] = 459, + [3044] = 3044, + [3045] = 2854, + [3046] = 2759, + [3047] = 3047, + [3048] = 2860, + [3049] = 1598, + [3050] = 2606, + [3051] = 3051, + [3052] = 2885, + [3053] = 2604, + [3054] = 1601, + [3055] = 2874, + [3056] = 459, + [3057] = 477, + [3058] = 2906, + [3059] = 473, + [3060] = 3060, + [3061] = 3061, + [3062] = 2880, + [3063] = 3063, + [3064] = 3064, + [3065] = 3065, + [3066] = 1565, + [3067] = 2746, + [3068] = 2752, + [3069] = 2885, + [3070] = 460, + [3071] = 489, + [3072] = 1567, + [3073] = 2759, + [3074] = 2906, + [3075] = 2860, + [3076] = 2956, + [3077] = 2721, + [3078] = 2743, + [3079] = 477, + [3080] = 478, + [3081] = 479, + [3082] = 480, + [3083] = 2805, + [3084] = 2808, + [3085] = 2813, + [3086] = 2814, + [3087] = 481, + [3088] = 3088, + [3089] = 482, + [3090] = 483, + [3091] = 469, + [3092] = 484, + [3093] = 460, + [3094] = 3094, + [3095] = 3095, + [3096] = 459, + [3097] = 460, + [3098] = 459, + [3099] = 460, + [3100] = 459, + [3101] = 3101, + [3102] = 485, + [3103] = 486, + [3104] = 470, + [3105] = 3094, + [3106] = 493, + [3107] = 2737, + [3108] = 3108, + [3109] = 2755, + [3110] = 2629, + [3111] = 3111, + [3112] = 3112, + [3113] = 3113, + [3114] = 3114, + [3115] = 2776, + [3116] = 3111, + [3117] = 2805, + [3118] = 3101, + [3119] = 3094, + [3120] = 3108, + [3121] = 3111, + [3122] = 3112, + [3123] = 3113, + [3124] = 3114, + [3125] = 3101, + [3126] = 463, + [3127] = 2808, + [3128] = 464, + [3129] = 3111, + [3130] = 3112, + [3131] = 467, + [3132] = 3113, + [3133] = 3114, + [3134] = 3006, + [3135] = 3101, + [3136] = 3101, + [3137] = 3007, + [3138] = 3018, + [3139] = 466, + [3140] = 3021, + [3141] = 3101, + [3142] = 3101, + [3143] = 493, + [3144] = 3032, + [3145] = 3101, + [3146] = 3047, + [3147] = 3101, + [3148] = 3101, + [3149] = 3051, + [3150] = 3101, + [3151] = 3101, + [3152] = 3101, + [3153] = 3101, + [3154] = 3101, + [3155] = 3112, + [3156] = 3101, + [3157] = 3101, + [3158] = 3101, + [3159] = 3101, + [3160] = 3063, + [3161] = 460, + [3162] = 3101, + [3163] = 459, + [3164] = 3101, + [3165] = 2864, + [3166] = 3101, + [3167] = 477, + [3168] = 3101, + [3169] = 3101, + [3170] = 2912, + [3171] = 479, + [3172] = 3101, + [3173] = 2913, + [3174] = 3101, + [3175] = 3101, + [3176] = 3101, + [3177] = 3101, + [3178] = 3101, + [3179] = 482, + [3180] = 3101, + [3181] = 483, + [3182] = 3101, + [3183] = 3101, + [3184] = 489, + [3185] = 3101, + [3186] = 3101, + [3187] = 3101, + [3188] = 3101, + [3189] = 3101, + [3190] = 3101, + [3191] = 3101, + [3192] = 478, + [3193] = 3101, + [3194] = 469, + [3195] = 3101, + [3196] = 3101, + [3197] = 3101, + [3198] = 480, + [3199] = 3101, + [3200] = 484, + [3201] = 3101, + [3202] = 3101, + [3203] = 3101, + [3204] = 481, + [3205] = 3101, + [3206] = 3101, + [3207] = 3101, + [3208] = 493, + [3209] = 2914, + [3210] = 3101, + [3211] = 3101, + [3212] = 3101, + [3213] = 485, + [3214] = 2692, + [3215] = 486, + [3216] = 470, + [3217] = 3101, + [3218] = 3101, + [3219] = 3101, + [3220] = 3101, + [3221] = 3101, + [3222] = 3101, + [3223] = 3034, + [3224] = 3101, + [3225] = 3101, + [3226] = 3101, + [3227] = 3044, + [3228] = 3060, + [3229] = 2846, + [3230] = 3061, + [3231] = 2847, + [3232] = 2852, + [3233] = 2855, + [3234] = 2856, + [3235] = 2857, + [3236] = 2701, + [3237] = 3064, + [3238] = 3065, + [3239] = 2783, + [3240] = 2633, + [3241] = 2766, + [3242] = 3060, + [3243] = 3061, + [3244] = 3064, + [3245] = 3065, + [3246] = 2783, + [3247] = 2633, + [3248] = 2780, + [3249] = 2660, + [3250] = 477, + [3251] = 3113, + [3252] = 2850, + [3253] = 482, + [3254] = 483, + [3255] = 478, + [3256] = 479, + [3257] = 469, + [3258] = 2799, + [3259] = 480, + [3260] = 484, + [3261] = 485, + [3262] = 486, + [3263] = 470, + [3264] = 3114, + [3265] = 481, + [3266] = 2813, + [3267] = 2814, + [3268] = 3101, + [3269] = 3034, + [3270] = 3044, + [3271] = 2846, + [3272] = 2847, + [3273] = 2852, + [3274] = 2855, + [3275] = 2856, + [3276] = 2857, + [3277] = 2701, + [3278] = 2766, + [3279] = 2850, + [3280] = 2799, + [3281] = 2806, + [3282] = 2692, + [3283] = 2721, + [3284] = 2743, + [3285] = 2780, + [3286] = 2977, + [3287] = 2660, + [3288] = 2806, + [3289] = 460, + [3290] = 459, + [3291] = 2819, + [3292] = 3006, + [3293] = 3007, + [3294] = 3018, + [3295] = 3021, + [3296] = 3032, + [3297] = 3047, + [3298] = 3051, + [3299] = 3063, + [3300] = 2864, + [3301] = 2912, + [3302] = 2913, + [3303] = 2914, + [3304] = 2956, + [3305] = 2977, + [3306] = 2819, + [3307] = 477, + [3308] = 1139, + [3309] = 1140, + [3310] = 478, + [3311] = 479, + [3312] = 480, + [3313] = 481, + [3314] = 2737, + [3315] = 2755, + [3316] = 2629, + [3317] = 2809, + [3318] = 2776, + [3319] = 1413, + [3320] = 482, + [3321] = 483, + [3322] = 469, + [3323] = 484, + [3324] = 3108, + [3325] = 2823, + [3326] = 2825, + [3327] = 2826, + [3328] = 2827, + [3329] = 2828, + [3330] = 2829, + [3331] = 2830, + [3332] = 2831, + [3333] = 2832, + [3334] = 2835, + [3335] = 2841, + [3336] = 2845, + [3337] = 2853, + [3338] = 2854, + [3339] = 2746, + [3340] = 2752, + [3341] = 2759, + [3342] = 485, + [3343] = 486, + [3344] = 470, + [3345] = 3101, + [3346] = 3346, + [3347] = 3346, + [3348] = 3348, + [3349] = 3349, [3350] = 3350, - [3351] = 818, - [3352] = 1122, - [3353] = 459, - [3354] = 465, - [3355] = 3350, - [3356] = 838, - [3357] = 3357, - [3358] = 1020, - [3359] = 464, - [3360] = 572, - [3361] = 1015, - [3362] = 466, - [3363] = 488, - [3364] = 810, - [3365] = 3350, - [3366] = 3366, - [3367] = 3350, - [3368] = 3368, - [3369] = 1320, - [3370] = 3370, + [3351] = 481, + [3352] = 474, + [3353] = 493, + [3354] = 473, + [3355] = 459, + [3356] = 3346, + [3357] = 460, + [3358] = 459, + [3359] = 460, + [3360] = 459, + [3361] = 459, + [3362] = 460, + [3363] = 459, + [3364] = 459, + [3365] = 475, + [3366] = 460, + [3367] = 485, + [3368] = 486, + [3369] = 470, + [3370] = 3348, [3371] = 3371, - [3372] = 463, - [3373] = 1021, - [3374] = 1096, - [3375] = 460, - [3376] = 817, - [3377] = 460, - [3378] = 3378, - [3379] = 487, - [3380] = 485, - [3381] = 3381, - [3382] = 472, - [3383] = 474, - [3384] = 3381, - [3385] = 3385, - [3386] = 3386, - [3387] = 3381, - [3388] = 3381, - [3389] = 3381, - [3390] = 3381, - [3391] = 3381, - [3392] = 3381, - [3393] = 3381, - [3394] = 3381, - [3395] = 3381, - [3396] = 3381, - [3397] = 3381, - [3398] = 3381, - [3399] = 3381, - [3400] = 3381, - [3401] = 3381, - [3402] = 486, - [3403] = 3403, - [3404] = 475, - [3405] = 473, - [3406] = 477, - [3407] = 469, - [3408] = 471, - [3409] = 476, - [3410] = 479, - [3411] = 480, - [3412] = 481, - [3413] = 482, - [3414] = 483, - [3415] = 484, - [3416] = 460, - [3417] = 459, - [3418] = 478, - [3419] = 491, - [3420] = 3381, - [3421] = 3381, - [3422] = 470, - [3423] = 3381, - [3424] = 3381, - [3425] = 3381, - [3426] = 3381, - [3427] = 1457, - [3428] = 3428, - [3429] = 3429, - [3430] = 3428, - [3431] = 3429, - [3432] = 1029, - [3433] = 460, - [3434] = 3429, - [3435] = 3428, - [3436] = 3429, - [3437] = 3428, - [3438] = 3428, - [3439] = 3429, - [3440] = 3428, - [3441] = 3429, - [3442] = 1320, - [3443] = 459, - [3444] = 3444, - [3445] = 3428, - [3446] = 3428, - [3447] = 3429, - [3448] = 3429, - [3449] = 1027, - [3450] = 460, - [3451] = 1337, - [3452] = 1411, - [3453] = 3428, - [3454] = 488, - [3455] = 459, - [3456] = 3429, - [3457] = 3457, - [3458] = 3458, - [3459] = 3459, - [3460] = 3460, - [3461] = 3461, - [3462] = 3462, - [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 3466, - [3467] = 3467, - [3468] = 3460, - [3469] = 3469, - [3470] = 3462, - [3471] = 3471, - [3472] = 3460, - [3473] = 3462, - [3474] = 3462, - [3475] = 3475, - [3476] = 3460, - [3477] = 3462, - [3478] = 3460, - [3479] = 3462, - [3480] = 3460, - [3481] = 3460, - [3482] = 3462, - [3483] = 3460, - [3484] = 3462, - [3485] = 3462, - [3486] = 3460, - [3487] = 3462, - [3488] = 572, - [3489] = 3460, - [3490] = 3462, - [3491] = 3491, - [3492] = 3492, - [3493] = 3493, + [3372] = 3372, + [3373] = 3372, + [3374] = 483, + [3375] = 3349, + [3376] = 3350, + [3377] = 477, + [3378] = 460, + [3379] = 476, + [3380] = 459, + [3381] = 479, + [3382] = 3371, + [3383] = 3372, + [3384] = 3346, + [3385] = 3348, + [3386] = 3349, + [3387] = 3350, + [3388] = 478, + [3389] = 469, + [3390] = 3372, + [3391] = 480, + [3392] = 484, + [3393] = 471, + [3394] = 3371, + [3395] = 472, + [3396] = 487, + [3397] = 482, + [3398] = 460, + [3399] = 460, + [3400] = 3371, + [3401] = 3349, + [3402] = 3350, + [3403] = 3348, + [3404] = 1093, + [3405] = 914, + [3406] = 3406, + [3407] = 568, + [3408] = 3406, + [3409] = 489, + [3410] = 3406, + [3411] = 3411, + [3412] = 3412, + [3413] = 3413, + [3414] = 1094, + [3415] = 3415, + [3416] = 3416, + [3417] = 913, + [3418] = 460, + [3419] = 459, + [3420] = 1413, + [3421] = 466, + [3422] = 460, + [3423] = 463, + [3424] = 459, + [3425] = 1139, + [3426] = 464, + [3427] = 1140, + [3428] = 1111, + [3429] = 467, + [3430] = 1110, + [3431] = 901, + [3432] = 902, + [3433] = 3406, + [3434] = 477, + [3435] = 3435, + [3436] = 3435, + [3437] = 3435, + [3438] = 3435, + [3439] = 3435, + [3440] = 3435, + [3441] = 481, + [3442] = 3435, + [3443] = 3443, + [3444] = 3435, + [3445] = 3445, + [3446] = 3435, + [3447] = 486, + [3448] = 479, + [3449] = 470, + [3450] = 3435, + [3451] = 3435, + [3452] = 460, + [3453] = 469, + [3454] = 485, + [3455] = 3435, + [3456] = 3456, + [3457] = 3435, + [3458] = 493, + [3459] = 478, + [3460] = 471, + [3461] = 3435, + [3462] = 472, + [3463] = 473, + [3464] = 3435, + [3465] = 459, + [3466] = 487, + [3467] = 474, + [3468] = 3435, + [3469] = 482, + [3470] = 483, + [3471] = 480, + [3472] = 484, + [3473] = 3435, + [3474] = 3435, + [3475] = 3435, + [3476] = 3435, + [3477] = 3435, + [3478] = 475, + [3479] = 3435, + [3480] = 476, + [3481] = 3435, + [3482] = 3482, + [3483] = 1153, + [3484] = 3484, + [3485] = 489, + [3486] = 3486, + [3487] = 3484, + [3488] = 3484, + [3489] = 3486, + [3490] = 1413, + [3491] = 3484, + [3492] = 3484, + [3493] = 459, [3494] = 3494, - [3495] = 3495, - [3496] = 3464, - [3497] = 3497, - [3498] = 3498, - [3499] = 3499, - [3500] = 3500, - [3501] = 3467, - [3502] = 3502, - [3503] = 3503, - [3504] = 3494, - [3505] = 3464, - [3506] = 3467, - [3507] = 3507, - [3508] = 3461, - [3509] = 460, - [3510] = 3510, - [3511] = 3457, - [3512] = 459, + [3495] = 460, + [3496] = 459, + [3497] = 3486, + [3498] = 3486, + [3499] = 3486, + [3500] = 1350, + [3501] = 1353, + [3502] = 3486, + [3503] = 3484, + [3504] = 460, + [3505] = 3486, + [3506] = 1149, + [3507] = 3486, + [3508] = 1452, + [3509] = 3484, + [3510] = 3484, + [3511] = 3484, + [3512] = 3486, [3513] = 3513, - [3514] = 3471, - [3515] = 3463, - [3516] = 1670, + [3514] = 3514, + [3515] = 3514, + [3516] = 3513, [3517] = 3517, [3518] = 3518, - [3519] = 3465, - [3520] = 1153, - [3521] = 3466, - [3522] = 3510, - [3523] = 3457, - [3524] = 3460, + [3519] = 3514, + [3520] = 3513, + [3521] = 3521, + [3522] = 3514, + [3523] = 3513, + [3524] = 3514, [3525] = 3513, [3526] = 3518, - [3527] = 3471, - [3528] = 3517, - [3529] = 3518, - [3530] = 3462, - [3531] = 3510, - [3532] = 3457, - [3533] = 3510, - [3534] = 3457, - [3535] = 3517, - [3536] = 3518, - [3537] = 3469, - [3538] = 3510, - [3539] = 3457, - [3540] = 3517, - [3541] = 3518, - [3542] = 3460, - [3543] = 3510, - [3544] = 3457, - [3545] = 3462, - [3546] = 3510, - [3547] = 3457, - [3548] = 3510, - [3549] = 3457, - [3550] = 3460, - [3551] = 3517, - [3552] = 3462, - [3553] = 3510, - [3554] = 3457, - [3555] = 3510, - [3556] = 3457, - [3557] = 3510, - [3558] = 3457, - [3559] = 3510, - [3560] = 3457, - [3561] = 3460, - [3562] = 3462, - [3563] = 3510, - [3564] = 3460, - [3565] = 3510, - [3566] = 3457, - [3567] = 3510, - [3568] = 3457, - [3569] = 3510, - [3570] = 3457, - [3571] = 3510, - [3572] = 3457, - [3573] = 3510, - [3574] = 3457, - [3575] = 3510, - [3576] = 3457, - [3577] = 3510, - [3578] = 3457, - [3579] = 3500, - [3580] = 3457, - [3581] = 3510, - [3582] = 3457, - [3583] = 3510, - [3584] = 3457, - [3585] = 3510, - [3586] = 3457, - [3587] = 3510, - [3588] = 3457, - [3589] = 3510, - [3590] = 3457, - [3591] = 3510, - [3592] = 3457, - [3593] = 3510, - [3594] = 3457, - [3595] = 3493, - [3596] = 3510, - [3597] = 3457, - [3598] = 3495, - [3599] = 3497, - [3600] = 3498, - [3601] = 3510, - [3602] = 3457, - [3603] = 3500, - [3604] = 3510, - [3605] = 3457, - [3606] = 3458, - [3607] = 3510, - [3608] = 3457, - [3609] = 3459, - [3610] = 3461, - [3611] = 3510, - [3612] = 3457, - [3613] = 3463, - [3614] = 3510, - [3615] = 3457, - [3616] = 3510, - [3617] = 3457, - [3618] = 3510, - [3619] = 3457, - [3620] = 3510, - [3621] = 3457, - [3622] = 3510, - [3623] = 3457, - [3624] = 3510, - [3625] = 3457, - [3626] = 3465, - [3627] = 3466, - [3628] = 3510, - [3629] = 3457, - [3630] = 3510, - [3631] = 3457, - [3632] = 3469, - [3633] = 3475, - [3634] = 3510, - [3635] = 3457, - [3636] = 3510, - [3637] = 3457, - [3638] = 3510, - [3639] = 3457, - [3640] = 460, - [3641] = 3510, - [3642] = 3457, - [3643] = 459, - [3644] = 3510, - [3645] = 3457, - [3646] = 3510, - [3647] = 3457, - [3648] = 3510, - [3649] = 3457, - [3650] = 3510, - [3651] = 3457, - [3652] = 3510, - [3653] = 3457, - [3654] = 3510, - [3655] = 3457, - [3656] = 3510, - [3657] = 3457, - [3658] = 3510, - [3659] = 3457, - [3660] = 3510, - [3661] = 3457, - [3662] = 1673, - [3663] = 3510, - [3664] = 3457, - [3665] = 3510, - [3666] = 3457, - [3667] = 3458, - [3668] = 3510, - [3669] = 3457, - [3670] = 3510, - [3671] = 3457, - [3672] = 3510, - [3673] = 3457, - [3674] = 3510, - [3675] = 3457, - [3676] = 3510, - [3677] = 3457, - [3678] = 3510, - [3679] = 3457, - [3680] = 3510, - [3681] = 3457, - [3682] = 3510, - [3683] = 3457, - [3684] = 3510, - [3685] = 3457, - [3686] = 3475, - [3687] = 460, - [3688] = 459, - [3689] = 3689, - [3690] = 3690, - [3691] = 1468, - [3692] = 1479, - [3693] = 3493, - [3694] = 3690, - [3695] = 3495, - [3696] = 1150, - [3697] = 3513, - [3698] = 3460, - [3699] = 3497, - [3700] = 3462, - [3701] = 1655, - [3702] = 3498, - [3703] = 491, - [3704] = 3459, - [3705] = 3494, - [3706] = 3690, - [3707] = 460, - [3708] = 459, - [3709] = 3510, - [3710] = 460, - [3711] = 3711, - [3712] = 3712, - [3713] = 3713, - [3714] = 3711, - [3715] = 3715, - [3716] = 3712, - [3717] = 3711, - [3718] = 3718, - [3719] = 3711, - [3720] = 3712, - [3721] = 3711, - [3722] = 3712, - [3723] = 3712, - [3724] = 3711, - [3725] = 3712, - [3726] = 3711, - [3727] = 3712, - [3728] = 3713, - [3729] = 3715, - [3730] = 3730, - [3731] = 3711, - [3732] = 3711, - [3733] = 3712, - [3734] = 3711, - [3735] = 3715, - [3736] = 3718, - [3737] = 3711, - [3738] = 3712, - [3739] = 3712, - [3740] = 3718, - [3741] = 3711, - [3742] = 3711, - [3743] = 3713, - [3744] = 3711, - [3745] = 3712, - [3746] = 459, - [3747] = 3715, - [3748] = 3711, - [3749] = 3712, - [3750] = 3715, - [3751] = 3711, - [3752] = 3711, - [3753] = 3711, - [3754] = 3712, - [3755] = 3712, - [3756] = 3711, - [3757] = 3712, - [3758] = 3712, - [3759] = 3718, - [3760] = 3730, - [3761] = 3718, - [3762] = 3712, - [3763] = 3711, - [3764] = 3712, - [3765] = 3712, - [3766] = 3712, - [3767] = 3715, - [3768] = 3718, - [3769] = 3711, - [3770] = 3712, - [3771] = 3711, - [3772] = 3713, - [3773] = 3712, - [3774] = 459, - [3775] = 460, - [3776] = 3730, - [3777] = 460, - [3778] = 3711, - [3779] = 3711, - [3780] = 3712, - [3781] = 3711, - [3782] = 460, - [3783] = 3711, - [3784] = 3712, - [3785] = 459, - [3786] = 3711, - [3787] = 3712, - [3788] = 3712, - [3789] = 3713, - [3790] = 3713, - [3791] = 3730, - [3792] = 3712, - [3793] = 3711, - [3794] = 3712, - [3795] = 3713, - [3796] = 459, - [3797] = 3797, + [3527] = 3514, + [3528] = 3513, + [3529] = 3529, + [3530] = 3514, + [3531] = 3513, + [3532] = 3532, + [3533] = 3514, + [3534] = 3513, + [3535] = 3535, + [3536] = 3536, + [3537] = 3514, + [3538] = 3513, + [3539] = 3518, + [3540] = 3529, + [3541] = 3529, + [3542] = 3514, + [3543] = 3513, + [3544] = 3514, + [3545] = 3513, + [3546] = 1299, + [3547] = 1546, + [3548] = 3548, + [3549] = 3514, + [3550] = 3513, + [3551] = 459, + [3552] = 3521, + [3553] = 3514, + [3554] = 3513, + [3555] = 3514, + [3556] = 3513, + [3557] = 3518, + [3558] = 3513, + [3559] = 3518, + [3560] = 3514, + [3561] = 3513, + [3562] = 3529, + [3563] = 3563, + [3564] = 3564, + [3565] = 3565, + [3566] = 3514, + [3567] = 3513, + [3568] = 3568, + [3569] = 3569, + [3570] = 3514, + [3571] = 3514, + [3572] = 3513, + [3573] = 3548, + [3574] = 3574, + [3575] = 3514, + [3576] = 3513, + [3577] = 3514, + [3578] = 3513, + [3579] = 3579, + [3580] = 3514, + [3581] = 3513, + [3582] = 3582, + [3583] = 3514, + [3584] = 3514, + [3585] = 3513, + [3586] = 3513, + [3587] = 3514, + [3588] = 3513, + [3589] = 3548, + [3590] = 3590, + [3591] = 3514, + [3592] = 3513, + [3593] = 3514, + [3594] = 3513, + [3595] = 460, + [3596] = 3514, + [3597] = 3513, + [3598] = 3518, + [3599] = 3514, + [3600] = 3513, + [3601] = 3518, + [3602] = 3529, + [3603] = 3529, + [3604] = 3514, + [3605] = 3513, + [3606] = 3529, + [3607] = 3514, + [3608] = 3513, + [3609] = 3590, + [3610] = 459, + [3611] = 3514, + [3612] = 3513, + [3613] = 3613, + [3614] = 3514, + [3615] = 3615, + [3616] = 3518, + [3617] = 3514, + [3618] = 3513, + [3619] = 3518, + [3620] = 3514, + [3621] = 3513, + [3622] = 3622, + [3623] = 3514, + [3624] = 3513, + [3625] = 3514, + [3626] = 3513, + [3627] = 3514, + [3628] = 3513, + [3629] = 3629, + [3630] = 3514, + [3631] = 3513, + [3632] = 3514, + [3633] = 3513, + [3634] = 3529, + [3635] = 3629, + [3636] = 3514, + [3637] = 3513, + [3638] = 3514, + [3639] = 3513, + [3640] = 3518, + [3641] = 3514, + [3642] = 3513, + [3643] = 3514, + [3644] = 3513, + [3645] = 3514, + [3646] = 3513, + [3647] = 3535, + [3648] = 3514, + [3649] = 3513, + [3650] = 3513, + [3651] = 3514, + [3652] = 3513, + [3653] = 3514, + [3654] = 3513, + [3655] = 3613, + [3656] = 1601, + [3657] = 3657, + [3658] = 3514, + [3659] = 3513, + [3660] = 3518, + [3661] = 3529, + [3662] = 3514, + [3663] = 3513, + [3664] = 3664, + [3665] = 3665, + [3666] = 3521, + [3667] = 3514, + [3668] = 3513, + [3669] = 3532, + [3670] = 3665, + [3671] = 3514, + [3672] = 3513, + [3673] = 3615, + [3674] = 3514, + [3675] = 3513, + [3676] = 3514, + [3677] = 3513, + [3678] = 460, + [3679] = 3521, + [3680] = 3514, + [3681] = 3513, + [3682] = 3682, + [3683] = 3514, + [3684] = 3513, + [3685] = 3685, + [3686] = 3514, + [3687] = 3513, + [3688] = 1567, + [3689] = 3518, + [3690] = 3514, + [3691] = 3513, + [3692] = 3514, + [3693] = 3513, + [3694] = 3664, + [3695] = 3514, + [3696] = 3513, + [3697] = 3548, + [3698] = 3529, + [3699] = 3514, + [3700] = 3513, + [3701] = 3536, + [3702] = 1565, + [3703] = 3563, + [3704] = 3704, + [3705] = 3629, + [3706] = 3685, + [3707] = 3622, + [3708] = 460, + [3709] = 3615, + [3710] = 3514, + [3711] = 3518, + [3712] = 459, + [3713] = 3513, + [3714] = 3565, + [3715] = 568, + [3716] = 3518, + [3717] = 3529, + [3718] = 3529, + [3719] = 3514, + [3720] = 3529, + [3721] = 493, + [3722] = 3622, + [3723] = 3521, + [3724] = 3548, + [3725] = 3704, + [3726] = 3513, + [3727] = 3582, + [3728] = 3613, + [3729] = 3529, + [3730] = 3514, + [3731] = 3513, + [3732] = 3704, + [3733] = 3569, + [3734] = 3665, + [3735] = 3518, + [3736] = 3517, + [3737] = 3517, + [3738] = 3532, + [3739] = 3739, + [3740] = 3529, + [3741] = 3685, + [3742] = 3664, + [3743] = 1598, + [3744] = 3535, + [3745] = 3514, + [3746] = 3513, + [3747] = 460, + [3748] = 3536, + [3749] = 3529, + [3750] = 3563, + [3751] = 3657, + [3752] = 1293, + [3753] = 3657, + [3754] = 3754, + [3755] = 3565, + [3756] = 3514, + [3757] = 3582, + [3758] = 3513, + [3759] = 3569, + [3760] = 3760, + [3761] = 3590, + [3762] = 459, + [3763] = 3518, + [3764] = 3579, + [3765] = 3579, + [3766] = 459, + [3767] = 460, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, + [3771] = 460, + [3772] = 3768, + [3773] = 3770, + [3774] = 3769, + [3775] = 3770, + [3776] = 459, + [3777] = 3768, + [3778] = 3768, + [3779] = 3779, + [3780] = 3779, + [3781] = 3769, + [3782] = 3769, + [3783] = 3783, + [3784] = 460, + [3785] = 3770, + [3786] = 3770, + [3787] = 3768, + [3788] = 3769, + [3789] = 3770, + [3790] = 459, + [3791] = 460, + [3792] = 3792, + [3793] = 459, + [3794] = 3769, + [3795] = 3795, + [3796] = 3768, + [3797] = 3770, [3798] = 3798, - [3799] = 3798, - [3800] = 3800, - [3801] = 3797, - [3802] = 3798, + [3799] = 3779, + [3800] = 3779, + [3801] = 3801, + [3802] = 3801, [3803] = 3803, - [3804] = 3797, - [3805] = 3798, - [3806] = 3803, - [3807] = 3798, - [3808] = 3803, - [3809] = 3798, - [3810] = 3803, - [3811] = 3798, - [3812] = 3803, - [3813] = 3798, - [3814] = 3798, - [3815] = 3797, - [3816] = 3798, - [3817] = 3798, - [3818] = 3803, - [3819] = 3798, - [3820] = 3803, - [3821] = 3803, - [3822] = 3798, - [3823] = 3803, - [3824] = 3798, - [3825] = 3803, - [3826] = 3798, - [3827] = 3798, - [3828] = 3798, - [3829] = 3798, - [3830] = 3798, - [3831] = 3797, - [3832] = 3798, - [3833] = 3803, - [3834] = 3797, - [3835] = 3798, - [3836] = 3797, - [3837] = 3803, - [3838] = 3797, - [3839] = 3803, - [3840] = 3797, - [3841] = 3841, - [3842] = 3797, + [3804] = 3804, + [3805] = 3805, + [3806] = 3801, + [3807] = 3803, + [3808] = 3804, + [3809] = 3805, + [3810] = 3810, + [3811] = 3803, + [3812] = 3804, + [3813] = 3805, + [3814] = 3810, + [3815] = 3801, + [3816] = 3803, + [3817] = 3804, + [3818] = 3805, + [3819] = 3803, + [3820] = 3804, + [3821] = 3805, + [3822] = 3810, + [3823] = 3801, + [3824] = 3803, + [3825] = 3804, + [3826] = 3805, + [3827] = 3803, + [3828] = 3804, + [3829] = 3805, + [3830] = 3810, + [3831] = 3803, + [3832] = 3804, + [3833] = 3805, + [3834] = 3801, + [3835] = 3803, + [3836] = 3804, + [3837] = 3805, + [3838] = 3810, + [3839] = 3801, + [3840] = 3803, + [3841] = 3804, + [3842] = 3805, [3843] = 3803, - [3844] = 3844, - [3845] = 3803, - [3846] = 3797, - [3847] = 3797, - [3848] = 3803, + [3844] = 3804, + [3845] = 3805, + [3846] = 3803, + [3847] = 3804, + [3848] = 3805, [3849] = 3803, - [3850] = 3797, - [3851] = 3841, + [3850] = 3803, + [3851] = 3795, [3852] = 3803, [3853] = 3803, - [3854] = 3803, - [3855] = 3855, - [3856] = 3797, - [3857] = 3841, - [3858] = 3844, - [3859] = 3841, - [3860] = 3844, - [3861] = 3841, - [3862] = 3797, + [3854] = 3810, + [3855] = 3803, + [3856] = 3801, + [3857] = 3801, + [3858] = 3803, + [3859] = 3803, + [3860] = 3810, + [3861] = 3803, + [3862] = 3801, [3863] = 3803, - [3864] = 3844, - [3865] = 3797, + [3864] = 3803, + [3865] = 3865, [3866] = 3803, - [3867] = 3797, - [3868] = 3798, - [3869] = 3803, - [3870] = 3803, + [3867] = 3803, + [3868] = 3803, + [3869] = 3801, + [3870] = 3801, [3871] = 3803, - [3872] = 3841, - [3873] = 3844, - [3874] = 3841, - [3875] = 3844, - [3876] = 3841, - [3877] = 3844, - [3878] = 3797, - [3879] = 3797, - [3880] = 3797, - [3881] = 3797, - [3882] = 3797, - [3883] = 3844, - [3884] = 3797, - [3885] = 3841, - [3886] = 3844, - [3887] = 3841, - [3888] = 3844, - [3889] = 3798, - [3890] = 3797, - [3891] = 3798, - [3892] = 3797, - [3893] = 3841, - [3894] = 3844, - [3895] = 3841, - [3896] = 3844, - [3897] = 3841, - [3898] = 3803, - [3899] = 3844, - [3900] = 3803, - [3901] = 3803, - [3902] = 3798, + [3872] = 3810, + [3873] = 3803, + [3874] = 3803, + [3875] = 3803, + [3876] = 3803, + [3877] = 3803, + [3878] = 3803, + [3879] = 3803, + [3880] = 3803, + [3881] = 3801, + [3882] = 3801, + [3883] = 3803, + [3884] = 3803, + [3885] = 3803, + [3886] = 3810, + [3887] = 3803, + [3888] = 3803, + [3889] = 3803, + [3890] = 3803, + [3891] = 3803, + [3892] = 3801, + [3893] = 3803, + [3894] = 3803, + [3895] = 3801, + [3896] = 3803, + [3897] = 3810, + [3898] = 3801, + [3899] = 3803, + [3900] = 3810, + [3901] = 3810, + [3902] = 3803, [3903] = 3803, - [3904] = 3904, - [3905] = 3905, - [3906] = 3798, - [3907] = 3841, - [3908] = 3844, - [3909] = 3797, - [3910] = 3803, - [3911] = 3798, + [3904] = 3803, + [3905] = 3803, + [3906] = 3810, + [3907] = 3801, + [3908] = 3803, + [3909] = 3803, + [3910] = 3804, + [3911] = 3803, [3912] = 3803, - [3913] = 3913, - [3914] = 3797, - [3915] = 3803, - [3916] = 3797, - [3917] = 3798, - [3918] = 3803, - [3919] = 3841, - [3920] = 3797, - [3921] = 3844, - [3922] = 3803, - [3923] = 3797, - [3924] = 3797, - [3925] = 3803, - [3926] = 3803, - [3927] = 3803, - [3928] = 3798, - [3929] = 3797, - [3930] = 3841, - [3931] = 3803, - [3932] = 3797, - [3933] = 3844, - [3934] = 3797, - [3935] = 3803, - [3936] = 3797, - [3937] = 3803, - [3938] = 3798, - [3939] = 3797, - [3940] = 3841, - [3941] = 3803, - [3942] = 3844, - [3943] = 3797, - [3944] = 3797, - [3945] = 3803, - [3946] = 3797, - [3947] = 3797, - [3948] = 3798, - [3949] = 3803, - [3950] = 3803, - [3951] = 3797, - [3952] = 3803, - [3953] = 3841, - [3954] = 3954, - [3955] = 3844, - [3956] = 3797, - [3957] = 3797, - [3958] = 3798, - [3959] = 3797, - [3960] = 3798, - [3961] = 3803, - [3962] = 3841, - [3963] = 3803, - [3964] = 3844, - [3965] = 3797, - [3966] = 3797, - [3967] = 3797, - [3968] = 3841, - [3969] = 3803, - [3970] = 3797, - [3971] = 3798, - [3972] = 3844, - [3973] = 3797, - [3974] = 3803, - [3975] = 3844, - [3976] = 3797, - [3977] = 3803, - [3978] = 3803, - [3979] = 3797, - [3980] = 3798, - [3981] = 3803, - [3982] = 3841, - [3983] = 3797, - [3984] = 3844, - [3985] = 3797, - [3986] = 3797, - [3987] = 3797, - [3988] = 3803, - [3989] = 3798, - [3990] = 3803, - [3991] = 3797, - [3992] = 3841, - [3993] = 3844, - [3994] = 3803, - [3995] = 3797, - [3996] = 3798, - [3997] = 3803, - [3998] = 3841, - [3999] = 3803, - [4000] = 3797, - [4001] = 3844, - [4002] = 465, - [4003] = 3797, - [4004] = 3797, - [4005] = 3798, - [4006] = 3797, - [4007] = 3803, - [4008] = 3841, - [4009] = 3844, - [4010] = 3797, - [4011] = 3798, - [4012] = 3797, - [4013] = 3841, - [4014] = 4014, - [4015] = 3844, - [4016] = 3798, - [4017] = 3803, - [4018] = 3841, - [4019] = 3797, - [4020] = 3803, - [4021] = 3797, - [4022] = 3844, - [4023] = 3798, - [4024] = 3798, - [4025] = 465, - [4026] = 3841, - [4027] = 3797, - [4028] = 3844, - [4029] = 3798, - [4030] = 3797, - [4031] = 3803, - [4032] = 3841, - [4033] = 3797, - [4034] = 3844, - [4035] = 3803, - [4036] = 3797, - [4037] = 3803, - [4038] = 3798, - [4039] = 3803, - [4040] = 3803, - [4041] = 3797, - [4042] = 3803, - [4043] = 3797, - [4044] = 3798, - [4045] = 3803, - [4046] = 3803, - [4047] = 3797, - [4048] = 3798, - [4049] = 3841, - [4050] = 3797, - [4051] = 3797, - [4052] = 3798, - [4053] = 3803, + [3913] = 3805, + [3914] = 3801, + [3915] = 3810, + [3916] = 3810, + [3917] = 3801, + [3918] = 3801, + [3919] = 3801, + [3920] = 3810, + [3921] = 3810, + [3922] = 3801, + [3923] = 3810, + [3924] = 3810, + [3925] = 3801, + [3926] = 3801, + [3927] = 3804, + [3928] = 3805, + [3929] = 3804, + [3930] = 3805, + [3931] = 3810, + [3932] = 3801, + [3933] = 3801, + [3934] = 3801, + [3935] = 3810, + [3936] = 3810, + [3937] = 3810, + [3938] = 3810, + [3939] = 3801, + [3940] = 3810, + [3941] = 3801, + [3942] = 3801, + [3943] = 3810, + [3944] = 3804, + [3945] = 3805, + [3946] = 3804, + [3947] = 3805, + [3948] = 3801, + [3949] = 3801, + [3950] = 3810, + [3951] = 3810, + [3952] = 3804, + [3953] = 3803, + [3954] = 3804, + [3955] = 3805, + [3956] = 3804, + [3957] = 3805, + [3958] = 3801, + [3959] = 3801, + [3960] = 3810, + [3961] = 3801, + [3962] = 3810, + [3963] = 3801, + [3964] = 3810, + [3965] = 3804, + [3966] = 3805, + [3967] = 3804, + [3968] = 3805, + [3969] = 3801, + [3970] = 3810, + [3971] = 3801, + [3972] = 3810, + [3973] = 3801, + [3974] = 3810, + [3975] = 3810, + [3976] = 3801, + [3977] = 3810, + [3978] = 3810, + [3979] = 3810, + [3980] = 3801, + [3981] = 3801, + [3982] = 3810, + [3983] = 3810, + [3984] = 3801, + [3985] = 3810, + [3986] = 3801, + [3987] = 3810, + [3988] = 3801, + [3989] = 3801, + [3990] = 3810, + [3991] = 3991, + [3992] = 3792, + [3993] = 3801, + [3994] = 3810, + [3995] = 3804, + [3996] = 3805, + [3997] = 3810, + [3998] = 3801, + [3999] = 3810, + [4000] = 3801, + [4001] = 3801, + [4002] = 3810, + [4003] = 3801, + [4004] = 3810, + [4005] = 3810, + [4006] = 3810, + [4007] = 3810, + [4008] = 3801, + [4009] = 3810, + [4010] = 3803, + [4011] = 3801, + [4012] = 3810, + [4013] = 4013, + [4014] = 3801, + [4015] = 3810, + [4016] = 3801, + [4017] = 3810, + [4018] = 3801, + [4019] = 3810, + [4020] = 3801, + [4021] = 3810, + [4022] = 3810, + [4023] = 3801, + [4024] = 3810, + [4025] = 3801, + [4026] = 3810, + [4027] = 3801, + [4028] = 3810, + [4029] = 3801, + [4030] = 3810, + [4031] = 3801, + [4032] = 3810, + [4033] = 466, + [4034] = 3801, + [4035] = 3810, + [4036] = 3804, + [4037] = 3805, + [4038] = 3801, + [4039] = 3801, + [4040] = 3801, + [4041] = 3801, + [4042] = 3810, + [4043] = 3801, + [4044] = 3801, + [4045] = 3810, + [4046] = 3810, + [4047] = 3810, + [4048] = 3810, + [4049] = 3801, + [4050] = 3810, + [4051] = 3801, + [4052] = 3810, + [4053] = 3801, [4054] = 3803, - [4055] = 3797, - [4056] = 3798, - [4057] = 3797, - [4058] = 3803, - [4059] = 3844, - [4060] = 3803, - [4061] = 3798, - [4062] = 3797, - [4063] = 3798, - [4064] = 3803, - [4065] = 3797, - [4066] = 3803, - [4067] = 3803, - [4068] = 3913, - [4069] = 3855, - [4070] = 3798, - [4071] = 3797, - [4072] = 3803, - [4073] = 3803, - [4074] = 3803, - [4075] = 3797, - [4076] = 3803, - [4077] = 3803, - [4078] = 3797, - [4079] = 3798, - [4080] = 3797, - [4081] = 3803, - [4082] = 3797, - [4083] = 3797, - [4084] = 3798, - [4085] = 3803, - [4086] = 3803, - [4087] = 3797, - [4088] = 3797, - [4089] = 3803, - [4090] = 3841, - [4091] = 3798, - [4092] = 3844, - [4093] = 3798, - [4094] = 3841, - [4095] = 3844, - [4096] = 3798, - [4097] = 3797, - [4098] = 3913, - [4099] = 3855, - [4100] = 3797, - [4101] = 3803, + [4055] = 3801, + [4056] = 3810, + [4057] = 3801, + [4058] = 3810, + [4059] = 3801, + [4060] = 3810, + [4061] = 3801, + [4062] = 3810, + [4063] = 3801, + [4064] = 3804, + [4065] = 3801, + [4066] = 3805, + [4067] = 3801, + [4068] = 3810, + [4069] = 3810, + [4070] = 466, + [4071] = 3810, + [4072] = 4072, + [4073] = 3801, + [4074] = 3810, + [4075] = 3803, + [4076] = 3801, + [4077] = 3810, + [4078] = 3801, + [4079] = 3810, + [4080] = 4080, + [4081] = 3804, + [4082] = 3805, + [4083] = 3783, + [4084] = 3801, + [4085] = 3810, + [4086] = 3801, + [4087] = 3810, + [4088] = 3801, + [4089] = 3810, + [4090] = 3801, + [4091] = 3810, + [4092] = 4072, + [4093] = 3991, + [4094] = 3803, + [4095] = 3804, + [4096] = 3805, + [4097] = 3801, + [4098] = 3810, + [4099] = 3810, + [4100] = 3801, + [4101] = 3810, [4102] = 3803, - [4103] = 3798, - [4104] = 3797, - [4105] = 3841, - [4106] = 3803, - [4107] = 3803, - [4108] = 3797, - [4109] = 3803, - [4110] = 3798, - [4111] = 3844, - [4112] = 3797, - [4113] = 3803, - [4114] = 3803, - [4115] = 3798, - [4116] = 3797, - [4117] = 3798, - [4118] = 3797, - [4119] = 3841, - [4120] = 3798, - [4121] = 3844, - [4122] = 3803, - [4123] = 3798, - [4124] = 3841, - [4125] = 3844, - [4126] = 3913, - [4127] = 3855, - [4128] = 3803, + [4103] = 3804, + [4104] = 3805, + [4105] = 3801, + [4106] = 3810, + [4107] = 3801, + [4108] = 3804, + [4109] = 3805, + [4110] = 3810, + [4111] = 3803, + [4112] = 3804, + [4113] = 3801, + [4114] = 3804, + [4115] = 3805, + [4116] = 3805, + [4117] = 3805, + [4118] = 4072, + [4119] = 3991, + [4120] = 3810, + [4121] = 3810, + [4122] = 3801, + [4123] = 3801, + [4124] = 3810, + [4125] = 3803, + [4126] = 3804, + [4127] = 3810, + [4128] = 3805, [4129] = 3798, - [4130] = 3803, - [4131] = 3797, - [4132] = 3841, - [4133] = 1015, - [4134] = 465, - [4135] = 817, - [4136] = 466, - [4137] = 463, - [4138] = 818, + [4130] = 3804, + [4131] = 3805, + [4132] = 3803, + [4133] = 3804, + [4134] = 3805, + [4135] = 4072, + [4136] = 3991, + [4137] = 3804, + [4138] = 3805, [4139] = 4139, - [4140] = 3905, + [4140] = 463, [4141] = 4141, - [4142] = 463, - [4143] = 464, - [4144] = 465, - [4145] = 464, - [4146] = 3800, - [4147] = 4147, - [4148] = 1122, + [4142] = 464, + [4143] = 913, + [4144] = 1093, + [4145] = 1094, + [4146] = 467, + [4147] = 466, + [4148] = 914, [4149] = 4149, - [4150] = 4014, - [4151] = 4151, - [4152] = 4152, - [4153] = 3904, - [4154] = 4154, - [4155] = 465, - [4156] = 464, - [4157] = 810, - [4158] = 838, - [4159] = 4159, - [4160] = 460, - [4161] = 4161, - [4162] = 466, - [4163] = 1121, - [4164] = 459, - [4165] = 1096, - [4166] = 464, - [4167] = 470, - [4168] = 1096, - [4169] = 465, - [4170] = 484, - [4171] = 471, - [4172] = 3904, - [4173] = 475, - [4174] = 4159, - [4175] = 1029, - [4176] = 473, - [4177] = 477, - [4178] = 483, - [4179] = 464, - [4180] = 4180, - [4181] = 488, + [4150] = 3792, + [4151] = 3795, + [4152] = 3865, + [4153] = 467, + [4154] = 3795, + [4155] = 3798, + [4156] = 466, + [4157] = 4157, + [4158] = 466, + [4159] = 463, + [4160] = 4160, + [4161] = 464, + [4162] = 3783, + [4163] = 3795, + [4164] = 4164, + [4165] = 901, + [4166] = 4166, + [4167] = 1110, + [4168] = 4168, + [4169] = 467, + [4170] = 4170, + [4171] = 1111, + [4172] = 3792, + [4173] = 4173, + [4174] = 3792, + [4175] = 3783, + [4176] = 902, + [4177] = 467, + [4178] = 3798, + [4179] = 4179, + [4180] = 4013, + [4181] = 4181, [4182] = 4182, - [4183] = 469, - [4184] = 2495, - [4185] = 465, - [4186] = 4186, - [4187] = 473, - [4188] = 471, - [4189] = 475, - [4190] = 476, - [4191] = 479, - [4192] = 480, - [4193] = 818, - [4194] = 466, - [4195] = 481, - [4196] = 469, - [4197] = 474, - [4198] = 1337, - [4199] = 478, - [4200] = 486, - [4201] = 480, - [4202] = 3905, - [4203] = 484, - [4204] = 463, - [4205] = 4139, - [4206] = 481, - [4207] = 482, - [4208] = 483, - [4209] = 484, - [4210] = 4147, - [4211] = 3904, - [4212] = 466, - [4213] = 1029, - [4214] = 464, - [4215] = 2487, - [4216] = 472, - [4217] = 4152, - [4218] = 470, - [4219] = 482, - [4220] = 483, - [4221] = 817, - [4222] = 463, - [4223] = 1411, - [4224] = 480, - [4225] = 4014, - [4226] = 474, - [4227] = 478, - [4228] = 484, - [4229] = 486, - [4230] = 465, - [4231] = 469, - [4232] = 471, - [4233] = 4233, - [4234] = 1015, - [4235] = 818, - [4236] = 1457, - [4237] = 1122, - [4238] = 4238, - [4239] = 466, - [4240] = 470, - [4241] = 477, - [4242] = 476, - [4243] = 475, - [4244] = 464, - [4245] = 1457, - [4246] = 4141, - [4247] = 4161, - [4248] = 477, - [4249] = 481, - [4250] = 469, - [4251] = 817, - [4252] = 479, - [4253] = 488, - [4254] = 1096, - [4255] = 487, - [4256] = 810, - [4257] = 478, - [4258] = 838, - [4259] = 479, - [4260] = 1027, - [4261] = 477, - [4262] = 463, + [4183] = 3783, + [4184] = 460, + [4185] = 4185, + [4186] = 3798, + [4187] = 459, + [4188] = 4188, + [4189] = 4189, + [4190] = 4013, + [4191] = 477, + [4192] = 4164, + [4193] = 473, + [4194] = 485, + [4195] = 2607, + [4196] = 487, + [4197] = 2608, + [4198] = 487, + [4199] = 4149, + [4200] = 466, + [4201] = 466, + [4202] = 3792, + [4203] = 3798, + [4204] = 4141, + [4205] = 466, + [4206] = 470, + [4207] = 4139, + [4208] = 484, + [4209] = 4166, + [4210] = 467, + [4211] = 913, + [4212] = 469, + [4213] = 475, + [4214] = 484, + [4215] = 485, + [4216] = 474, + [4217] = 913, + [4218] = 1111, + [4219] = 1110, + [4220] = 4173, + [4221] = 478, + [4222] = 476, + [4223] = 482, + [4224] = 469, + [4225] = 4225, + [4226] = 1153, + [4227] = 480, + [4228] = 466, + [4229] = 4166, + [4230] = 463, + [4231] = 466, + [4232] = 1110, + [4233] = 478, + [4234] = 481, + [4235] = 1452, + [4236] = 4160, + [4237] = 4189, + [4238] = 474, + [4239] = 479, + [4240] = 483, + [4241] = 472, + [4242] = 4013, + [4243] = 4170, + [4244] = 1111, + [4245] = 4168, + [4246] = 486, + [4247] = 4247, + [4248] = 473, + [4249] = 484, + [4250] = 466, + [4251] = 472, + [4252] = 475, + [4253] = 472, + [4254] = 467, + [4255] = 467, + [4256] = 481, + [4257] = 479, + [4258] = 473, + [4259] = 477, + [4260] = 486, + [4261] = 1350, + [4262] = 4225, [4263] = 485, - [4264] = 485, - [4265] = 1337, - [4266] = 471, - [4267] = 470, - [4268] = 1015, - [4269] = 4269, - [4270] = 478, - [4271] = 486, - [4272] = 3800, - [4273] = 482, - [4274] = 2520, - [4275] = 2565, - [4276] = 487, - [4277] = 487, - [4278] = 481, - [4279] = 4014, - [4280] = 485, - [4281] = 1121, - [4282] = 476, - [4283] = 479, - [4284] = 472, - [4285] = 3904, - [4286] = 4286, - [4287] = 4014, - [4288] = 4288, - [4289] = 465, - [4290] = 465, - [4291] = 1027, - [4292] = 464, - [4293] = 4293, - [4294] = 488, - [4295] = 482, - [4296] = 487, - [4297] = 810, - [4298] = 483, - [4299] = 474, - [4300] = 838, - [4301] = 486, - [4302] = 465, - [4303] = 465, - [4304] = 473, - [4305] = 3800, - [4306] = 485, - [4307] = 3905, - [4308] = 473, - [4309] = 472, - [4310] = 3905, - [4311] = 4147, - [4312] = 475, - [4313] = 3800, - [4314] = 480, - [4315] = 4161, - [4316] = 474, - [4317] = 1411, - [4318] = 488, - [4319] = 472, - [4320] = 476, - [4321] = 4152, - [4322] = 466, - [4323] = 463, - [4324] = 817, - [4325] = 818, - [4326] = 466, - [4327] = 476, - [4328] = 479, - [4329] = 817, - [4330] = 4186, - [4331] = 463, - [4332] = 485, - [4333] = 4152, - [4334] = 4139, - [4335] = 4335, - [4336] = 1337, - [4337] = 4337, - [4338] = 478, - [4339] = 486, - [4340] = 4161, - [4341] = 4159, - [4342] = 818, - [4343] = 1096, - [4344] = 466, - [4345] = 463, - [4346] = 488, - [4347] = 1027, - [4348] = 1457, - [4349] = 470, - [4350] = 1029, - [4351] = 478, + [4264] = 1452, + [4265] = 1350, + [4266] = 463, + [4267] = 901, + [4268] = 476, + [4269] = 474, + [4270] = 487, + [4271] = 1353, + [4272] = 1093, + [4273] = 1094, + [4274] = 902, + [4275] = 3865, + [4276] = 3865, + [4277] = 464, + [4278] = 4185, + [4279] = 486, + [4280] = 480, + [4281] = 489, + [4282] = 1149, + [4283] = 471, + [4284] = 489, + [4285] = 482, + [4286] = 463, + [4287] = 472, + [4288] = 478, + [4289] = 4225, + [4290] = 469, + [4291] = 482, + [4292] = 480, + [4293] = 464, + [4294] = 471, + [4295] = 483, + [4296] = 484, + [4297] = 473, + [4298] = 914, + [4299] = 4157, + [4300] = 1353, + [4301] = 914, + [4302] = 474, + [4303] = 467, + [4304] = 483, + [4305] = 2594, + [4306] = 475, + [4307] = 485, + [4308] = 470, + [4309] = 486, + [4310] = 470, + [4311] = 470, + [4312] = 477, + [4313] = 466, + [4314] = 481, + [4315] = 2595, + [4316] = 479, + [4317] = 4170, + [4318] = 3865, + [4319] = 479, + [4320] = 471, + [4321] = 481, + [4322] = 478, + [4323] = 476, + [4324] = 464, + [4325] = 489, + [4326] = 4188, + [4327] = 487, + [4328] = 469, + [4329] = 471, + [4330] = 4013, + [4331] = 480, + [4332] = 1149, + [4333] = 477, + [4334] = 489, + [4335] = 1153, + [4336] = 476, + [4337] = 482, + [4338] = 901, + [4339] = 902, + [4340] = 483, + [4341] = 475, + [4342] = 901, + [4343] = 4188, + [4344] = 471, + [4345] = 4345, + [4346] = 477, + [4347] = 481, + [4348] = 475, + [4349] = 485, + [4350] = 4141, + [4351] = 482, [4352] = 486, - [4353] = 1027, - [4354] = 464, - [4355] = 470, - [4356] = 1029, - [4357] = 487, - [4358] = 4182, - [4359] = 485, - [4360] = 478, - [4361] = 4180, - [4362] = 486, - [4363] = 4152, - [4364] = 472, - [4365] = 4141, - [4366] = 475, - [4367] = 474, - [4368] = 1337, - [4369] = 465, - [4370] = 466, - [4371] = 1029, - [4372] = 487, - [4373] = 1121, - [4374] = 463, - [4375] = 1122, - [4376] = 488, - [4377] = 485, - [4378] = 465, - [4379] = 4335, - [4380] = 470, - [4381] = 473, - [4382] = 838, - [4383] = 480, - [4384] = 477, - [4385] = 472, - [4386] = 469, - [4387] = 4238, - [4388] = 4269, - [4389] = 481, - [4390] = 4233, + [4353] = 470, + [4354] = 487, + [4355] = 466, + [4356] = 483, + [4357] = 485, + [4358] = 474, + [4359] = 486, + [4360] = 487, + [4361] = 463, + [4362] = 463, + [4363] = 474, + [4364] = 464, + [4365] = 470, + [4366] = 1111, + [4367] = 4168, + [4368] = 482, + [4369] = 4168, + [4370] = 471, + [4371] = 901, + [4372] = 475, + [4373] = 483, + [4374] = 902, + [4375] = 478, + [4376] = 4185, + [4377] = 469, + [4378] = 476, + [4379] = 4168, + [4380] = 467, + [4381] = 1149, + [4382] = 463, + [4383] = 464, + [4384] = 1153, + [4385] = 471, + [4386] = 4149, + [4387] = 4173, + [4388] = 4160, + [4389] = 4189, + [4390] = 4139, [4391] = 475, - [4392] = 475, - [4393] = 477, - [4394] = 473, - [4395] = 477, - [4396] = 491, - [4397] = 470, - [4398] = 469, - [4399] = 475, - [4400] = 1457, - [4401] = 487, - [4402] = 471, - [4403] = 474, - [4404] = 4147, - [4405] = 1457, - [4406] = 476, - [4407] = 1411, - [4408] = 479, - [4409] = 4141, - [4410] = 471, - [4411] = 480, - [4412] = 4293, - [4413] = 485, - [4414] = 1015, - [4415] = 481, - [4416] = 472, - [4417] = 476, - [4418] = 479, - [4419] = 1337, - [4420] = 488, - [4421] = 465, - [4422] = 1122, - [4423] = 472, - [4424] = 482, - [4425] = 483, - [4426] = 484, - [4427] = 474, - [4428] = 474, - [4429] = 1027, - [4430] = 465, - [4431] = 466, - [4432] = 463, - [4433] = 478, + [4392] = 480, + [4393] = 484, + [4394] = 489, + [4395] = 472, + [4396] = 4164, + [4397] = 487, + [4398] = 4160, + [4399] = 1350, + [4400] = 476, + [4401] = 481, + [4402] = 473, + [4403] = 1153, + [4404] = 472, + [4405] = 473, + [4406] = 4406, + [4407] = 466, + [4408] = 469, + [4409] = 913, + [4410] = 914, + [4411] = 4166, + [4412] = 4173, + [4413] = 4185, + [4414] = 1353, + [4415] = 474, + [4416] = 1110, + [4417] = 1093, + [4418] = 484, + [4419] = 1094, + [4420] = 1153, + [4421] = 913, + [4422] = 914, + [4423] = 1350, + [4424] = 489, + [4425] = 4149, + [4426] = 4189, + [4427] = 475, + [4428] = 4149, + [4429] = 493, + [4430] = 4164, + [4431] = 901, + [4432] = 1149, + [4433] = 2805, [4434] = 476, - [4435] = 479, - [4436] = 4159, - [4437] = 3800, - [4438] = 4139, - [4439] = 3904, - [4440] = 4147, - [4441] = 1015, - [4442] = 488, - [4443] = 473, - [4444] = 480, - [4445] = 469, - [4446] = 481, - [4447] = 471, - [4448] = 473, - [4449] = 480, - [4450] = 469, - [4451] = 481, - [4452] = 4286, - [4453] = 4147, - [4454] = 1015, - [4455] = 4161, - [4456] = 1096, - [4457] = 471, - [4458] = 810, - [4459] = 838, - [4460] = 817, - [4461] = 818, - [4462] = 482, - [4463] = 483, - [4464] = 484, - [4465] = 491, - [4466] = 486, - [4467] = 482, - [4468] = 483, - [4469] = 484, - [4470] = 482, - [4471] = 483, - [4472] = 484, - [4473] = 2587, - [4474] = 2588, - [4475] = 4161, - [4476] = 1096, - [4477] = 466, - [4478] = 4288, - [4479] = 463, - [4480] = 2595, - [4481] = 2596, - [4482] = 465, - [4483] = 487, - [4484] = 477, - [4485] = 4335, - [4486] = 491, - [4487] = 810, - [4488] = 466, - [4489] = 838, - [4490] = 463, - [4491] = 810, - [4492] = 4159, - [4493] = 4139, - [4494] = 4147, - [4495] = 1015, - [4496] = 4161, - [4497] = 1096, - [4498] = 810, - [4499] = 838, - [4500] = 817, - [4501] = 818, - [4502] = 1121, - [4503] = 1122, - [4504] = 4141, - [4505] = 491, - [4506] = 1121, - [4507] = 4147, - [4508] = 4508, - [4509] = 4509, - [4510] = 478, - [4511] = 486, - [4512] = 474, - [4513] = 491, - [4514] = 4514, - [4515] = 1468, - [4516] = 4180, - [4517] = 463, - [4518] = 1153, - [4519] = 4519, - [4520] = 4520, - [4521] = 466, - [4522] = 4522, - [4523] = 463, - [4524] = 4524, - [4525] = 4525, - [4526] = 4233, - [4527] = 463, - [4528] = 4528, - [4529] = 4152, - [4530] = 810, - [4531] = 4141, - [4532] = 1468, - [4533] = 4269, - [4534] = 4186, - [4535] = 838, - [4536] = 4536, - [4537] = 4288, - [4538] = 473, - [4539] = 480, - [4540] = 469, - [4541] = 4528, - [4542] = 481, - [4543] = 4524, - [4544] = 4544, - [4545] = 471, + [4435] = 4141, + [4436] = 479, + [4437] = 463, + [4438] = 464, + [4439] = 466, + [4440] = 463, + [4441] = 464, + [4442] = 4013, + [4443] = 2808, + [4444] = 3865, + [4445] = 487, + [4446] = 4139, + [4447] = 489, + [4448] = 4170, + [4449] = 464, + [4450] = 481, + [4451] = 477, + [4452] = 1350, + [4453] = 1094, + [4454] = 1111, + [4455] = 4157, + [4456] = 902, + [4457] = 1353, + [4458] = 2813, + [4459] = 2814, + [4460] = 478, + [4461] = 474, + [4462] = 485, + [4463] = 493, + [4464] = 478, + [4465] = 486, + [4466] = 470, + [4467] = 469, + [4468] = 4173, + [4469] = 479, + [4470] = 493, + [4471] = 480, + [4472] = 4188, + [4473] = 4157, + [4474] = 1353, + [4475] = 484, + [4476] = 4189, + [4477] = 1452, + [4478] = 480, + [4479] = 4139, + [4480] = 477, + [4481] = 472, + [4482] = 473, + [4483] = 479, + [4484] = 493, + [4485] = 4166, + [4486] = 1110, + [4487] = 4170, + [4488] = 1111, + [4489] = 902, + [4490] = 913, + [4491] = 914, + [4492] = 466, + [4493] = 476, + [4494] = 481, + [4495] = 482, + [4496] = 483, + [4497] = 471, + [4498] = 485, + [4499] = 489, + [4500] = 486, + [4501] = 470, + [4502] = 4164, + [4503] = 472, + [4504] = 4160, + [4505] = 473, + [4506] = 477, + [4507] = 478, + [4508] = 469, + [4509] = 4170, + [4510] = 479, + [4511] = 4185, + [4512] = 463, + [4513] = 1093, + [4514] = 1094, + [4515] = 482, + [4516] = 466, + [4517] = 483, + [4518] = 4188, + [4519] = 463, + [4520] = 4157, + [4521] = 4166, + [4522] = 1110, + [4523] = 4170, + [4524] = 1111, + [4525] = 901, + [4526] = 902, + [4527] = 913, + [4528] = 914, + [4529] = 464, + [4530] = 4141, + [4531] = 464, + [4532] = 480, + [4533] = 4166, + [4534] = 1110, + [4535] = 484, + [4536] = 1149, + [4537] = 1093, + [4538] = 472, + [4539] = 1353, + [4540] = 4540, + [4541] = 481, + [4542] = 463, + [4543] = 464, + [4544] = 1293, + [4545] = 4545, [4546] = 4546, - [4547] = 491, - [4548] = 4548, - [4549] = 1479, - [4550] = 4186, - [4551] = 4286, - [4552] = 4544, - [4553] = 4269, - [4554] = 4288, - [4555] = 4293, - [4556] = 4186, - [4557] = 1150, - [4558] = 482, - [4559] = 483, - [4560] = 484, - [4561] = 4288, - [4562] = 4525, - [4563] = 4563, - [4564] = 4564, - [4565] = 476, - [4566] = 479, - [4567] = 4147, - [4568] = 1015, - [4569] = 810, - [4570] = 838, - [4571] = 4161, - [4572] = 1096, - [4573] = 817, - [4574] = 818, - [4575] = 4522, - [4576] = 4576, - [4577] = 466, - [4578] = 472, - [4579] = 1150, - [4580] = 1479, - [4581] = 4581, - [4582] = 463, - [4583] = 487, - [4584] = 4180, - [4585] = 4585, + [4547] = 1139, + [4548] = 1299, + [4549] = 1140, + [4550] = 475, + [4551] = 1546, + [4552] = 4552, + [4553] = 4553, + [4554] = 913, + [4555] = 914, + [4556] = 4552, + [4557] = 4557, + [4558] = 4558, + [4559] = 4170, + [4560] = 4166, + [4561] = 1598, + [4562] = 1110, + [4563] = 493, + [4564] = 1299, + [4565] = 466, + [4566] = 1546, + [4567] = 1111, + [4568] = 4557, + [4569] = 901, + [4570] = 902, + [4571] = 482, + [4572] = 4572, + [4573] = 4573, + [4574] = 4574, + [4575] = 476, + [4576] = 473, + [4577] = 474, + [4578] = 4578, + [4579] = 4579, + [4580] = 4580, + [4581] = 4540, + [4582] = 478, + [4583] = 463, + [4584] = 464, + [4585] = 469, [4586] = 4586, - [4587] = 4238, - [4588] = 4286, - [4589] = 4180, - [4590] = 4238, - [4591] = 464, - [4592] = 4293, - [4593] = 4593, - [4594] = 4233, - [4595] = 470, - [4596] = 488, - [4597] = 4233, - [4598] = 1029, - [4599] = 4286, - [4600] = 4600, - [4601] = 4269, - [4602] = 1121, - [4603] = 1122, - [4604] = 1655, - [4605] = 4159, - [4606] = 4139, - [4607] = 1337, - [4608] = 1673, - [4609] = 1670, - [4610] = 1020, - [4611] = 4611, - [4612] = 4182, - [4613] = 4564, - [4614] = 1021, - [4615] = 491, - [4616] = 1153, - [4617] = 4293, - [4618] = 465, - [4619] = 466, - [4620] = 463, - [4621] = 1673, - [4622] = 4593, + [4587] = 4185, + [4588] = 4149, + [4589] = 4173, + [4590] = 4189, + [4591] = 1565, + [4592] = 471, + [4593] = 4139, + [4594] = 1153, + [4595] = 4164, + [4596] = 1567, + [4597] = 4578, + [4598] = 4160, + [4599] = 4599, + [4600] = 493, + [4601] = 4586, + [4602] = 1567, + [4603] = 1293, + [4604] = 4580, + [4605] = 4605, + [4606] = 1565, + [4607] = 463, + [4608] = 4608, + [4609] = 4573, + [4610] = 463, + [4611] = 1601, + [4612] = 4345, + [4613] = 4613, + [4614] = 4614, + [4615] = 477, + [4616] = 464, + [4617] = 1093, + [4618] = 1350, + [4619] = 1094, + [4620] = 4620, + [4621] = 1149, + [4622] = 480, [4623] = 4623, - [4624] = 4147, - [4625] = 1015, - [4626] = 4161, - [4627] = 1096, - [4628] = 4576, - [4629] = 810, - [4630] = 838, - [4631] = 817, - [4632] = 818, - [4633] = 4161, - [4634] = 4585, - [4635] = 1096, - [4636] = 4147, - [4637] = 1015, - [4638] = 4514, - [4639] = 4509, - [4640] = 1027, - [4641] = 817, - [4642] = 475, - [4643] = 1670, - [4644] = 4644, - [4645] = 4182, - [4646] = 818, - [4647] = 477, - [4648] = 4536, - [4649] = 463, - [4650] = 1015, - [4651] = 810, - [4652] = 838, - [4653] = 4161, - [4654] = 1096, - [4655] = 817, - [4656] = 818, - [4657] = 4586, + [4624] = 484, + [4625] = 479, + [4626] = 485, + [4627] = 1601, + [4628] = 467, + [4629] = 4579, + [4630] = 4558, + [4631] = 4546, + [4632] = 486, + [4633] = 4614, + [4634] = 470, + [4635] = 4635, + [4636] = 4166, + [4637] = 1110, + [4638] = 901, + [4639] = 902, + [4640] = 4170, + [4641] = 1111, + [4642] = 913, + [4643] = 914, + [4644] = 466, + [4645] = 463, + [4646] = 464, + [4647] = 4406, + [4648] = 4648, + [4649] = 4553, + [4650] = 493, + [4651] = 4188, + [4652] = 4157, + [4653] = 493, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, + [4657] = 4657, [4658] = 4658, - [4659] = 485, - [4660] = 4660, - [4661] = 465, - [4662] = 1457, - [4663] = 4519, - [4664] = 491, - [4665] = 4658, - [4666] = 4238, - [4667] = 466, - [4668] = 1655, - [4669] = 4182, - [4670] = 466, - [4671] = 4671, - [4672] = 466, - [4673] = 4673, - [4674] = 4674, - [4675] = 4675, - [4676] = 4676, - [4677] = 472, - [4678] = 4678, - [4679] = 4676, - [4680] = 4680, - [4681] = 4681, - [4682] = 4522, - [4683] = 4683, - [4684] = 4676, - [4685] = 4685, - [4686] = 4676, + [4659] = 489, + [4660] = 464, + [4661] = 4574, + [4662] = 487, + [4663] = 4166, + [4664] = 1110, + [4665] = 4170, + [4666] = 1111, + [4667] = 901, + [4668] = 902, + [4669] = 913, + [4670] = 914, + [4671] = 463, + [4672] = 483, + [4673] = 464, + [4674] = 4608, + [4675] = 4166, + [4676] = 1110, + [4677] = 901, + [4678] = 902, + [4679] = 4170, + [4680] = 1111, + [4681] = 913, + [4682] = 914, + [4683] = 4586, + [4684] = 4635, + [4685] = 4545, + [4686] = 1598, [4687] = 4687, - [4688] = 474, - [4689] = 4676, - [4690] = 4522, - [4691] = 4676, - [4692] = 4676, + [4688] = 4558, + [4689] = 4545, + [4690] = 4687, + [4691] = 4687, + [4692] = 1299, [4693] = 4693, - [4694] = 491, - [4695] = 4676, - [4696] = 1670, - [4697] = 4676, - [4698] = 4675, - [4699] = 4676, - [4700] = 1655, - [4701] = 4676, - [4702] = 4702, - [4703] = 4676, - [4704] = 4704, + [4694] = 4687, + [4695] = 477, + [4696] = 1299, + [4697] = 4687, + [4698] = 4698, + [4699] = 4687, + [4700] = 469, + [4701] = 4578, + [4702] = 475, + [4703] = 480, + [4704] = 4687, [4705] = 4705, - [4706] = 4676, - [4707] = 4524, - [4708] = 4708, - [4709] = 4709, - [4710] = 4548, - [4711] = 4676, - [4712] = 4676, + [4706] = 4614, + [4707] = 478, + [4708] = 4635, + [4709] = 4687, + [4710] = 1598, + [4711] = 4687, + [4712] = 4712, [4713] = 4713, - [4714] = 1150, + [4714] = 4714, [4715] = 4715, - [4716] = 4546, - [4717] = 4509, - [4718] = 1468, - [4719] = 4564, - [4720] = 4720, - [4721] = 4676, - [4722] = 4676, - [4723] = 4702, - [4724] = 4724, - [4725] = 4725, - [4726] = 4726, - [4727] = 4676, - [4728] = 4528, - [4729] = 4676, - [4730] = 4705, - [4731] = 4182, - [4732] = 4732, - [4733] = 4186, - [4734] = 4536, - [4735] = 1670, - [4736] = 4238, - [4737] = 4737, - [4738] = 4676, - [4739] = 4233, - [4740] = 475, - [4741] = 4269, - [4742] = 4286, - [4743] = 4522, - [4744] = 4288, - [4745] = 473, + [4716] = 4687, + [4717] = 4717, + [4718] = 4687, + [4719] = 4687, + [4720] = 4540, + [4721] = 4687, + [4722] = 4722, + [4723] = 482, + [4724] = 1601, + [4725] = 4687, + [4726] = 4552, + [4727] = 4687, + [4728] = 471, + [4729] = 4722, + [4730] = 4730, + [4731] = 1293, + [4732] = 4687, + [4733] = 4733, + [4734] = 4734, + [4735] = 4735, + [4736] = 4736, + [4737] = 4579, + [4738] = 4738, + [4739] = 4739, + [4740] = 4740, + [4741] = 4687, + [4742] = 4742, + [4743] = 4743, + [4744] = 4687, + [4745] = 4635, [4746] = 4746, - [4747] = 477, - [4748] = 4658, - [4749] = 4704, - [4750] = 4750, - [4751] = 4676, - [4752] = 4536, - [4753] = 469, - [4754] = 4676, - [4755] = 4676, - [4756] = 4756, - [4757] = 4676, - [4758] = 4758, - [4759] = 471, - [4760] = 4676, - [4761] = 1153, + [4747] = 4747, + [4748] = 4748, + [4749] = 483, + [4750] = 4578, + [4751] = 4635, + [4752] = 4687, + [4753] = 1601, + [4754] = 474, + [4755] = 4623, + [4756] = 1598, + [4757] = 4757, + [4758] = 476, + [4759] = 4759, + [4760] = 4687, + [4761] = 4687, [4762] = 4762, - [4763] = 4658, - [4764] = 476, - [4765] = 479, - [4766] = 4766, - [4767] = 4528, - [4768] = 480, - [4769] = 4576, - [4770] = 4658, - [4771] = 4685, - [4772] = 4683, - [4773] = 4709, + [4763] = 4763, + [4764] = 4764, + [4765] = 4765, + [4766] = 472, + [4767] = 1299, + [4768] = 4557, + [4769] = 4687, + [4770] = 473, + [4771] = 1546, + [4772] = 4687, + [4773] = 4580, [4774] = 4774, - [4775] = 481, - [4776] = 4514, + [4775] = 4775, + [4776] = 4776, [4777] = 4777, - [4778] = 4778, - [4779] = 4676, - [4780] = 4780, - [4781] = 4676, - [4782] = 4766, - [4783] = 4778, - [4784] = 4708, - [4785] = 4678, - [4786] = 4777, - [4787] = 4676, + [4778] = 4573, + [4779] = 4687, + [4780] = 4574, + [4781] = 4781, + [4782] = 4782, + [4783] = 4687, + [4784] = 1598, + [4785] = 4687, + [4786] = 4687, + [4787] = 4787, [4788] = 4762, - [4789] = 4724, - [4790] = 4676, - [4791] = 4675, + [4789] = 4739, + [4790] = 4687, + [4791] = 4687, [4792] = 4792, - [4793] = 4676, - [4794] = 4756, - [4795] = 4795, - [4796] = 4676, + [4793] = 4793, + [4794] = 4687, + [4795] = 4717, + [4796] = 4796, [4797] = 4797, - [4798] = 4798, - [4799] = 4676, - [4800] = 4800, - [4801] = 4801, - [4802] = 4528, - [4803] = 4676, - [4804] = 4676, - [4805] = 4726, - [4806] = 4758, - [4807] = 4676, - [4808] = 4525, - [4809] = 4676, - [4810] = 4676, - [4811] = 4611, - [4812] = 4593, - [4813] = 4576, - [4814] = 4676, - [4815] = 4815, - [4816] = 4676, - [4817] = 4817, - [4818] = 4818, - [4819] = 4792, - [4820] = 4820, - [4821] = 4581, - [4822] = 4676, - [4823] = 482, - [4824] = 483, - [4825] = 484, - [4826] = 4676, - [4827] = 4713, - [4828] = 4725, - [4829] = 4795, - [4830] = 4676, - [4831] = 4818, - [4832] = 4676, - [4833] = 4519, - [4834] = 4676, - [4835] = 1479, - [4836] = 4676, - [4837] = 4837, - [4838] = 4514, - [4839] = 4585, - [4840] = 4774, - [4841] = 4536, - [4842] = 4837, - [4843] = 4732, - [4844] = 4756, - [4845] = 4676, - [4846] = 4544, - [4847] = 4676, - [4848] = 1150, - [4849] = 4780, - [4850] = 4676, - [4851] = 4758, - [4852] = 4852, - [4853] = 4585, - [4854] = 4676, - [4855] = 4676, - [4856] = 4856, - [4857] = 4676, - [4858] = 4858, - [4859] = 4750, - [4860] = 1479, - [4861] = 4746, - [4862] = 4680, - [4863] = 4676, - [4864] = 4676, - [4865] = 4676, - [4866] = 466, - [4867] = 463, - [4868] = 4676, - [4869] = 4514, - [4870] = 4676, - [4871] = 4585, - [4872] = 4676, - [4873] = 4509, - [4874] = 470, - [4875] = 4147, - [4876] = 1015, - [4877] = 810, - [4878] = 838, - [4879] = 4161, - [4880] = 1096, - [4881] = 817, - [4882] = 818, - [4883] = 4676, - [4884] = 4676, - [4885] = 4858, - [4886] = 1670, - [4887] = 4593, - [4888] = 4800, - [4889] = 4676, - [4890] = 4676, - [4891] = 4509, - [4892] = 4676, - [4893] = 4687, - [4894] = 4798, - [4895] = 4676, - [4896] = 478, - [4897] = 4586, - [4898] = 486, - [4899] = 4798, - [4900] = 4676, - [4901] = 1150, - [4902] = 4852, - [4903] = 4676, - [4904] = 4676, - [4905] = 4676, - [4906] = 4906, - [4907] = 4907, - [4908] = 4817, - [4909] = 4676, - [4910] = 1479, - [4911] = 4676, - [4912] = 4681, - [4913] = 4676, - [4914] = 4576, - [4915] = 1153, - [4916] = 4916, - [4917] = 487, - [4918] = 4593, - [4919] = 4674, - [4920] = 4856, - [4921] = 1673, - [4922] = 4801, - [4923] = 485, - [4924] = 4676, - [4925] = 4676, - [4926] = 4676, - [4927] = 4906, - [4928] = 4797, - [4929] = 4676, - [4930] = 4720, - [4931] = 4676, - [4932] = 4820, - [4933] = 4907, - [4934] = 4737, - [4935] = 1153, - [4936] = 4693, - [4937] = 4815, - [4938] = 4715, - [4939] = 4676, - [4940] = 4676, - [4941] = 4780, - [4942] = 4680, - [4943] = 488, - [4944] = 4693, - [4945] = 4581, - [4946] = 4522, - [4947] = 4947, - [4948] = 4715, - [4949] = 4514, - [4950] = 4815, - [4951] = 4856, - [4952] = 4611, - [4953] = 4726, - [4954] = 4792, - [4955] = 4705, - [4956] = 4683, - [4957] = 4546, - [4958] = 4658, - [4959] = 4708, - [4960] = 4702, - [4961] = 4906, - [4962] = 4746, - [4963] = 4720, - [4964] = 4907, - [4965] = 4581, - [4966] = 4737, + [4798] = 4693, + [4799] = 4748, + [4800] = 4781, + [4801] = 4546, + [4802] = 4736, + [4803] = 4803, + [4804] = 4608, + [4805] = 4687, + [4806] = 4687, + [4807] = 463, + [4808] = 4557, + [4809] = 464, + [4810] = 4810, + [4811] = 4406, + [4812] = 4687, + [4813] = 4813, + [4814] = 4687, + [4815] = 4687, + [4816] = 4816, + [4817] = 4687, + [4818] = 4345, + [4819] = 4687, + [4820] = 4803, + [4821] = 4821, + [4822] = 4787, + [4823] = 4687, + [4824] = 4824, + [4825] = 4687, + [4826] = 4540, + [4827] = 4715, + [4828] = 4757, + [4829] = 4735, + [4830] = 4747, + [4831] = 4775, + [4832] = 481, + [4833] = 1293, + [4834] = 3792, + [4835] = 3798, + [4836] = 4793, + [4837] = 4734, + [4838] = 4792, + [4839] = 4839, + [4840] = 4840, + [4841] = 4687, + [4842] = 4687, + [4843] = 4821, + [4844] = 4687, + [4845] = 4540, + [4846] = 4552, + [4847] = 4687, + [4848] = 4557, + [4849] = 493, + [4850] = 4687, + [4851] = 4580, + [4852] = 4552, + [4853] = 487, + [4854] = 4816, + [4855] = 4765, + [4856] = 4730, + [4857] = 4746, + [4858] = 4345, + [4859] = 4824, + [4860] = 4705, + [4861] = 4759, + [4862] = 4862, + [4863] = 4687, + [4864] = 4558, + [4865] = 4687, + [4866] = 4579, + [4867] = 4687, + [4868] = 4782, + [4869] = 4687, + [4870] = 484, + [4871] = 4406, + [4872] = 4774, + [4873] = 4733, + [4874] = 4776, + [4875] = 4687, + [4876] = 4553, + [4877] = 4614, + [4878] = 4722, + [4879] = 4810, + [4880] = 4687, + [4881] = 4714, + [4882] = 4713, + [4883] = 4777, + [4884] = 4687, + [4885] = 485, + [4886] = 4687, + [4887] = 4166, + [4888] = 1110, + [4889] = 901, + [4890] = 902, + [4891] = 4170, + [4892] = 1111, + [4893] = 913, + [4894] = 914, + [4895] = 4687, + [4896] = 4840, + [4897] = 4687, + [4898] = 4763, + [4899] = 1565, + [4900] = 486, + [4901] = 4901, + [4902] = 4698, + [4903] = 4839, + [4904] = 4687, + [4905] = 470, + [4906] = 4345, + [4907] = 4740, + [4908] = 1567, + [4909] = 4764, + [4910] = 4687, + [4911] = 4614, + [4912] = 4687, + [4913] = 4738, + [4914] = 4687, + [4915] = 4862, + [4916] = 4687, + [4917] = 4620, + [4918] = 4687, + [4919] = 4687, + [4920] = 4687, + [4921] = 4687, + [4922] = 4558, + [4923] = 4578, + [4924] = 4797, + [4925] = 4580, + [4926] = 4687, + [4927] = 4687, + [4928] = 4743, + [4929] = 4796, + [4930] = 4579, + [4931] = 1601, + [4932] = 4687, + [4933] = 4687, + [4934] = 4687, + [4935] = 4687, + [4936] = 4712, + [4937] = 4687, + [4938] = 4687, + [4939] = 4406, + [4940] = 4742, + [4941] = 4687, + [4942] = 4687, + [4943] = 4687, + [4944] = 4687, + [4945] = 4687, + [4946] = 4824, + [4947] = 479, + [4948] = 1293, + [4949] = 4862, + [4950] = 4687, + [4951] = 4763, + [4952] = 3865, + [4953] = 4614, + [4954] = 4635, + [4955] = 4747, + [4956] = 4623, + [4957] = 4557, + [4958] = 4578, + [4959] = 4705, + [4960] = 4739, + [4961] = 3865, + [4962] = 4816, + [4963] = 4733, + [4964] = 4623, + [4965] = 4579, + [4966] = 4777, [4967] = 4762, - [4968] = 4795, - [4969] = 4778, - [4970] = 1150, - [4971] = 4611, - [4972] = 4774, - [4973] = 4858, - [4974] = 4548, - [4975] = 4678, - [4976] = 4528, - [4977] = 4732, - [4978] = 4797, - [4979] = 1479, - [4980] = 4546, - [4981] = 4852, - [4982] = 1320, - [4983] = 4777, - [4984] = 4750, - [4985] = 4800, - [4986] = 4801, - [4987] = 4817, - [4988] = 465, - [4989] = 4576, - [4990] = 4674, - [4991] = 4709, - [4992] = 4581, - [4993] = 4724, - [4994] = 4820, - [4995] = 4685, - [4996] = 4687, - [4997] = 4704, - [4998] = 4713, - [4999] = 4999, - [5000] = 465, - [5001] = 4536, - [5002] = 4725, - [5003] = 1153, - [5004] = 1670, - [5005] = 4593, - [5006] = 4546, - [5007] = 465, - [5008] = 4611, - [5009] = 4548, - [5010] = 4509, - [5011] = 4585, - [5012] = 4548, - [5013] = 4681, - [5014] = 3800, - [5015] = 4818, - [5016] = 4837, - [5017] = 3904, - [5018] = 4766, - [5019] = 465, - [5020] = 1020, - [5021] = 1021, - [5022] = 5022, - [5023] = 5023, - [5024] = 5024, - [5025] = 5025, - [5026] = 5026, - [5027] = 5027, - [5028] = 5028, - [5029] = 5029, - [5030] = 5030, + [4968] = 4792, + [4969] = 4736, + [4970] = 4803, + [4971] = 4775, + [4972] = 4793, + [4973] = 4734, + [4974] = 4580, + [4975] = 4730, + [4976] = 4840, + [4977] = 4717, + [4978] = 4796, + [4979] = 4821, + [4980] = 466, + [4981] = 1293, + [4982] = 4693, + [4983] = 4715, + [4984] = 4757, + [4985] = 4540, + [4986] = 4620, + [4987] = 4839, + [4988] = 489, + [4989] = 4623, + [4990] = 4743, + [4991] = 4797, + [4992] = 4759, + [4993] = 4774, + [4994] = 4714, + [4995] = 1601, + [4996] = 4552, + [4997] = 3798, + [4998] = 4998, + [4999] = 4776, + [5000] = 4698, + [5001] = 4746, + [5002] = 1413, + [5003] = 4787, + [5004] = 4738, + [5005] = 4742, + [5006] = 4782, + [5007] = 4740, + [5008] = 4765, + [5009] = 4735, + [5010] = 4558, + [5011] = 4998, + [5012] = 466, + [5013] = 4620, + [5014] = 4713, + [5015] = 5015, + [5016] = 4748, + [5017] = 466, + [5018] = 4013, + [5019] = 3798, + [5020] = 4620, + [5021] = 3792, + [5022] = 1598, + [5023] = 4712, + [5024] = 4781, + [5025] = 4810, + [5026] = 4998, + [5027] = 4013, + [5028] = 4764, + [5029] = 1299, + [5030] = 466, [5031] = 5031, - [5032] = 5032, - [5033] = 5033, - [5034] = 4147, - [5035] = 1015, - [5036] = 4161, - [5037] = 1096, - [5038] = 4152, - [5039] = 466, - [5040] = 463, - [5041] = 464, + [5032] = 1139, + [5033] = 1140, + [5034] = 5034, + [5035] = 5035, + [5036] = 5036, + [5037] = 5037, + [5038] = 5038, + [5039] = 5039, + [5040] = 5040, + [5041] = 5041, [5042] = 5042, [5043] = 5043, - [5044] = 810, - [5045] = 838, - [5046] = 465, - [5047] = 817, - [5048] = 818, - [5049] = 4141, - [5050] = 491, + [5044] = 5044, + [5045] = 5045, + [5046] = 4166, + [5047] = 1110, + [5048] = 4170, + [5049] = 1111, + [5050] = 5050, [5051] = 5051, - [5052] = 5052, - [5053] = 466, + [5052] = 4185, + [5053] = 5053, [5054] = 463, - [5055] = 465, - [5056] = 5022, - [5057] = 4152, - [5058] = 4141, - [5059] = 5023, - [5060] = 5024, - [5061] = 3800, - [5062] = 5025, - [5063] = 5026, - [5064] = 5027, - [5065] = 5028, - [5066] = 5029, - [5067] = 818, - [5068] = 466, - [5069] = 463, - [5070] = 5022, - [5071] = 5023, - [5072] = 464, - [5073] = 5024, - [5074] = 5025, - [5075] = 5026, - [5076] = 1121, - [5077] = 1122, - [5078] = 466, - [5079] = 463, - [5080] = 5027, - [5081] = 5028, - [5082] = 5029, - [5083] = 5030, - [5084] = 5031, - [5085] = 5032, - [5086] = 5033, - [5087] = 5030, - [5088] = 5031, - [5089] = 5032, - [5090] = 5033, - [5091] = 5091, - [5092] = 5052, - [5093] = 465, - [5094] = 3904, - [5095] = 5091, - [5096] = 5091, - [5097] = 5052, - [5098] = 4581, - [5099] = 4546, - [5100] = 465, - [5101] = 3904, - [5102] = 5102, - [5103] = 466, - [5104] = 463, - [5105] = 4159, - [5106] = 4139, - [5107] = 4147, - [5108] = 1015, - [5109] = 4161, - [5110] = 1096, - [5111] = 810, - [5112] = 838, - [5113] = 817, - [5114] = 465, - [5115] = 5115, - [5116] = 5116, - [5117] = 810, - [5118] = 838, - [5119] = 5119, - [5120] = 5120, - [5121] = 817, - [5122] = 818, - [5123] = 1121, - [5124] = 1122, - [5125] = 470, - [5126] = 478, - [5127] = 486, - [5128] = 5128, - [5129] = 487, - [5130] = 485, - [5131] = 4182, - [5132] = 472, - [5133] = 474, - [5134] = 1027, - [5135] = 4159, + [5055] = 464, + [5056] = 467, + [5057] = 901, + [5058] = 902, + [5059] = 913, + [5060] = 914, + [5061] = 466, + [5062] = 5031, + [5063] = 5034, + [5064] = 5035, + [5065] = 5036, + [5066] = 493, + [5067] = 5037, + [5068] = 463, + [5069] = 464, + [5070] = 466, + [5071] = 5038, + [5072] = 5072, + [5073] = 5039, + [5074] = 5040, + [5075] = 5075, + [5076] = 5041, + [5077] = 5042, + [5078] = 5043, + [5079] = 4139, + [5080] = 5044, + [5081] = 5045, + [5082] = 5034, + [5083] = 5035, + [5084] = 5036, + [5085] = 5037, + [5086] = 914, + [5087] = 5039, + [5088] = 5040, + [5089] = 5041, + [5090] = 5042, + [5091] = 4185, + [5092] = 4149, + [5093] = 4173, + [5094] = 5043, + [5095] = 4189, + [5096] = 4139, + [5097] = 4164, + [5098] = 4160, + [5099] = 5044, + [5100] = 5045, + [5101] = 466, + [5102] = 463, + [5103] = 1093, + [5104] = 1094, + [5105] = 464, + [5106] = 463, + [5107] = 464, + [5108] = 467, + [5109] = 5031, + [5110] = 5053, + [5111] = 466, + [5112] = 5031, + [5113] = 4013, + [5114] = 5114, + [5115] = 5053, + [5116] = 5031, + [5117] = 4623, + [5118] = 4620, + [5119] = 466, + [5120] = 3865, + [5121] = 5031, + [5122] = 463, + [5123] = 464, + [5124] = 5031, + [5125] = 5031, + [5126] = 4188, + [5127] = 4157, + [5128] = 4166, + [5129] = 1110, + [5130] = 4170, + [5131] = 1111, + [5132] = 901, + [5133] = 902, + [5134] = 913, + [5135] = 5038, [5136] = 5136, - [5137] = 1029, - [5138] = 4147, - [5139] = 1015, - [5140] = 4147, - [5141] = 1015, - [5142] = 475, - [5143] = 473, - [5144] = 477, - [5145] = 469, - [5146] = 471, - [5147] = 4161, - [5148] = 1096, + [5137] = 5137, + [5138] = 5138, + [5139] = 474, + [5140] = 1149, + [5141] = 485, + [5142] = 486, + [5143] = 470, + [5144] = 475, + [5145] = 5145, + [5146] = 5146, + [5147] = 1153, + [5148] = 463, [5149] = 476, - [5150] = 479, + [5150] = 1350, [5151] = 5151, - [5152] = 480, - [5153] = 481, - [5154] = 482, - [5155] = 483, - [5156] = 484, - [5157] = 5157, - [5158] = 466, - [5159] = 463, + [5152] = 5152, + [5153] = 4166, + [5154] = 1353, + [5155] = 5155, + [5156] = 4149, + [5157] = 4166, + [5158] = 464, + [5159] = 467, [5160] = 5160, - [5161] = 464, - [5162] = 5162, - [5163] = 4182, - [5164] = 4186, - [5165] = 4238, - [5166] = 4233, - [5167] = 4269, - [5168] = 4286, - [5169] = 4288, + [5161] = 5161, + [5162] = 1110, + [5163] = 901, + [5164] = 471, + [5165] = 5165, + [5166] = 4170, + [5167] = 463, + [5168] = 464, + [5169] = 1111, [5170] = 5170, - [5171] = 4269, - [5172] = 4161, - [5173] = 4139, - [5174] = 1096, - [5175] = 5175, - [5176] = 470, - [5177] = 5177, - [5178] = 478, - [5179] = 486, - [5180] = 487, - [5181] = 466, - [5182] = 463, - [5183] = 485, - [5184] = 5184, - [5185] = 5185, - [5186] = 5186, - [5187] = 1337, - [5188] = 474, - [5189] = 5189, - [5190] = 466, - [5191] = 5175, - [5192] = 463, - [5193] = 488, - [5194] = 464, - [5195] = 5195, - [5196] = 810, - [5197] = 838, - [5198] = 5198, - [5199] = 5175, - [5200] = 817, - [5201] = 475, - [5202] = 818, - [5203] = 473, - [5204] = 477, - [5205] = 5205, - [5206] = 469, - [5207] = 471, - [5208] = 476, - [5209] = 479, - [5210] = 480, - [5211] = 481, - [5212] = 5175, + [5171] = 902, + [5172] = 472, + [5173] = 473, + [5174] = 4164, + [5175] = 477, + [5176] = 487, + [5177] = 474, + [5178] = 475, + [5179] = 476, + [5180] = 463, + [5181] = 464, + [5182] = 4160, + [5183] = 489, + [5184] = 478, + [5185] = 467, + [5186] = 479, + [5187] = 901, + [5188] = 902, + [5189] = 913, + [5190] = 913, + [5191] = 914, + [5192] = 477, + [5193] = 478, + [5194] = 479, + [5195] = 480, + [5196] = 5196, + [5197] = 482, + [5198] = 483, + [5199] = 469, + [5200] = 484, + [5201] = 914, + [5202] = 1093, + [5203] = 1094, + [5204] = 1110, + [5205] = 485, + [5206] = 486, + [5207] = 470, + [5208] = 5208, + [5209] = 5209, + [5210] = 466, + [5211] = 463, + [5212] = 464, [5213] = 5213, - [5214] = 482, - [5215] = 483, - [5216] = 484, - [5217] = 465, - [5218] = 466, - [5219] = 463, - [5220] = 464, - [5221] = 5175, - [5222] = 4152, - [5223] = 5223, - [5224] = 5175, - [5225] = 1457, - [5226] = 5226, - [5227] = 5227, - [5228] = 5175, - [5229] = 5229, + [5214] = 467, + [5215] = 5215, + [5216] = 5216, + [5217] = 5217, + [5218] = 480, + [5219] = 5219, + [5220] = 4139, + [5221] = 4185, + [5222] = 5222, + [5223] = 4188, + [5224] = 5224, + [5225] = 5225, + [5226] = 481, + [5227] = 4170, + [5228] = 482, + [5229] = 483, [5230] = 5230, [5231] = 5231, [5232] = 5232, - [5233] = 5233, - [5234] = 5175, - [5235] = 4141, - [5236] = 4147, - [5237] = 1015, - [5238] = 810, - [5239] = 838, - [5240] = 4161, - [5241] = 1096, - [5242] = 817, - [5243] = 818, - [5244] = 5244, - [5245] = 472, - [5246] = 483, - [5247] = 488, - [5248] = 5248, - [5249] = 481, - [5250] = 5250, + [5233] = 4173, + [5234] = 5234, + [5235] = 469, + [5236] = 4189, + [5237] = 4166, + [5238] = 1110, + [5239] = 901, + [5240] = 902, + [5241] = 4170, + [5242] = 1111, + [5243] = 913, + [5244] = 914, + [5245] = 471, + [5246] = 1111, + [5247] = 484, + [5248] = 472, + [5249] = 4157, + [5250] = 473, [5251] = 5251, - [5252] = 810, - [5253] = 838, + [5252] = 487, + [5253] = 481, [5254] = 5254, [5255] = 5255, - [5256] = 471, - [5257] = 5257, - [5258] = 5258, + [5256] = 1413, + [5257] = 1149, + [5258] = 1153, [5259] = 5259, - [5260] = 477, - [5261] = 1457, - [5262] = 5262, - [5263] = 1027, - [5264] = 5264, - [5265] = 5265, - [5266] = 1457, + [5260] = 478, + [5261] = 1452, + [5262] = 469, + [5263] = 480, + [5264] = 484, + [5265] = 481, + [5266] = 5266, [5267] = 5267, [5268] = 5268, [5269] = 5269, - [5270] = 817, - [5271] = 818, - [5272] = 5272, + [5270] = 485, + [5271] = 486, + [5272] = 470, [5273] = 5273, - [5274] = 5274, - [5275] = 470, - [5276] = 1029, - [5277] = 5277, - [5278] = 491, - [5279] = 1337, - [5280] = 478, - [5281] = 486, - [5282] = 5282, + [5274] = 1350, + [5275] = 4166, + [5276] = 1110, + [5277] = 477, + [5278] = 4170, + [5279] = 1111, + [5280] = 489, + [5281] = 479, + [5282] = 5267, [5283] = 5283, - [5284] = 487, - [5285] = 485, - [5286] = 475, - [5287] = 1411, + [5284] = 1350, + [5285] = 5285, + [5286] = 5286, + [5287] = 1353, [5288] = 5288, - [5289] = 473, - [5290] = 477, - [5291] = 469, - [5292] = 4286, + [5289] = 5289, + [5290] = 5283, + [5291] = 1353, + [5292] = 5292, [5293] = 5293, - [5294] = 471, - [5295] = 482, + [5294] = 5294, + [5295] = 5295, [5296] = 5296, - [5297] = 476, - [5298] = 479, - [5299] = 1027, - [5300] = 5300, + [5297] = 5297, + [5298] = 5298, + [5299] = 5267, + [5300] = 5283, [5301] = 5301, - [5302] = 480, - [5303] = 488, - [5304] = 483, - [5305] = 472, + [5302] = 5302, + [5303] = 5303, + [5304] = 5304, + [5305] = 5305, [5306] = 5306, - [5307] = 481, - [5308] = 474, - [5309] = 484, - [5310] = 4186, + [5307] = 5307, + [5308] = 471, + [5309] = 472, + [5310] = 473, [5311] = 5311, - [5312] = 1029, - [5313] = 5313, - [5314] = 5314, + [5312] = 487, + [5313] = 474, + [5314] = 5267, [5315] = 5315, - [5316] = 5316, - [5317] = 5317, - [5318] = 482, - [5319] = 483, - [5320] = 484, - [5321] = 470, - [5322] = 5322, - [5323] = 5323, - [5324] = 5324, - [5325] = 4288, + [5316] = 5283, + [5317] = 901, + [5318] = 475, + [5319] = 902, + [5320] = 5320, + [5321] = 5321, + [5322] = 476, + [5323] = 5267, + [5324] = 5283, + [5325] = 5325, [5326] = 5326, - [5327] = 478, - [5328] = 486, - [5329] = 466, - [5330] = 469, - [5331] = 463, - [5332] = 464, + [5327] = 489, + [5328] = 913, + [5329] = 5329, + [5330] = 482, + [5331] = 483, + [5332] = 5332, [5333] = 5333, - [5334] = 475, - [5335] = 5335, + [5334] = 471, + [5335] = 493, [5336] = 5336, - [5337] = 475, - [5338] = 5338, - [5339] = 5339, - [5340] = 477, - [5341] = 478, - [5342] = 486, - [5343] = 487, - [5344] = 5344, - [5345] = 476, - [5346] = 479, - [5347] = 470, - [5348] = 4147, - [5349] = 487, - [5350] = 1015, - [5351] = 485, - [5352] = 472, - [5353] = 5353, - [5354] = 5354, - [5355] = 474, - [5356] = 5356, - [5357] = 473, - [5358] = 480, - [5359] = 488, - [5360] = 485, + [5337] = 472, + [5338] = 473, + [5339] = 487, + [5340] = 474, + [5341] = 477, + [5342] = 5342, + [5343] = 478, + [5344] = 1149, + [5345] = 479, + [5346] = 480, + [5347] = 481, + [5348] = 5348, + [5349] = 5349, + [5350] = 482, + [5351] = 483, + [5352] = 1153, + [5353] = 469, + [5354] = 489, + [5355] = 475, + [5356] = 484, + [5357] = 476, + [5358] = 485, + [5359] = 486, + [5360] = 470, [5361] = 5361, - [5362] = 5362, - [5363] = 5363, - [5364] = 5364, - [5365] = 469, + [5362] = 463, + [5363] = 464, + [5364] = 467, + [5365] = 5365, [5366] = 5366, - [5367] = 481, + [5367] = 5367, [5368] = 5368, - [5369] = 5369, - [5370] = 471, - [5371] = 4238, - [5372] = 5372, - [5373] = 4233, + [5369] = 477, + [5370] = 5370, + [5371] = 479, + [5372] = 472, + [5373] = 473, [5374] = 5374, - [5375] = 473, + [5375] = 5375, [5376] = 5376, - [5377] = 476, + [5377] = 5377, [5378] = 5378, - [5379] = 5379, - [5380] = 5380, - [5381] = 4182, - [5382] = 482, + [5379] = 482, + [5380] = 483, + [5381] = 471, + [5382] = 5382, [5383] = 5383, - [5384] = 484, + [5384] = 5384, [5385] = 5385, - [5386] = 479, - [5387] = 5387, - [5388] = 1320, + [5386] = 5386, + [5387] = 487, + [5388] = 474, [5389] = 5389, - [5390] = 488, - [5391] = 472, - [5392] = 480, - [5393] = 474, - [5394] = 1337, - [5395] = 4161, - [5396] = 4269, - [5397] = 1096, - [5398] = 5398, - [5399] = 5399, + [5390] = 5390, + [5391] = 475, + [5392] = 5392, + [5393] = 476, + [5394] = 5394, + [5395] = 478, + [5396] = 469, + [5397] = 489, + [5398] = 480, + [5399] = 484, [5400] = 5400, - [5401] = 5401, + [5401] = 481, [5402] = 5402, [5403] = 5403, - [5404] = 483, - [5405] = 1457, - [5406] = 476, - [5407] = 1150, - [5408] = 1670, - [5409] = 491, + [5404] = 5404, + [5405] = 5405, + [5406] = 5406, + [5407] = 485, + [5408] = 486, + [5409] = 470, [5410] = 5410, - [5411] = 491, + [5411] = 5411, [5412] = 5412, - [5413] = 1337, - [5414] = 465, - [5415] = 1153, - [5416] = 5416, - [5417] = 5417, - [5418] = 5410, - [5419] = 478, - [5420] = 486, - [5421] = 5417, - [5422] = 470, - [5423] = 487, - [5424] = 471, - [5425] = 485, - [5426] = 5410, - [5427] = 491, - [5428] = 481, - [5429] = 472, - [5430] = 474, - [5431] = 488, - [5432] = 5432, - [5433] = 1479, - [5434] = 1027, - [5435] = 5417, - [5436] = 5410, - [5437] = 479, - [5438] = 491, - [5439] = 484, - [5440] = 473, - [5441] = 4581, - [5442] = 482, - [5443] = 4546, - [5444] = 1029, - [5445] = 5417, - [5446] = 5410, - [5447] = 5447, - [5448] = 475, - [5449] = 480, - [5450] = 477, - [5451] = 5417, - [5452] = 5452, - [5453] = 469, - [5454] = 5454, - [5455] = 4713, - [5456] = 4544, - [5457] = 4141, - [5458] = 5458, - [5459] = 4746, - [5460] = 4815, - [5461] = 1479, - [5462] = 463, - [5463] = 4586, - [5464] = 1670, - [5465] = 4674, - [5466] = 4906, - [5467] = 4907, - [5468] = 4681, - [5469] = 4693, - [5470] = 4715, - [5471] = 4705, - [5472] = 4708, - [5473] = 4762, - [5474] = 4519, - [5475] = 4732, - [5476] = 4780, - [5477] = 4800, - [5478] = 4801, - [5479] = 4820, - [5480] = 4725, - [5481] = 4818, - [5482] = 1479, - [5483] = 464, - [5484] = 4514, - [5485] = 4585, - [5486] = 4147, - [5487] = 4852, - [5488] = 4680, - [5489] = 1015, - [5490] = 5490, - [5491] = 5458, - [5492] = 491, - [5493] = 4536, - [5494] = 460, - [5495] = 1468, - [5496] = 4161, - [5497] = 4593, - [5498] = 1096, - [5499] = 459, - [5500] = 5458, - [5501] = 5458, - [5502] = 1150, - [5503] = 817, - [5504] = 1153, - [5505] = 1153, - [5506] = 1670, - [5507] = 1655, - [5508] = 4658, - [5509] = 4525, - [5510] = 5458, - [5511] = 4528, - [5512] = 5458, - [5513] = 818, - [5514] = 4576, - [5515] = 4564, - [5516] = 4581, - [5517] = 5458, - [5518] = 4546, - [5519] = 5458, - [5520] = 5458, - [5521] = 1150, - [5522] = 1673, - [5523] = 4524, - [5524] = 810, - [5525] = 838, - [5526] = 4522, - [5527] = 466, - [5528] = 4509, - [5529] = 472, - [5530] = 4797, - [5531] = 483, - [5532] = 484, - [5533] = 4528, - [5534] = 474, - [5535] = 4685, - [5536] = 4720, - [5537] = 4687, - [5538] = 4522, - [5539] = 4750, - [5540] = 4514, - [5541] = 481, - [5542] = 4704, - [5543] = 1150, - [5544] = 4737, - [5545] = 475, - [5546] = 477, - [5547] = 4708, - [5548] = 4778, - [5549] = 4795, - [5550] = 4680, - [5551] = 4762, - [5552] = 488, - [5553] = 4705, - [5554] = 4780, - [5555] = 470, - [5556] = 478, - [5557] = 473, - [5558] = 1337, - [5559] = 486, - [5560] = 4536, - [5561] = 480, - [5562] = 4746, - [5563] = 4658, - [5564] = 4820, - [5565] = 4674, - [5566] = 4801, - [5567] = 4726, - [5568] = 4774, - [5569] = 4792, - [5570] = 4702, - [5571] = 469, - [5572] = 476, - [5573] = 4732, - [5574] = 4906, - [5575] = 4856, - [5576] = 4585, - [5577] = 4800, - [5578] = 4907, - [5579] = 4593, - [5580] = 4683, - [5581] = 1153, + [5413] = 5413, + [5414] = 5414, + [5415] = 914, + [5416] = 472, + [5417] = 1149, + [5418] = 493, + [5419] = 1153, + [5420] = 1350, + [5421] = 1293, + [5422] = 3865, + [5423] = 5423, + [5424] = 5424, + [5425] = 1353, + [5426] = 1299, + [5427] = 482, + [5428] = 483, + [5429] = 493, + [5430] = 5430, + [5431] = 493, + [5432] = 479, + [5433] = 480, + [5434] = 5434, + [5435] = 466, + [5436] = 484, + [5437] = 1598, + [5438] = 5424, + [5439] = 478, + [5440] = 469, + [5441] = 471, + [5442] = 487, + [5443] = 474, + [5444] = 481, + [5445] = 5424, + [5446] = 475, + [5447] = 476, + [5448] = 485, + [5449] = 5424, + [5450] = 486, + [5451] = 470, + [5452] = 489, + [5453] = 5424, + [5454] = 5424, + [5455] = 493, + [5456] = 5456, + [5457] = 4623, + [5458] = 4620, + [5459] = 5424, + [5460] = 5424, + [5461] = 5424, + [5462] = 1601, + [5463] = 477, + [5464] = 473, + [5465] = 1567, + [5466] = 4540, + [5467] = 4574, + [5468] = 4787, + [5469] = 463, + [5470] = 4553, + [5471] = 1299, + [5472] = 1299, + [5473] = 1598, + [5474] = 464, + [5475] = 4762, + [5476] = 4579, + [5477] = 4792, + [5478] = 4793, + [5479] = 467, + [5480] = 4552, + [5481] = 4717, + [5482] = 4796, + [5483] = 1546, + [5484] = 4693, + [5485] = 4748, + [5486] = 4781, + [5487] = 4546, + [5488] = 4736, + [5489] = 4803, + [5490] = 4821, + [5491] = 4715, + [5492] = 4757, + [5493] = 1293, + [5494] = 4747, + [5495] = 4775, + [5496] = 4557, + [5497] = 4839, + [5498] = 4840, + [5499] = 1601, + [5500] = 4578, + [5501] = 4580, + [5502] = 4620, + [5503] = 460, + [5504] = 4635, + [5505] = 1601, + [5506] = 1293, + [5507] = 4558, + [5508] = 4765, + [5509] = 459, + [5510] = 4545, + [5511] = 4608, + [5512] = 901, + [5513] = 493, + [5514] = 902, + [5515] = 4623, + [5516] = 1565, + [5517] = 913, + [5518] = 914, + [5519] = 4730, + [5520] = 1598, + [5521] = 4166, + [5522] = 1110, + [5523] = 4614, + [5524] = 5524, + [5525] = 4170, + [5526] = 1111, + [5527] = 4573, + [5528] = 4735, + [5529] = 1353, + [5530] = 473, + [5531] = 485, + [5532] = 4730, + [5533] = 486, + [5534] = 489, + [5535] = 4781, + [5536] = 4698, + [5537] = 470, + [5538] = 480, + [5539] = 4821, + [5540] = 4738, + [5541] = 4743, + [5542] = 4742, + [5543] = 4782, + [5544] = 484, + [5545] = 4552, + [5546] = 469, + [5547] = 471, + [5548] = 4757, + [5549] = 4735, + [5550] = 4580, + [5551] = 4715, + [5552] = 4747, + [5553] = 481, + [5554] = 4775, + [5555] = 4839, + [5556] = 4740, + [5557] = 4714, + [5558] = 4558, + [5559] = 4614, + [5560] = 4557, + [5561] = 4776, + [5562] = 4810, + [5563] = 4734, + [5564] = 4736, + [5565] = 1601, + [5566] = 4739, + [5567] = 4764, + [5568] = 4797, + [5569] = 4717, + [5570] = 4540, + [5571] = 472, + [5572] = 1149, + [5573] = 4765, + [5574] = 4803, + [5575] = 477, + [5576] = 4840, + [5577] = 479, + [5578] = 4777, + [5579] = 4787, + [5580] = 1598, + [5581] = 4816, [5582] = 4713, - [5583] = 4815, - [5584] = 4724, - [5585] = 4858, - [5586] = 4681, - [5587] = 4509, - [5588] = 4693, - [5589] = 1670, - [5590] = 4678, - [5591] = 4709, - [5592] = 4725, - [5593] = 4837, - [5594] = 1479, - [5595] = 1457, - [5596] = 1027, - [5597] = 4766, - [5598] = 487, - [5599] = 4777, - [5600] = 1029, - [5601] = 4817, - [5602] = 4818, - [5603] = 485, - [5604] = 4852, - [5605] = 4715, - [5606] = 471, - [5607] = 482, - [5608] = 4576, - [5609] = 479, - [5610] = 491, - [5611] = 1153, - [5612] = 1479, - [5613] = 1670, - [5614] = 1150, - [5615] = 459, + [5583] = 1153, + [5584] = 4579, + [5585] = 4746, + [5586] = 487, + [5587] = 1299, + [5588] = 4762, + [5589] = 4792, + [5590] = 474, + [5591] = 4705, + [5592] = 4796, + [5593] = 4759, + [5594] = 482, + [5595] = 483, + [5596] = 4793, + [5597] = 4774, + [5598] = 1350, + [5599] = 4693, + [5600] = 4733, + [5601] = 1293, + [5602] = 4635, + [5603] = 475, + [5604] = 4578, + [5605] = 4712, + [5606] = 478, + [5607] = 476, + [5608] = 4763, + [5609] = 4748, + [5610] = 493, + [5611] = 1601, + [5612] = 460, + [5613] = 459, + [5614] = 1299, + [5615] = 5615, [5616] = 5616, - [5617] = 460, - [5618] = 5618, + [5617] = 1598, + [5618] = 1293, [5619] = 5619, - [5620] = 5619, - [5621] = 5621, - [5622] = 5619, - [5623] = 5621, - [5624] = 5621, - [5625] = 5621, - [5626] = 5619, - [5627] = 5621, - [5628] = 5619, - [5629] = 5621, + [5620] = 5620, + [5621] = 5619, + [5622] = 5620, + [5623] = 5619, + [5624] = 5620, + [5625] = 5619, + [5626] = 5620, + [5627] = 5619, + [5628] = 5620, + [5629] = 5620, [5630] = 5619, - [5631] = 5621, + [5631] = 5620, [5632] = 5619, - [5633] = 5621, - [5634] = 5619, - [5635] = 5621, - [5636] = 5621, - [5637] = 5619, - [5638] = 5621, - [5639] = 5619, - [5640] = 5621, + [5633] = 5620, + [5634] = 5620, + [5635] = 5619, + [5636] = 5620, + [5637] = 5620, + [5638] = 5619, + [5639] = 5620, + [5640] = 5620, [5641] = 5619, - [5642] = 5619, - [5643] = 5621, - [5644] = 5619, - [5645] = 5621, + [5642] = 5620, + [5643] = 5619, + [5644] = 5620, + [5645] = 5619, [5646] = 5619, - [5647] = 5621, - [5648] = 5621, + [5647] = 5619, + [5648] = 5620, [5649] = 5619, - [5650] = 5621, - [5651] = 5619, - [5652] = 5621, - [5653] = 5619, - [5654] = 5619, + [5650] = 5620, + [5651] = 5620, + [5652] = 5619, + [5653] = 5620, + [5654] = 5620, [5655] = 5619, - [5656] = 5621, - [5657] = 5619, - [5658] = 5621, - [5659] = 5621, + [5656] = 5619, + [5657] = 5620, + [5658] = 5620, + [5659] = 5619, [5660] = 5619, [5661] = 5619, - [5662] = 5621, - [5663] = 5621, - [5664] = 5619, - [5665] = 5621, - [5666] = 5619, - [5667] = 5621, - [5668] = 5619, + [5662] = 5619, + [5663] = 5619, + [5664] = 5620, + [5665] = 5620, + [5666] = 5620, + [5667] = 5619, + [5668] = 5620, [5669] = 5619, - [5670] = 5621, - [5671] = 5619, + [5670] = 5619, + [5671] = 5620, [5672] = 5619, - [5673] = 5621, + [5673] = 5620, [5674] = 5619, - [5675] = 5621, - [5676] = 5621, + [5675] = 5620, + [5676] = 5620, [5677] = 5619, [5678] = 5619, - [5679] = 5621, + [5679] = 5620, [5680] = 5619, - [5681] = 5621, - [5682] = 5619, - [5683] = 5621, + [5681] = 5619, + [5682] = 5620, + [5683] = 5620, [5684] = 5619, - [5685] = 5621, - [5686] = 5619, - [5687] = 5619, - [5688] = 5621, - [5689] = 5621, - [5690] = 5619, - [5691] = 5621, - [5692] = 5621, - [5693] = 5621, - [5694] = 5619, - [5695] = 5621, + [5685] = 5619, + [5686] = 5620, + [5687] = 5620, + [5688] = 5619, + [5689] = 5619, + [5690] = 5620, + [5691] = 5620, + [5692] = 5619, + [5693] = 5693, + [5694] = 5620, + [5695] = 5620, [5696] = 5619, [5697] = 5619, - [5698] = 5621, + [5698] = 5620, [5699] = 5619, - [5700] = 5621, - [5701] = 5621, - [5702] = 5619, - [5703] = 5621, - [5704] = 5621, - [5705] = 5619, + [5700] = 5619, + [5701] = 5620, + [5702] = 5620, + [5703] = 5619, + [5704] = 5619, + [5705] = 5620, [5706] = 5619, - [5707] = 5621, - [5708] = 5619, - [5709] = 5621, - [5710] = 5619, - [5711] = 5621, - [5712] = 5621, + [5707] = 5620, + [5708] = 5620, + [5709] = 5619, + [5710] = 5620, + [5711] = 5619, + [5712] = 5620, [5713] = 5619, - [5714] = 5621, - [5715] = 5619, - [5716] = 5619, - [5717] = 5621, - [5718] = 5621, - [5719] = 5619, - [5720] = 5621, + [5714] = 5619, + [5715] = 5620, + [5716] = 5620, + [5717] = 5619, + [5718] = 5619, + [5719] = 5620, + [5720] = 5620, [5721] = 5619, - [5722] = 5621, + [5722] = 5620, [5723] = 5619, - [5724] = 5621, - [5725] = 5619, - [5726] = 5619, - [5727] = 5619, - [5728] = 5621, + [5724] = 5619, + [5725] = 5620, + [5726] = 5620, + [5727] = 5620, + [5728] = 5619, [5729] = 5619, - [5730] = 5621, + [5730] = 5620, [5731] = 5619, - [5732] = 5621, - [5733] = 5619, - [5734] = 5621, - [5735] = 5619, - [5736] = 5621, - [5737] = 5621, - [5738] = 5619, - [5739] = 5621, - [5740] = 5619, - [5741] = 5621, + [5732] = 5619, + [5733] = 5620, + [5734] = 5619, + [5735] = 5620, + [5736] = 5620, + [5737] = 5619, + [5738] = 5620, + [5739] = 5619, + [5740] = 5620, + [5741] = 5620, [5742] = 5619, - [5743] = 5621, - [5744] = 5744, - [5745] = 5621, - [5746] = 5619, - [5747] = 5621, - [5748] = 5619, - [5749] = 5621, + [5743] = 5619, + [5744] = 5620, + [5745] = 5619, + [5746] = 5620, + [5747] = 5620, + [5748] = 5620, + [5749] = 5620, [5750] = 5619, - [5751] = 5621, - [5752] = 5619, - [5753] = 5621, + [5751] = 5619, + [5752] = 5620, + [5753] = 5619, [5754] = 5619, - [5755] = 5621, - [5756] = 5619, + [5755] = 5620, + [5756] = 5620, [5757] = 5619, - [5758] = 5621, + [5758] = 5619, [5759] = 5619, - [5760] = 5621, - [5761] = 5619, - [5762] = 5621, - [5763] = 5621, + [5760] = 5619, + [5761] = 5620, + [5762] = 5620, + [5763] = 5619, [5764] = 5619, - [5765] = 5619, - [5766] = 5621, - [5767] = 5619, - [5768] = 5619, - [5769] = 5621, - [5770] = 5619, + [5765] = 5620, + [5766] = 5620, + [5767] = 5620, + [5768] = 5620, + [5769] = 5619, + [5770] = 5620, [5771] = 5619, - [5772] = 5621, - [5773] = 5621, + [5772] = 5619, + [5773] = 5619, [5774] = 5774, - [5775] = 5774, + [5775] = 5775, [5776] = 5776, - [5777] = 5777, + [5777] = 5776, [5778] = 5778, - [5779] = 5774, - [5780] = 5776, - [5781] = 5777, - [5782] = 5776, - [5783] = 5774, - [5784] = 5774, - [5785] = 5778, - [5786] = 5776, - [5787] = 5774, - [5788] = 5777, - [5789] = 5774, - [5790] = 5774, - [5791] = 5774, - [5792] = 5776, - [5793] = 5777, + [5779] = 5776, + [5780] = 5775, + [5781] = 5778, + [5782] = 5775, + [5783] = 5778, + [5784] = 5776, + [5785] = 5775, + [5786] = 5775, + [5787] = 5775, + [5788] = 5775, + [5789] = 5776, + [5790] = 5778, + [5791] = 5778, + [5792] = 5778, + [5793] = 5775, [5794] = 5776, - [5795] = 5776, - [5796] = 5776, - [5797] = 5778, - [5798] = 5774, - [5799] = 5777, + [5795] = 5774, + [5796] = 5778, + [5797] = 5776, + [5798] = 5775, + [5799] = 5775, [5800] = 5776, - [5801] = 5777, - [5802] = 5774, - [5803] = 5776, - [5804] = 5777, - [5805] = 5776, - [5806] = 5774, - [5807] = 5777, - [5808] = 5774, - [5809] = 5774, - [5810] = 5776, - [5811] = 5776, - [5812] = 5777, - [5813] = 5774, - [5814] = 5776, - [5815] = 5777, - [5816] = 5774, - [5817] = 5774, + [5801] = 5778, + [5802] = 5778, + [5803] = 5778, + [5804] = 5778, + [5805] = 5775, + [5806] = 5775, + [5807] = 5776, + [5808] = 5776, + [5809] = 5775, + [5810] = 5775, + [5811] = 5778, + [5812] = 5775, + [5813] = 5778, + [5814] = 5778, + [5815] = 5776, + [5816] = 5775, + [5817] = 5778, [5818] = 5776, - [5819] = 5776, - [5820] = 5777, - [5821] = 5774, - [5822] = 5774, + [5819] = 5775, + [5820] = 5778, + [5821] = 5775, + [5822] = 5775, [5823] = 5776, [5824] = 5776, - [5825] = 5774, - [5826] = 5777, - [5827] = 5774, - [5828] = 5774, - [5829] = 5776, - [5830] = 5777, - [5831] = 5777, - [5832] = 5774, - [5833] = 5776, - [5834] = 5774, - [5835] = 5776, - [5836] = 5777, + [5825] = 5778, + [5826] = 5778, + [5827] = 5778, + [5828] = 5778, + [5829] = 5775, + [5830] = 5775, + [5831] = 5776, + [5832] = 5776, + [5833] = 5778, + [5834] = 5775, + [5835] = 5775, + [5836] = 5776, [5837] = 5776, - [5838] = 5776, - [5839] = 5777, - [5840] = 5776, - [5841] = 5777, - [5842] = 5777, - [5843] = 5774, - [5844] = 5774, - [5845] = 5776, - [5846] = 5777, - [5847] = 5774, - [5848] = 5776, + [5838] = 5775, + [5839] = 5775, + [5840] = 5778, + [5841] = 5778, + [5842] = 5775, + [5843] = 5776, + [5844] = 5775, + [5845] = 5778, + [5846] = 5775, + [5847] = 5776, + [5848] = 5778, [5849] = 5776, - [5850] = 5777, - [5851] = 5777, - [5852] = 5774, - [5853] = 5776, + [5850] = 5778, + [5851] = 5775, + [5852] = 5778, + [5853] = 5778, [5854] = 5778, - [5855] = 5774, - [5856] = 5774, + [5855] = 5775, + [5856] = 5776, [5857] = 5776, - [5858] = 5777, - [5859] = 5777, - [5860] = 5774, - [5861] = 5774, - [5862] = 5774, + [5858] = 5775, + [5859] = 5776, + [5860] = 5775, + [5861] = 5778, + [5862] = 5778, [5863] = 5776, - [5864] = 5776, + [5864] = 5775, [5865] = 5776, - [5866] = 5777, - [5867] = 5777, - [5868] = 5774, - [5869] = 5774, - [5870] = 5774, - [5871] = 5776, - [5872] = 5776, - [5873] = 5777, + [5866] = 5778, + [5867] = 5778, + [5868] = 5778, + [5869] = 5775, + [5870] = 5776, + [5871] = 5778, + [5872] = 5775, + [5873] = 5776, [5874] = 5776, - [5875] = 5774, - [5876] = 5776, - [5877] = 5777, - [5878] = 5774, - [5879] = 5774, - [5880] = 5777, - [5881] = 5776, - [5882] = 5774, - [5883] = 5777, - [5884] = 5774, + [5875] = 5778, + [5876] = 5775, + [5877] = 5778, + [5878] = 5775, + [5879] = 5775, + [5880] = 5776, + [5881] = 5775, + [5882] = 5775, + [5883] = 5776, + [5884] = 5778, [5885] = 5776, - [5886] = 5776, - [5887] = 5777, - [5888] = 5776, - [5889] = 5774, - [5890] = 5774, - [5891] = 5776, - [5892] = 5774, - [5893] = 5777, - [5894] = 5776, - [5895] = 5777, + [5886] = 5775, + [5887] = 5775, + [5888] = 5778, + [5889] = 5776, + [5890] = 5776, + [5891] = 5775, + [5892] = 5775, + [5893] = 5778, + [5894] = 5778, + [5895] = 5775, [5896] = 5776, - [5897] = 5774, + [5897] = 5775, [5898] = 5776, - [5899] = 5776, - [5900] = 5777, - [5901] = 5777, - [5902] = 5774, + [5899] = 5778, + [5900] = 5775, + [5901] = 5776, + [5902] = 5776, [5903] = 5778, - [5904] = 5774, + [5904] = 5776, [5905] = 5776, - [5906] = 5777, - [5907] = 5774, - [5908] = 5776, - [5909] = 5774, + [5906] = 5778, + [5907] = 5775, + [5908] = 5778, + [5909] = 5776, [5910] = 5774, - [5911] = 5776, - [5912] = 5777, - [5913] = 5776, + [5911] = 5778, + [5912] = 5775, + [5913] = 5778, [5914] = 5776, - [5915] = 5774, - [5916] = 5776, - [5917] = 5777, - [5918] = 5774, - [5919] = 5774, - [5920] = 5776, - [5921] = 5777, - [5922] = 5774, - [5923] = 5774, + [5915] = 5776, + [5916] = 5775, + [5917] = 5775, + [5918] = 5778, + [5919] = 5776, + [5920] = 5774, + [5921] = 5775, + [5922] = 5778, + [5923] = 5775, [5924] = 5776, - [5925] = 5777, - [5926] = 5774, + [5925] = 5776, + [5926] = 5778, [5927] = 5776, - [5928] = 5777, - [5929] = 5777, - [5930] = 5777, - [5931] = 5774, - [5932] = 5774, - [5933] = 5778, - [5934] = 5776, - [5935] = 5777, + [5928] = 5778, + [5929] = 5775, + [5930] = 5776, + [5931] = 5778, + [5932] = 5776, + [5933] = 5775, + [5934] = 5778, + [5935] = 5775, [5936] = 5776, - [5937] = 5774, - [5938] = 5776, - [5939] = 5776, - [5940] = 5777, - [5941] = 5774, - [5942] = 5774, + [5937] = 5775, + [5938] = 5778, + [5939] = 5778, + [5940] = 5778, + [5941] = 5776, + [5942] = 5775, [5943] = 5774, - [5944] = 5777, - [5945] = 5776, - [5946] = 5776, - [5947] = 5776, - [5948] = 5777, - [5949] = 5777, - [5950] = 5774, - [5951] = 5777, - [5952] = 5776, - [5953] = 5774, - [5954] = 5774, - [5955] = 5776, - [5956] = 5777, - [5957] = 5777, + [5944] = 5776, + [5945] = 5775, + [5946] = 5778, + [5947] = 5775, + [5948] = 5776, + [5949] = 5775, + [5950] = 5776, + [5951] = 5774, + [5952] = 5778, + [5953] = 5776, + [5954] = 5776, + [5955] = 5778, + [5956] = 5775, + [5957] = 5778, [5958] = 5776, - [5959] = 5774, - [5960] = 5776, - [5961] = 5776, - [5962] = 5777, - [5963] = 5774, - [5964] = 5778, - [5965] = 5774, - [5966] = 5776, + [5959] = 5775, + [5960] = 5778, + [5961] = 5778, + [5962] = 5778, + [5963] = 5775, + [5964] = 5776, + [5965] = 5778, + [5966] = 5778, [5967] = 5776, - [5968] = 5777, - [5969] = 5774, - [5970] = 5777, - [5971] = 5774, - [5972] = 5777, - [5973] = 5777, - [5974] = 5776, - [5975] = 5777, - [5976] = 5777, - [5977] = 5776, - [5978] = 5774, - [5979] = 5776, - [5980] = 5778, - [5981] = 5776, - [5982] = 5774, - [5983] = 5776, - [5984] = 5774, - [5985] = 5777, - [5986] = 5777, - [5987] = 5774, - [5988] = 5777, - [5989] = 5776, - [5990] = 5777, - [5991] = 5776, - [5992] = 5774, - [5993] = 5774, - [5994] = 5777, - [5995] = 5777, + [5968] = 5778, + [5969] = 5778, + [5970] = 5775, + [5971] = 5778, + [5972] = 5776, + [5973] = 5774, + [5974] = 5775, + [5975] = 5778, + [5976] = 5778, + [5977] = 5775, + [5978] = 5775, + [5979] = 5775, + [5980] = 5776, + [5981] = 5775, + [5982] = 5775, + [5983] = 5778, + [5984] = 5778, + [5985] = 5776, + [5986] = 5775, + [5987] = 5775, + [5988] = 5776, + [5989] = 5775, + [5990] = 5778, + [5991] = 5775, + [5992] = 5776, + [5993] = 5778, + [5994] = 5778, + [5995] = 5775, [5996] = 5774, - [5997] = 5776, - [5998] = 5777, - [5999] = 5776, + [5997] = 5778, + [5998] = 5775, + [5999] = 5778, [6000] = 6000, [6001] = 6000, [6002] = 6000, [6003] = 6000, - [6004] = 476, - [6005] = 479, - [6006] = 6000, - [6007] = 6000, + [6004] = 6000, + [6005] = 6000, + [6006] = 482, + [6007] = 483, [6008] = 6000, [6009] = 6000, - [6010] = 6010, - [6011] = 6000, + [6010] = 6000, + [6011] = 6011, [6012] = 6012, - [6013] = 6013, - [6014] = 6012, - [6015] = 6015, - [6016] = 6016, + [6013] = 6012, + [6014] = 6014, + [6015] = 6012, + [6016] = 6014, [6017] = 6012, [6018] = 6012, - [6019] = 6016, + [6019] = 6014, [6020] = 6012, [6021] = 6012, [6022] = 6012, - [6023] = 6023, - [6024] = 6016, + [6023] = 6012, + [6024] = 6012, [6025] = 6012, [6026] = 6012, [6027] = 6012, - [6028] = 6016, - [6029] = 6012, - [6030] = 6016, - [6031] = 6031, - [6032] = 6016, + [6028] = 6012, + [6029] = 6014, + [6030] = 6012, + [6031] = 6012, + [6032] = 6012, [6033] = 6012, - [6034] = 6012, + [6034] = 6014, [6035] = 6012, - [6036] = 6012, + [6036] = 6036, [6037] = 6012, - [6038] = 6012, + [6038] = 6014, [6039] = 6012, [6040] = 6012, - [6041] = 6016, - [6042] = 6012, - [6043] = 6012, + [6041] = 6014, + [6042] = 6014, + [6043] = 6043, [6044] = 6012, - [6045] = 6016, + [6045] = 6045, [6046] = 6012, - [6047] = 6012, + [6047] = 6047, [6048] = 6012, [6049] = 6012, - [6050] = 6016, - [6051] = 6012, + [6050] = 6012, + [6051] = 6014, [6052] = 6052, [6053] = 6053, [6054] = 6054, - [6055] = 482, - [6056] = 483, - [6057] = 6053, - [6058] = 6052, + [6055] = 6052, + [6056] = 476, + [6057] = 484, + [6058] = 6053, [6059] = 6052, - [6060] = 484, - [6061] = 6052, - [6062] = 6054, - [6063] = 6063, - [6064] = 6053, - [6065] = 6052, + [6060] = 6052, + [6061] = 6054, + [6062] = 6053, + [6063] = 6054, + [6064] = 485, + [6065] = 6053, [6066] = 6054, - [6067] = 6054, - [6068] = 6054, + [6067] = 6053, + [6068] = 6052, [6069] = 6069, - [6070] = 481, - [6071] = 6054, + [6070] = 470, + [6071] = 6053, [6072] = 6054, - [6073] = 6053, - [6074] = 6052, - [6075] = 474, - [6076] = 1045, - [6077] = 479, + [6073] = 6052, + [6074] = 475, + [6075] = 6054, + [6076] = 6076, + [6077] = 6053, [6078] = 6053, - [6079] = 6053, - [6080] = 480, - [6081] = 6053, - [6082] = 472, - [6083] = 476, + [6079] = 483, + [6080] = 469, + [6081] = 486, + [6082] = 6054, + [6083] = 1188, [6084] = 6052, - [6085] = 6085, - [6086] = 6053, - [6087] = 6052, - [6088] = 6054, - [6089] = 6089, - [6090] = 465, + [6085] = 6052, + [6086] = 482, + [6087] = 6054, + [6088] = 6088, + [6089] = 466, + [6090] = 6090, [6091] = 6091, [6092] = 6092, [6093] = 6093, - [6094] = 6094, - [6095] = 6095, - [6096] = 6096, + [6094] = 464, + [6095] = 6093, + [6096] = 467, [6097] = 6097, - [6098] = 464, - [6099] = 463, + [6098] = 6098, + [6099] = 6093, [6100] = 6100, - [6101] = 466, - [6102] = 6096, - [6103] = 6093, - [6104] = 6104, - [6105] = 6096, - [6106] = 6093, - [6107] = 6096, - [6108] = 6093, - [6109] = 481, - [6110] = 470, - [6111] = 481, - [6112] = 6112, - [6113] = 475, - [6114] = 482, - [6115] = 483, - [6116] = 484, - [6117] = 6112, - [6118] = 482, - [6119] = 483, - [6120] = 484, - [6121] = 488, - [6122] = 487, - [6123] = 469, - [6124] = 481, - [6125] = 482, - [6126] = 483, - [6127] = 484, - [6128] = 6128, - [6129] = 480, - [6130] = 6130, - [6131] = 471, - [6132] = 472, - [6133] = 6112, - [6134] = 474, - [6135] = 6135, - [6136] = 6112, - [6137] = 478, + [6101] = 6093, + [6102] = 6102, + [6103] = 6100, + [6104] = 6100, + [6105] = 463, + [6106] = 6106, + [6107] = 6107, + [6108] = 6100, + [6109] = 477, + [6110] = 486, + [6111] = 478, + [6112] = 476, + [6113] = 473, + [6114] = 470, + [6115] = 482, + [6116] = 6116, + [6117] = 6117, + [6118] = 470, + [6119] = 479, + [6120] = 469, + [6121] = 480, + [6122] = 474, + [6123] = 6123, + [6124] = 6116, + [6125] = 469, + [6126] = 481, + [6127] = 471, + [6128] = 475, + [6129] = 6116, + [6130] = 487, + [6131] = 472, + [6132] = 479, + [6133] = 483, + [6134] = 485, + [6135] = 484, + [6136] = 6136, + [6137] = 485, [6138] = 486, - [6139] = 475, - [6140] = 477, - [6141] = 476, - [6142] = 479, - [6143] = 473, - [6144] = 476, - [6145] = 477, - [6146] = 480, - [6147] = 6147, - [6148] = 480, - [6149] = 485, - [6150] = 479, - [6151] = 6151, + [6139] = 477, + [6140] = 485, + [6141] = 484, + [6142] = 470, + [6143] = 6116, + [6144] = 486, + [6145] = 6145, + [6146] = 6146, + [6147] = 482, + [6148] = 483, + [6149] = 489, + [6150] = 469, + [6151] = 484, [6152] = 6152, [6153] = 6153, [6154] = 6154, - [6155] = 6154, - [6156] = 6154, + [6155] = 6155, + [6156] = 6152, [6157] = 6157, [6158] = 6154, [6159] = 6159, - [6160] = 6154, + [6160] = 6160, [6161] = 6161, [6162] = 6154, - [6163] = 6154, - [6164] = 6154, - [6165] = 6165, - [6166] = 6154, - [6167] = 6154, + [6163] = 6163, + [6164] = 493, + [6165] = 6154, + [6166] = 6159, + [6167] = 480, [6168] = 6168, - [6169] = 6154, - [6170] = 6154, - [6171] = 6171, - [6172] = 6154, - [6173] = 6173, - [6174] = 6174, + [6169] = 6169, + [6170] = 6152, + [6171] = 6154, + [6172] = 6172, + [6173] = 6154, + [6174] = 6154, [6175] = 6175, - [6176] = 6176, - [6177] = 6177, - [6178] = 6178, + [6176] = 6154, + [6177] = 6154, + [6178] = 6154, [6179] = 6154, - [6180] = 6154, - [6181] = 6181, + [6180] = 6180, + [6181] = 6168, [6182] = 6154, - [6183] = 6154, - [6184] = 6154, - [6185] = 6154, + [6183] = 6183, + [6184] = 6168, + [6185] = 6185, [6186] = 6154, [6187] = 6154, - [6188] = 6188, - [6189] = 6154, + [6188] = 6154, + [6189] = 6189, [6190] = 6190, [6191] = 6191, - [6192] = 6154, + [6192] = 6192, [6193] = 6154, - [6194] = 6176, - [6195] = 6154, + [6194] = 6154, + [6195] = 6195, [6196] = 6154, [6197] = 6197, - [6198] = 465, - [6199] = 6199, - [6200] = 6177, - [6201] = 6154, - [6202] = 6154, + [6198] = 6198, + [6199] = 6154, + [6200] = 6200, + [6201] = 6201, + [6202] = 481, [6203] = 6154, - [6204] = 6204, - [6205] = 6205, - [6206] = 6206, - [6207] = 6154, + [6204] = 6154, + [6205] = 6154, + [6206] = 6154, + [6207] = 6207, [6208] = 6208, [6209] = 6154, [6210] = 6154, [6211] = 6154, - [6212] = 6154, + [6212] = 466, [6213] = 6154, [6214] = 6154, [6215] = 6154, [6216] = 6216, - [6217] = 6154, - [6218] = 6176, - [6219] = 6177, + [6217] = 6217, + [6218] = 6154, + [6219] = 6219, [6220] = 6154, [6221] = 6154, - [6222] = 6177, - [6223] = 6223, + [6222] = 6154, + [6223] = 6154, [6224] = 6224, - [6225] = 473, - [6226] = 6154, - [6227] = 6227, + [6225] = 6225, + [6226] = 6226, + [6227] = 6159, [6228] = 6154, - [6229] = 6181, + [6229] = 6154, [6230] = 6154, - [6231] = 6154, - [6232] = 6232, - [6233] = 491, + [6231] = 6152, + [6232] = 6154, + [6233] = 6233, [6234] = 6154, [6235] = 6154, - [6236] = 6154, + [6236] = 6236, [6237] = 6154, [6238] = 6154, - [6239] = 6239, - [6240] = 6240, - [6241] = 6154, - [6242] = 6242, + [6239] = 6154, + [6240] = 6154, + [6241] = 478, + [6242] = 6154, [6243] = 6154, [6244] = 6154, - [6245] = 469, - [6246] = 6246, - [6247] = 6181, - [6248] = 6248, - [6249] = 6249, + [6245] = 6168, + [6246] = 6154, + [6247] = 6154, + [6248] = 6154, + [6249] = 6154, [6250] = 6154, [6251] = 6154, [6252] = 6154, - [6253] = 6253, + [6253] = 6154, [6254] = 6154, [6255] = 6154, - [6256] = 471, + [6256] = 6154, [6257] = 6154, [6258] = 6154, - [6259] = 6154, + [6259] = 6259, [6260] = 6154, - [6261] = 6176, - [6262] = 6154, - [6263] = 6154, + [6261] = 6154, + [6262] = 6262, + [6263] = 6159, [6264] = 6154, - [6265] = 6265, + [6265] = 6154, [6266] = 6154, [6267] = 6267, - [6268] = 6154, + [6268] = 6268, [6269] = 6154, - [6270] = 6181, - [6271] = 6154, - [6272] = 6272, + [6270] = 6154, + [6271] = 6271, + [6272] = 6154, [6273] = 6154, [6274] = 6154, [6275] = 6275, - [6276] = 2495, + [6276] = 6276, [6277] = 6277, [6278] = 6278, [6279] = 6279, [6280] = 6280, [6281] = 6281, [6282] = 6282, - [6283] = 6283, + [6283] = 463, [6284] = 6284, - [6285] = 6285, - [6286] = 6286, - [6287] = 6287, - [6288] = 6288, + [6285] = 464, + [6286] = 2594, + [6287] = 467, + [6288] = 2595, [6289] = 6289, - [6290] = 6290, - [6291] = 6287, + [6290] = 6277, + [6291] = 6278, [6292] = 6292, - [6293] = 6279, + [6293] = 6293, [6294] = 6294, [6295] = 6295, [6296] = 6296, - [6297] = 6288, - [6298] = 6289, - [6299] = 6290, + [6297] = 6297, + [6298] = 6298, + [6299] = 6299, [6300] = 6300, [6301] = 6301, - [6302] = 6279, - [6303] = 463, - [6304] = 483, + [6302] = 6277, + [6303] = 6278, + [6304] = 6278, [6305] = 6305, - [6306] = 2565, + [6306] = 6306, [6307] = 6307, - [6308] = 6300, + [6308] = 6308, [6309] = 6309, [6310] = 6310, [6311] = 6311, @@ -9070,1261 +9077,1261 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6313] = 6313, [6314] = 6314, [6315] = 6315, - [6316] = 482, - [6317] = 6317, - [6318] = 6318, - [6319] = 6280, - [6320] = 6320, - [6321] = 6279, - [6322] = 6279, - [6323] = 6323, - [6324] = 464, - [6325] = 484, - [6326] = 6300, - [6327] = 6320, - [6328] = 6285, - [6329] = 6286, - [6330] = 6280, - [6331] = 6301, - [6332] = 6282, - [6333] = 6283, - [6334] = 2520, - [6335] = 6335, - [6336] = 6284, - [6337] = 6285, - [6338] = 6286, - [6339] = 6287, - [6340] = 6288, - [6341] = 6341, - [6342] = 6289, - [6343] = 6290, - [6344] = 6287, - [6345] = 6345, - [6346] = 6300, - [6347] = 6347, - [6348] = 6280, - [6349] = 6349, - [6350] = 6288, - [6351] = 6281, - [6352] = 6281, - [6353] = 6282, - [6354] = 6283, - [6355] = 6284, + [6316] = 2607, + [6317] = 6301, + [6318] = 6313, + [6319] = 6284, + [6320] = 6292, + [6321] = 6293, + [6322] = 6295, + [6323] = 6296, + [6324] = 6324, + [6325] = 6325, + [6326] = 6326, + [6327] = 6327, + [6328] = 6328, + [6329] = 2608, + [6330] = 6277, + [6331] = 6331, + [6332] = 6324, + [6333] = 6333, + [6334] = 6325, + [6335] = 6326, + [6336] = 6336, + [6337] = 6327, + [6338] = 6301, + [6339] = 6313, + [6340] = 6284, + [6341] = 6292, + [6342] = 6293, + [6343] = 6295, + [6344] = 6296, + [6345] = 6324, + [6346] = 6333, + [6347] = 6325, + [6348] = 6326, + [6349] = 6327, + [6350] = 6328, + [6351] = 485, + [6352] = 6352, + [6353] = 6353, + [6354] = 486, + [6355] = 470, [6356] = 6356, - [6357] = 6285, - [6358] = 6286, - [6359] = 6301, - [6360] = 6290, - [6361] = 6361, - [6362] = 6280, - [6363] = 6281, - [6364] = 6320, - [6365] = 6287, - [6366] = 6282, - [6367] = 6288, - [6368] = 6289, - [6369] = 6290, - [6370] = 6282, - [6371] = 6371, - [6372] = 6283, - [6373] = 6301, - [6374] = 2487, - [6375] = 6320, - [6376] = 6283, - [6377] = 6377, - [6378] = 6284, - [6379] = 6379, - [6380] = 6285, - [6381] = 6289, - [6382] = 6382, - [6383] = 466, - [6384] = 6286, - [6385] = 6284, - [6386] = 6281, - [6387] = 475, - [6388] = 485, - [6389] = 472, - [6390] = 474, - [6391] = 482, - [6392] = 483, - [6393] = 484, - [6394] = 488, - [6395] = 6395, - [6396] = 2588, - [6397] = 6397, + [6357] = 6301, + [6358] = 6313, + [6359] = 6284, + [6360] = 6292, + [6361] = 6293, + [6362] = 6295, + [6363] = 6296, + [6364] = 6324, + [6365] = 6333, + [6366] = 6325, + [6367] = 6326, + [6368] = 6327, + [6369] = 6328, + [6370] = 6370, + [6371] = 6301, + [6372] = 6284, + [6373] = 6292, + [6374] = 6293, + [6375] = 6295, + [6376] = 6296, + [6377] = 6324, + [6378] = 6333, + [6379] = 6325, + [6380] = 6326, + [6381] = 6327, + [6382] = 6328, + [6383] = 6383, + [6384] = 6328, + [6385] = 6385, + [6386] = 6333, + [6387] = 470, + [6388] = 6388, + [6389] = 6389, + [6390] = 487, + [6391] = 475, + [6392] = 472, + [6393] = 487, + [6394] = 480, + [6395] = 484, + [6396] = 485, + [6397] = 481, [6398] = 6398, - [6399] = 2595, - [6400] = 2596, - [6401] = 473, - [6402] = 477, - [6403] = 469, - [6404] = 471, - [6405] = 476, - [6406] = 479, - [6407] = 480, - [6408] = 481, + [6399] = 1567, + [6400] = 486, + [6401] = 6401, + [6402] = 6402, + [6403] = 485, + [6404] = 486, + [6405] = 470, + [6406] = 6406, + [6407] = 6407, + [6408] = 6408, [6409] = 6409, - [6410] = 482, - [6411] = 483, - [6412] = 484, - [6413] = 6413, - [6414] = 6414, - [6415] = 487, + [6410] = 6410, + [6411] = 6411, + [6412] = 6412, + [6413] = 2808, + [6414] = 486, + [6415] = 470, [6416] = 6416, - [6417] = 6417, - [6418] = 6418, - [6419] = 488, - [6420] = 6420, - [6421] = 476, - [6422] = 479, - [6423] = 6423, - [6424] = 473, - [6425] = 480, - [6426] = 469, - [6427] = 481, - [6428] = 471, - [6429] = 6429, - [6430] = 482, + [6417] = 477, + [6418] = 489, + [6419] = 478, + [6420] = 479, + [6421] = 2805, + [6422] = 480, + [6423] = 474, + [6424] = 489, + [6425] = 6425, + [6426] = 481, + [6427] = 6427, + [6428] = 2813, + [6429] = 482, + [6430] = 6430, [6431] = 483, - [6432] = 484, - [6433] = 6433, - [6434] = 1673, - [6435] = 6435, - [6436] = 2587, - [6437] = 6437, - [6438] = 1468, - [6439] = 6439, - [6440] = 6440, + [6432] = 469, + [6433] = 473, + [6434] = 482, + [6435] = 483, + [6436] = 6436, + [6437] = 1565, + [6438] = 484, + [6439] = 478, + [6440] = 469, [6441] = 6441, [6442] = 6442, [6443] = 6443, [6444] = 6444, - [6445] = 470, - [6446] = 478, - [6447] = 486, - [6448] = 6448, - [6449] = 487, + [6445] = 471, + [6446] = 6446, + [6447] = 2814, + [6448] = 485, + [6449] = 476, [6450] = 6450, - [6451] = 6450, - [6452] = 6450, + [6451] = 6451, + [6452] = 6451, [6453] = 6453, - [6454] = 6450, - [6455] = 6455, - [6456] = 6456, - [6457] = 6457, - [6458] = 6458, - [6459] = 6450, - [6460] = 6457, - [6461] = 6450, - [6462] = 6462, - [6463] = 6457, - [6464] = 6464, - [6465] = 6457, - [6466] = 6466, - [6467] = 6450, - [6468] = 6468, - [6469] = 6457, - [6470] = 6457, - [6471] = 6450, + [6454] = 6451, + [6455] = 6453, + [6456] = 6451, + [6457] = 475, + [6458] = 6453, + [6459] = 6451, + [6460] = 6453, + [6461] = 6451, + [6462] = 6451, + [6463] = 476, + [6464] = 6453, + [6465] = 6465, + [6466] = 493, + [6467] = 6467, + [6468] = 493, + [6469] = 6453, + [6470] = 6453, + [6471] = 6453, [6472] = 6472, - [6473] = 6473, - [6474] = 6457, - [6475] = 6475, - [6476] = 6457, - [6477] = 6361, + [6473] = 6453, + [6474] = 6474, + [6475] = 6453, + [6476] = 6476, + [6477] = 6453, [6478] = 6478, - [6479] = 472, - [6480] = 6457, - [6481] = 6457, - [6482] = 6482, - [6483] = 6450, - [6484] = 491, - [6485] = 474, - [6486] = 6457, - [6487] = 6450, - [6488] = 6488, - [6489] = 6457, + [6479] = 6453, + [6480] = 6480, + [6481] = 6453, + [6482] = 6453, + [6483] = 6453, + [6484] = 6453, + [6485] = 6453, + [6486] = 6314, + [6487] = 6451, + [6488] = 6450, + [6489] = 6489, [6490] = 6490, - [6491] = 6457, - [6492] = 491, - [6493] = 6493, - [6494] = 6450, - [6495] = 6457, - [6496] = 6457, - [6497] = 6450, - [6498] = 6498, - [6499] = 6499, - [6500] = 6500, - [6501] = 6501, - [6502] = 6502, - [6503] = 6450, - [6504] = 6504, - [6505] = 6450, - [6506] = 6450, - [6507] = 6450, - [6508] = 6450, - [6509] = 6450, - [6510] = 6361, - [6511] = 6511, - [6512] = 6512, - [6513] = 6513, - [6514] = 6450, - [6515] = 6450, - [6516] = 6450, - [6517] = 6450, - [6518] = 6518, - [6519] = 6450, - [6520] = 6462, + [6491] = 6453, + [6492] = 6453, + [6493] = 6453, + [6494] = 6494, + [6495] = 6453, + [6496] = 6496, + [6497] = 6451, + [6498] = 6453, + [6499] = 6453, + [6500] = 6453, + [6501] = 6453, + [6502] = 6453, + [6503] = 6503, + [6504] = 6450, + [6505] = 6505, + [6506] = 6506, + [6507] = 6453, + [6508] = 6508, + [6509] = 6509, + [6510] = 6451, + [6511] = 478, + [6512] = 6453, + [6513] = 6453, + [6514] = 480, + [6515] = 2594, + [6516] = 2595, + [6517] = 6453, + [6518] = 481, + [6519] = 6453, + [6520] = 6520, [6521] = 6521, - [6522] = 6450, - [6523] = 6450, - [6524] = 2495, - [6525] = 2487, - [6526] = 6450, - [6527] = 6450, - [6528] = 473, - [6529] = 6450, - [6530] = 6450, - [6531] = 6450, + [6522] = 6474, + [6523] = 6453, + [6524] = 6524, + [6525] = 6525, + [6526] = 6526, + [6527] = 6453, + [6528] = 6478, + [6529] = 6529, + [6530] = 6530, + [6531] = 6531, [6532] = 6532, - [6533] = 469, - [6534] = 6499, - [6535] = 471, - [6536] = 6450, - [6537] = 6504, - [6538] = 2337, - [6539] = 6504, - [6540] = 6450, - [6541] = 6541, - [6542] = 6450, - [6543] = 6543, - [6544] = 6450, - [6545] = 6545, + [6533] = 6533, + [6534] = 6453, + [6535] = 6535, + [6536] = 6451, + [6537] = 6537, + [6538] = 6538, + [6539] = 6539, + [6540] = 6453, + [6541] = 6453, + [6542] = 6453, + [6543] = 6453, + [6544] = 6453, + [6545] = 6453, [6546] = 6546, - [6547] = 6450, - [6548] = 6450, - [6549] = 6450, - [6550] = 6450, - [6551] = 6551, - [6552] = 6450, - [6553] = 6450, + [6547] = 6547, + [6548] = 6453, + [6549] = 6474, + [6550] = 6453, + [6551] = 6451, + [6552] = 2608, + [6553] = 6553, [6554] = 6450, - [6555] = 6462, - [6556] = 6457, - [6557] = 6450, - [6558] = 6450, - [6559] = 6457, - [6560] = 6450, + [6555] = 6453, + [6556] = 6556, + [6557] = 6453, + [6558] = 6453, + [6559] = 6453, + [6560] = 6453, [6561] = 6561, - [6562] = 6499, - [6563] = 6450, - [6564] = 6450, + [6562] = 6562, + [6563] = 6453, + [6564] = 6453, [6565] = 6565, - [6566] = 6450, + [6566] = 6453, [6567] = 6567, - [6568] = 6450, - [6569] = 473, - [6570] = 480, - [6571] = 6571, - [6572] = 6450, - [6573] = 6462, - [6574] = 469, - [6575] = 6575, - [6576] = 481, - [6577] = 471, - [6578] = 6578, - [6579] = 6579, - [6580] = 6580, - [6581] = 6450, - [6582] = 6450, - [6583] = 6462, - [6584] = 6584, - [6585] = 6585, - [6586] = 6450, - [6587] = 6457, - [6588] = 6457, + [6568] = 6453, + [6569] = 6451, + [6570] = 6570, + [6571] = 6453, + [6572] = 6572, + [6573] = 6453, + [6574] = 6451, + [6575] = 6451, + [6576] = 6576, + [6577] = 6314, + [6578] = 6451, + [6579] = 478, + [6580] = 469, + [6581] = 6478, + [6582] = 480, + [6583] = 484, + [6584] = 6450, + [6585] = 481, + [6586] = 6586, + [6587] = 6453, + [6588] = 6450, [6589] = 6589, - [6590] = 6590, - [6591] = 482, - [6592] = 6462, - [6593] = 483, - [6594] = 484, - [6595] = 6457, - [6596] = 6450, - [6597] = 6450, - [6598] = 6450, - [6599] = 6599, - [6600] = 6450, + [6590] = 6453, + [6591] = 6451, + [6592] = 6451, + [6593] = 6453, + [6594] = 6594, + [6595] = 6451, + [6596] = 6596, + [6597] = 6453, + [6598] = 6598, + [6599] = 6453, + [6600] = 6451, [6601] = 6450, - [6602] = 6602, - [6603] = 6450, - [6604] = 6462, + [6602] = 485, + [6603] = 486, + [6604] = 470, [6605] = 6605, - [6606] = 6450, - [6607] = 6457, - [6608] = 6457, + [6606] = 6451, + [6607] = 2449, + [6608] = 6453, [6609] = 6609, - [6610] = 2520, + [6610] = 6610, [6611] = 6611, [6612] = 6450, - [6613] = 6450, + [6613] = 6453, [6614] = 6614, [6615] = 6615, - [6616] = 6450, - [6617] = 6617, - [6618] = 6462, - [6619] = 6619, + [6616] = 6451, + [6617] = 6451, + [6618] = 6453, + [6619] = 6453, [6620] = 6620, [6621] = 6621, [6622] = 6622, - [6623] = 2565, - [6624] = 6457, - [6625] = 6450, - [6626] = 6450, - [6627] = 6450, - [6628] = 6439, - [6629] = 6629, + [6623] = 6453, + [6624] = 6624, + [6625] = 6453, + [6626] = 6453, + [6627] = 2607, + [6628] = 6628, + [6629] = 6389, [6630] = 6630, - [6631] = 2588, - [6632] = 6630, + [6631] = 6442, + [6632] = 6632, [6633] = 6633, - [6634] = 6633, - [6635] = 4536, - [6636] = 6633, - [6637] = 6633, + [6634] = 471, + [6635] = 6628, + [6636] = 6636, + [6637] = 6628, [6638] = 6638, - [6639] = 6639, - [6640] = 6640, - [6641] = 6633, - [6642] = 485, - [6643] = 2596, - [6644] = 6644, + [6639] = 6628, + [6640] = 478, + [6641] = 2805, + [6642] = 6642, + [6643] = 6643, + [6644] = 4635, [6645] = 6645, - [6646] = 6429, - [6647] = 4509, - [6648] = 469, - [6649] = 4514, + [6646] = 2489, + [6647] = 6628, + [6648] = 480, + [6649] = 6628, [6650] = 6633, - [6651] = 6633, - [6652] = 6633, + [6651] = 6642, + [6652] = 6401, [6653] = 6653, - [6654] = 6644, - [6655] = 6633, - [6656] = 6633, - [6657] = 6633, - [6658] = 6658, - [6659] = 6429, - [6660] = 6660, - [6661] = 6661, - [6662] = 4585, - [6663] = 6639, - [6664] = 6633, - [6665] = 6665, - [6666] = 6639, - [6667] = 6639, - [6668] = 6639, - [6669] = 6633, - [6670] = 6670, - [6671] = 470, - [6672] = 6633, - [6673] = 6633, - [6674] = 471, - [6675] = 6633, - [6676] = 6644, - [6677] = 6677, - [6678] = 2512, - [6679] = 6633, - [6680] = 6630, - [6681] = 6633, - [6682] = 6653, - [6683] = 6683, - [6684] = 6653, - [6685] = 6439, - [6686] = 6395, - [6687] = 6639, - [6688] = 2508, - [6689] = 6630, - [6690] = 6653, - [6691] = 473, - [6692] = 6395, - [6693] = 2595, - [6694] = 6694, - [6695] = 6633, - [6696] = 6696, - [6697] = 6633, - [6698] = 6644, - [6699] = 2587, - [6700] = 6700, - [6701] = 6633, - [6702] = 6633, - [6703] = 6633, + [6654] = 6628, + [6655] = 6655, + [6656] = 6628, + [6657] = 6628, + [6658] = 6630, + [6659] = 6633, + [6660] = 2602, + [6661] = 6628, + [6662] = 6628, + [6663] = 6663, + [6664] = 6642, + [6665] = 2813, + [6666] = 6666, + [6667] = 6628, + [6668] = 6668, + [6669] = 6669, + [6670] = 474, + [6671] = 6401, + [6672] = 6628, + [6673] = 2808, + [6674] = 6628, + [6675] = 6675, + [6676] = 4578, + [6677] = 2814, + [6678] = 6642, + [6679] = 6630, + [6680] = 6628, + [6681] = 6642, + [6682] = 481, + [6683] = 6645, + [6684] = 6645, + [6685] = 6685, + [6686] = 6628, + [6687] = 6628, + [6688] = 6630, + [6689] = 6628, + [6690] = 6633, + [6691] = 6691, + [6692] = 4558, + [6693] = 6628, + [6694] = 6642, + [6695] = 6628, + [6696] = 6628, + [6697] = 4580, + [6698] = 6628, + [6699] = 6442, + [6700] = 6628, + [6701] = 6389, + [6702] = 6702, + [6703] = 6645, [6704] = 6704, [6705] = 6705, [6706] = 6706, [6707] = 6707, [6708] = 6708, - [6709] = 6706, + [6709] = 6709, [6710] = 6710, [6711] = 6711, [6712] = 6712, - [6713] = 6713, - [6714] = 6705, + [6713] = 6709, + [6714] = 6714, [6715] = 6715, - [6716] = 6716, - [6717] = 6716, - [6718] = 6718, + [6716] = 6714, + [6717] = 6717, + [6718] = 6715, [6719] = 6710, - [6720] = 6720, - [6721] = 6711, - [6722] = 6716, - [6723] = 6718, - [6724] = 6724, - [6725] = 6705, - [6726] = 6711, - [6727] = 6706, + [6720] = 6715, + [6721] = 6712, + [6722] = 6709, + [6723] = 6723, + [6724] = 6715, + [6725] = 6723, + [6726] = 6726, + [6727] = 6727, [6728] = 6710, [6729] = 6729, - [6730] = 6718, - [6731] = 6706, - [6732] = 6732, - [6733] = 6705, + [6730] = 6730, + [6731] = 6717, + [6732] = 6712, + [6733] = 6709, [6734] = 6734, - [6735] = 6732, - [6736] = 6716, + [6735] = 6714, + [6736] = 6714, [6737] = 6710, - [6738] = 6718, - [6739] = 6706, - [6740] = 6711, - [6741] = 6716, - [6742] = 6711, - [6743] = 6732, - [6744] = 6705, - [6745] = 6706, + [6738] = 6723, + [6739] = 6715, + [6740] = 6714, + [6741] = 6717, + [6742] = 6712, + [6743] = 6709, + [6744] = 6715, + [6745] = 6745, [6746] = 6710, - [6747] = 6706, - [6748] = 6718, - [6749] = 6749, - [6750] = 6732, - [6751] = 6711, - [6752] = 6716, - [6753] = 6705, - [6754] = 6718, + [6747] = 6747, + [6748] = 6723, + [6749] = 6715, + [6750] = 6723, + [6751] = 6751, + [6752] = 6717, + [6753] = 6753, + [6754] = 6717, [6755] = 6710, - [6756] = 6756, - [6757] = 6711, - [6758] = 6705, - [6759] = 6759, - [6760] = 6705, - [6761] = 6706, - [6762] = 6706, - [6763] = 6763, + [6756] = 6753, + [6757] = 6757, + [6758] = 6712, + [6759] = 6714, + [6760] = 6715, + [6761] = 6714, + [6762] = 6729, + [6763] = 6712, [6764] = 6710, - [6765] = 6732, - [6766] = 6766, - [6767] = 6767, - [6768] = 6768, - [6769] = 6769, - [6770] = 6716, - [6771] = 6732, - [6772] = 6772, + [6765] = 6709, + [6766] = 6734, + [6767] = 6717, + [6768] = 6712, + [6769] = 6709, + [6770] = 6714, + [6771] = 6723, + [6772] = 6715, [6773] = 6710, - [6774] = 6732, - [6775] = 6767, + [6774] = 6723, + [6775] = 6715, [6776] = 6776, - [6777] = 6777, - [6778] = 6732, - [6779] = 6779, + [6777] = 6715, + [6778] = 6778, + [6779] = 6717, [6780] = 6710, - [6781] = 6716, - [6782] = 6718, - [6783] = 6732, - [6784] = 6784, - [6785] = 6785, - [6786] = 6718, + [6781] = 6781, + [6782] = 6714, + [6783] = 6709, + [6784] = 6717, + [6785] = 6715, + [6786] = 6786, [6787] = 6710, - [6788] = 6716, - [6789] = 6789, - [6790] = 6790, - [6791] = 6711, - [6792] = 6792, - [6793] = 6705, + [6788] = 6714, + [6789] = 6715, + [6790] = 6717, + [6791] = 6717, + [6792] = 6712, + [6793] = 6712, [6794] = 6710, - [6795] = 6706, - [6796] = 6718, - [6797] = 6716, - [6798] = 6732, + [6795] = 6709, + [6796] = 6745, + [6797] = 6712, + [6798] = 6723, [6799] = 6799, - [6800] = 6732, + [6800] = 6709, [6801] = 6710, - [6802] = 6716, - [6803] = 6803, - [6804] = 6716, + [6802] = 6747, + [6803] = 6715, + [6804] = 6723, [6805] = 6805, - [6806] = 6718, - [6807] = 6763, + [6806] = 6806, + [6807] = 6723, [6808] = 6710, - [6809] = 6711, - [6810] = 6716, + [6809] = 6712, + [6810] = 6723, [6811] = 6811, [6812] = 6812, - [6813] = 6813, + [6813] = 6709, [6814] = 6814, [6815] = 6710, - [6816] = 6718, - [6817] = 6817, - [6818] = 6711, - [6819] = 6716, - [6820] = 6734, - [6821] = 6769, + [6816] = 6714, + [6817] = 6715, + [6818] = 6818, + [6819] = 6714, + [6820] = 6715, + [6821] = 6821, [6822] = 6710, - [6823] = 6823, - [6824] = 6718, - [6825] = 6716, - [6826] = 6711, - [6827] = 6705, - [6828] = 6706, + [6823] = 6708, + [6824] = 6717, + [6825] = 6712, + [6826] = 6709, + [6827] = 6709, + [6828] = 6717, [6829] = 6710, - [6830] = 6830, - [6831] = 6831, - [6832] = 6711, - [6833] = 6718, - [6834] = 6732, - [6835] = 6705, + [6830] = 6712, + [6831] = 6709, + [6832] = 6832, + [6833] = 6753, + [6834] = 6834, + [6835] = 6706, [6836] = 6710, [6837] = 6711, - [6838] = 6705, - [6839] = 6706, - [6840] = 6705, - [6841] = 6706, - [6842] = 6706, + [6838] = 6723, + [6839] = 6714, + [6840] = 6840, + [6841] = 6723, + [6842] = 6842, [6843] = 6710, - [6844] = 6732, - [6845] = 6718, - [6846] = 6716, - [6847] = 6716, - [6848] = 6718, - [6849] = 6732, + [6844] = 6705, + [6845] = 6714, + [6846] = 6715, + [6847] = 6717, + [6848] = 6717, + [6849] = 6849, [6850] = 6710, - [6851] = 6711, - [6852] = 6705, - [6853] = 6732, - [6854] = 6706, - [6855] = 6718, - [6856] = 6856, + [6851] = 6851, + [6852] = 6852, + [6853] = 6712, + [6854] = 6757, + [6855] = 6855, + [6856] = 6709, [6857] = 6710, - [6858] = 6732, + [6858] = 6712, [6859] = 6859, - [6860] = 6710, - [6861] = 6712, - [6862] = 6862, - [6863] = 6716, + [6860] = 6860, + [6861] = 6714, + [6862] = 6715, + [6863] = 6863, [6864] = 6710, - [6865] = 6716, - [6866] = 6718, - [6867] = 6718, - [6868] = 6716, - [6869] = 6718, - [6870] = 6870, + [6865] = 6865, + [6866] = 6866, + [6867] = 6714, + [6868] = 6714, + [6869] = 6715, + [6870] = 6714, [6871] = 6710, - [6872] = 6711, - [6873] = 6716, - [6874] = 6718, - [6875] = 6705, - [6876] = 6711, - [6877] = 6711, + [6872] = 6715, + [6873] = 6717, + [6874] = 6717, + [6875] = 6712, + [6876] = 6709, + [6877] = 6712, [6878] = 6710, [6879] = 6879, - [6880] = 6823, - [6881] = 6711, - [6882] = 6705, - [6883] = 6706, - [6884] = 6705, + [6880] = 6723, + [6881] = 6881, + [6882] = 6717, + [6883] = 6712, + [6884] = 6709, [6885] = 6710, - [6886] = 6705, - [6887] = 6732, - [6888] = 6888, - [6889] = 6706, - [6890] = 6706, - [6891] = 6813, + [6886] = 6709, + [6887] = 6706, + [6888] = 6714, + [6889] = 6723, + [6890] = 6890, + [6891] = 6714, [6892] = 6710, - [6893] = 6705, - [6894] = 6732, - [6895] = 6895, - [6896] = 6706, - [6897] = 6716, - [6898] = 6898, + [6893] = 6715, + [6894] = 6710, + [6895] = 6717, + [6896] = 6712, + [6897] = 6723, + [6898] = 6709, [6899] = 6710, - [6900] = 6706, - [6901] = 6716, - [6902] = 6718, - [6903] = 6718, - [6904] = 6711, - [6905] = 6705, + [6900] = 6900, + [6901] = 6715, + [6902] = 6723, + [6903] = 6903, + [6904] = 6723, + [6905] = 6717, [6906] = 6710, - [6907] = 6706, - [6908] = 6732, - [6909] = 6732, - [6910] = 6711, - [6911] = 6732, - [6912] = 6732, + [6907] = 6907, + [6908] = 6712, + [6909] = 6909, + [6910] = 6910, + [6911] = 6709, + [6912] = 6912, [6913] = 6710, - [6914] = 6711, - [6915] = 6716, - [6916] = 6718, - [6917] = 6716, - [6918] = 6718, - [6919] = 6817, + [6914] = 6723, + [6915] = 6715, + [6916] = 6714, + [6917] = 6714, + [6918] = 6715, + [6919] = 6919, [6920] = 6710, - [6921] = 6888, - [6922] = 6767, - [6923] = 6711, - [6924] = 6716, - [6925] = 6895, - [6926] = 6718, + [6921] = 6717, + [6922] = 6712, + [6923] = 6709, + [6924] = 6924, + [6925] = 6715, + [6926] = 6926, [6927] = 6710, - [6928] = 6928, - [6929] = 6711, - [6930] = 6705, - [6931] = 6706, - [6932] = 6814, - [6933] = 6705, + [6928] = 6723, + [6929] = 6714, + [6930] = 6717, + [6931] = 6717, + [6932] = 6729, + [6933] = 6712, [6934] = 6710, - [6935] = 6732, - [6936] = 6706, - [6937] = 6817, - [6938] = 6938, - [6939] = 6716, - [6940] = 6711, + [6935] = 6709, + [6936] = 6717, + [6937] = 6723, + [6938] = 6723, + [6939] = 6723, + [6940] = 6940, [6941] = 6710, - [6942] = 6732, - [6943] = 6718, - [6944] = 6716, - [6945] = 6718, - [6946] = 6946, - [6947] = 6711, + [6942] = 6715, + [6943] = 6734, + [6944] = 6714, + [6945] = 6717, + [6946] = 6715, + [6947] = 6712, [6948] = 6710, - [6949] = 6705, - [6950] = 6706, - [6951] = 6951, - [6952] = 6729, - [6953] = 6759, - [6954] = 6954, + [6949] = 6949, + [6950] = 6715, + [6951] = 6717, + [6952] = 6757, + [6953] = 6706, + [6954] = 6712, [6955] = 6710, - [6956] = 6705, - [6957] = 6716, - [6958] = 6711, - [6959] = 6705, + [6956] = 6709, + [6957] = 6723, + [6958] = 6723, + [6959] = 6723, [6960] = 6960, - [6961] = 6718, + [6961] = 6961, [6962] = 6710, - [6963] = 6706, - [6964] = 6705, - [6965] = 6965, - [6966] = 6711, - [6967] = 6705, - [6968] = 6706, + [6963] = 6963, + [6964] = 6717, + [6965] = 6712, + [6966] = 6714, + [6967] = 6715, + [6968] = 6726, [6969] = 6710, - [6970] = 6970, - [6971] = 6706, - [6972] = 6732, - [6973] = 6732, - [6974] = 6705, - [6975] = 6975, + [6970] = 6712, + [6971] = 6714, + [6972] = 6714, + [6973] = 6715, + [6974] = 6717, + [6975] = 6714, [6976] = 6710, - [6977] = 6977, - [6978] = 6732, - [6979] = 6856, - [6980] = 6980, - [6981] = 6859, - [6982] = 6706, + [6977] = 6715, + [6978] = 6714, + [6979] = 6717, + [6980] = 6712, + [6981] = 6709, + [6982] = 6715, [6983] = 6710, - [6984] = 6716, - [6985] = 6718, - [6986] = 6711, - [6987] = 6776, - [6988] = 6777, - [6989] = 6732, + [6984] = 6712, + [6985] = 6717, + [6986] = 6712, + [6987] = 6709, + [6988] = 6712, + [6989] = 6717, [6990] = 6710, - [6991] = 6960, - [6992] = 6716, - [6993] = 6718, - [6994] = 6711, - [6995] = 6711, - [6996] = 6785, + [6991] = 6723, + [6992] = 6717, + [6993] = 6712, + [6994] = 6709, + [6995] = 6709, + [6996] = 6849, [6997] = 6710, - [6998] = 6705, - [6999] = 6706, - [7000] = 6789, - [7001] = 7001, - [7002] = 6710, - [7003] = 6792, + [6998] = 6998, + [6999] = 6709, + [7000] = 6814, + [7001] = 6709, + [7002] = 7002, + [7003] = 7003, [7004] = 6710, - [7005] = 6705, - [7006] = 6732, - [7007] = 6706, - [7008] = 6706, - [7009] = 6712, - [7010] = 7010, + [7005] = 6714, + [7006] = 6723, + [7007] = 6714, + [7008] = 7008, + [7009] = 6714, + [7010] = 6715, [7011] = 6710, - [7012] = 6732, - [7013] = 6716, - [7014] = 6803, - [7015] = 6732, - [7016] = 6805, - [7017] = 6705, + [7012] = 6805, + [7013] = 6723, + [7014] = 7014, + [7015] = 6715, + [7016] = 6707, + [7017] = 7003, [7018] = 6710, - [7019] = 6763, - [7020] = 6706, - [7021] = 6732, - [7022] = 6718, - [7023] = 6813, - [7024] = 6814, + [7019] = 6805, + [7020] = 6806, + [7021] = 6723, + [7022] = 6710, + [7023] = 6717, + [7024] = 6712, [7025] = 6710, - [7026] = 6716, - [7027] = 6718, - [7028] = 7028, - [7029] = 6711, - [7030] = 6734, - [7031] = 6769, + [7026] = 6709, + [7027] = 7027, + [7028] = 6814, + [7029] = 6919, + [7030] = 7030, + [7031] = 6818, [7032] = 6710, - [7033] = 6823, - [7034] = 6705, - [7035] = 6706, - [7036] = 6716, - [7037] = 7037, - [7038] = 6732, + [7033] = 6799, + [7034] = 6708, + [7035] = 6821, + [7036] = 7036, + [7037] = 6723, + [7038] = 6715, [7039] = 6710, - [7040] = 6830, - [7041] = 6831, - [7042] = 6718, - [7043] = 6716, - [7044] = 6711, - [7045] = 7045, + [7040] = 6715, + [7041] = 6717, + [7042] = 6712, + [7043] = 6709, + [7044] = 6712, + [7045] = 6832, [7046] = 6710, - [7047] = 6716, - [7048] = 6705, - [7049] = 6718, - [7050] = 6862, - [7051] = 6711, - [7052] = 6705, + [7047] = 6714, + [7048] = 6834, + [7049] = 6714, + [7050] = 6711, + [7051] = 6715, + [7052] = 6712, [7053] = 6710, - [7054] = 6716, - [7055] = 6718, - [7056] = 6706, - [7057] = 6706, - [7058] = 6711, - [7059] = 6870, + [7054] = 6729, + [7055] = 6842, + [7056] = 6705, + [7057] = 6734, + [7058] = 6717, + [7059] = 6712, [7060] = 6710, - [7061] = 6705, - [7062] = 6706, - [7063] = 6718, - [7064] = 6711, - [7065] = 6732, - [7066] = 6792, + [7061] = 6709, + [7062] = 6849, + [7063] = 6851, + [7064] = 6852, + [7065] = 6714, + [7066] = 6745, [7067] = 6710, - [7068] = 6732, - [7069] = 6732, - [7070] = 6732, - [7071] = 6716, - [7072] = 6718, - [7073] = 6716, + [7068] = 6747, + [7069] = 6715, + [7070] = 6712, + [7071] = 6859, + [7072] = 6860, + [7073] = 6753, [7074] = 6710, - [7075] = 6711, - [7076] = 6716, - [7077] = 6718, - [7078] = 6705, - [7079] = 6711, - [7080] = 6705, + [7075] = 7075, + [7076] = 6717, + [7077] = 6818, + [7078] = 6723, + [7079] = 6757, + [7080] = 6712, [7081] = 6710, - [7082] = 6718, - [7083] = 6706, - [7084] = 6711, - [7085] = 6718, - [7086] = 6716, - [7087] = 6718, + [7082] = 6717, + [7083] = 6806, + [7084] = 6717, + [7085] = 6723, + [7086] = 6714, + [7087] = 6714, [7088] = 6710, - [7089] = 6732, - [7090] = 6716, - [7091] = 6718, - [7092] = 7092, - [7093] = 6859, - [7094] = 6711, - [7095] = 6705, - [7096] = 6711, - [7097] = 6710, - [7098] = 6705, - [7099] = 6705, - [7100] = 6706, - [7101] = 6706, - [7102] = 7102, - [7103] = 6767, - [7104] = 7104, - [7105] = 7105, - [7106] = 6732, - [7107] = 6716, - [7108] = 6718, - [7109] = 6711, - [7110] = 6711, - [7111] = 6705, - [7112] = 6817, - [7113] = 6705, - [7114] = 6706, - [7115] = 6888, - [7116] = 6895, - [7117] = 7117, - [7118] = 6716, - [7119] = 6718, - [7120] = 6716, - [7121] = 6711, - [7122] = 6705, - [7123] = 6706, - [7124] = 6716, - [7125] = 6718, - [7126] = 6732, - [7127] = 6711, - [7128] = 6705, - [7129] = 7129, + [7089] = 6712, + [7090] = 6715, + [7091] = 6832, + [7092] = 6717, + [7093] = 6712, + [7094] = 6709, + [7095] = 6709, + [7096] = 6851, + [7097] = 6715, + [7098] = 6723, + [7099] = 6714, + [7100] = 6717, + [7101] = 6949, + [7102] = 6709, + [7103] = 6712, + [7104] = 6709, + [7105] = 6704, + [7106] = 6723, + [7107] = 6723, + [7108] = 6723, + [7109] = 6709, + [7110] = 7110, + [7111] = 6715, + [7112] = 7112, + [7113] = 6717, + [7114] = 6709, + [7115] = 6714, + [7116] = 6715, + [7117] = 6745, + [7118] = 6723, + [7119] = 6717, + [7120] = 6712, + [7121] = 6709, + [7122] = 6709, + [7123] = 6709, + [7124] = 7124, + [7125] = 7125, + [7126] = 7126, + [7127] = 7127, + [7128] = 6706, + [7129] = 6723, [7130] = 7130, - [7131] = 6732, - [7132] = 7132, - [7133] = 6729, - [7134] = 7134, - [7135] = 6716, - [7136] = 6759, - [7137] = 7137, - [7138] = 6718, - [7139] = 6732, - [7140] = 6779, - [7141] = 7141, - [7142] = 6711, - [7143] = 7143, - [7144] = 6856, - [7145] = 7145, - [7146] = 6960, - [7147] = 6705, - [7148] = 6716, - [7149] = 6718, - [7150] = 6928, - [7151] = 6716, - [7152] = 6711, - [7153] = 6776, - [7154] = 6777, - [7155] = 6732, - [7156] = 6705, - [7157] = 6706, - [7158] = 7158, - [7159] = 6785, - [7160] = 6965, - [7161] = 6716, - [7162] = 6789, - [7163] = 7163, - [7164] = 6732, - [7165] = 6792, - [7166] = 7166, - [7167] = 6718, - [7168] = 6716, - [7169] = 6718, - [7170] = 6718, - [7171] = 6711, - [7172] = 7172, - [7173] = 6803, - [7174] = 6705, - [7175] = 6805, - [7176] = 6716, - [7177] = 6763, - [7178] = 6718, - [7179] = 7179, - [7180] = 6813, - [7181] = 6814, - [7182] = 7182, - [7183] = 6711, - [7184] = 6716, - [7185] = 6718, - [7186] = 6705, - [7187] = 6734, - [7188] = 6769, - [7189] = 6823, - [7190] = 6711, - [7191] = 6705, - [7192] = 6711, - [7193] = 6718, - [7194] = 6711, - [7195] = 6830, - [7196] = 6831, - [7197] = 6711, - [7198] = 6705, - [7199] = 6716, - [7200] = 6718, - [7201] = 6706, - [7202] = 6711, - [7203] = 6705, - [7204] = 6705, - [7205] = 6965, - [7206] = 6706, - [7207] = 6706, - [7208] = 6732, - [7209] = 6706, - [7210] = 6732, - [7211] = 6732, - [7212] = 7212, - [7213] = 6716, - [7214] = 7214, - [7215] = 6718, - [7216] = 7216, - [7217] = 6711, - [7218] = 6705, - [7219] = 7219, - [7220] = 6732, - [7221] = 7221, - [7222] = 6777, - [7223] = 6711, - [7224] = 7224, - [7225] = 6767, - [7226] = 6705, - [7227] = 6711, - [7228] = 6716, - [7229] = 6716, - [7230] = 6718, - [7231] = 6785, - [7232] = 6817, - [7233] = 6718, - [7234] = 6705, - [7235] = 6711, - [7236] = 6705, - [7237] = 6716, - [7238] = 6716, - [7239] = 6718, - [7240] = 6706, - [7241] = 6711, - [7242] = 6705, - [7243] = 6706, - [7244] = 6718, + [7131] = 6717, + [7132] = 6712, + [7133] = 6709, + [7134] = 6723, + [7135] = 6723, + [7136] = 6714, + [7137] = 6811, + [7138] = 6723, + [7139] = 6726, + [7140] = 6949, + [7141] = 6865, + [7142] = 6712, + [7143] = 6714, + [7144] = 6707, + [7145] = 6881, + [7146] = 6714, + [7147] = 6715, + [7148] = 6714, + [7149] = 6714, + [7150] = 6855, + [7151] = 6715, + [7152] = 6717, + [7153] = 6717, + [7154] = 6712, + [7155] = 6709, + [7156] = 6712, + [7157] = 6709, + [7158] = 6747, + [7159] = 6715, + [7160] = 6723, + [7161] = 6714, + [7162] = 6715, + [7163] = 6714, + [7164] = 7164, + [7165] = 6715, + [7166] = 7003, + [7167] = 6717, + [7168] = 6712, + [7169] = 6710, + [7170] = 6709, + [7171] = 7171, + [7172] = 6717, + [7173] = 6712, + [7174] = 6709, + [7175] = 6723, + [7176] = 6821, + [7177] = 6714, + [7178] = 6709, + [7179] = 6805, + [7180] = 6806, + [7181] = 6723, + [7182] = 6715, + [7183] = 6715, + [7184] = 6717, + [7185] = 6712, + [7186] = 6814, + [7187] = 6729, + [7188] = 6734, + [7189] = 6818, + [7190] = 6714, + [7191] = 6726, + [7192] = 6715, + [7193] = 6717, + [7194] = 6723, + [7195] = 6745, + [7196] = 6747, + [7197] = 6715, + [7198] = 6723, + [7199] = 6832, + [7200] = 7200, + [7201] = 6834, + [7202] = 6753, + [7203] = 6711, + [7204] = 6714, + [7205] = 6757, + [7206] = 6842, + [7207] = 6705, + [7208] = 6715, + [7209] = 6714, + [7210] = 6715, + [7211] = 6712, + [7212] = 6849, + [7213] = 6851, + [7214] = 6852, + [7215] = 6717, + [7216] = 6715, + [7217] = 6709, + [7218] = 6717, + [7219] = 6717, + [7220] = 6859, + [7221] = 6860, + [7222] = 6712, + [7223] = 6715, + [7224] = 6714, + [7225] = 6717, + [7226] = 6717, + [7227] = 6715, + [7228] = 6712, + [7229] = 7229, + [7230] = 6859, + [7231] = 7231, + [7232] = 6860, + [7233] = 7233, + [7234] = 6723, + [7235] = 6714, + [7236] = 6717, + [7237] = 7237, + [7238] = 6712, + [7239] = 6715, + [7240] = 6714, + [7241] = 6717, + [7242] = 7242, + [7243] = 6712, + [7244] = 6712, [7245] = 7245, - [7246] = 6716, - [7247] = 6711, - [7248] = 6888, - [7249] = 7249, - [7250] = 6705, - [7251] = 6716, - [7252] = 6718, - [7253] = 6895, - [7254] = 6718, - [7255] = 7255, - [7256] = 6711, - [7257] = 6732, - [7258] = 6732, - [7259] = 6710, - [7260] = 6776, - [7261] = 6777, - [7262] = 6732, - [7263] = 6705, - [7264] = 6706, - [7265] = 6732, - [7266] = 6813, - [7267] = 6814, - [7268] = 6716, - [7269] = 6732, - [7270] = 6718, - [7271] = 7271, - [7272] = 6711, - [7273] = 6859, - [7274] = 6716, - [7275] = 6705, - [7276] = 6706, - [7277] = 6729, - [7278] = 7137, - [7279] = 6718, - [7280] = 6711, - [7281] = 6779, - [7282] = 7141, - [7283] = 6711, - [7284] = 6705, - [7285] = 6856, - [7286] = 7145, - [7287] = 6711, - [7288] = 6705, - [7289] = 6706, - [7290] = 6928, - [7291] = 6705, - [7292] = 6732, - [7293] = 6716, - [7294] = 6718, - [7295] = 6716, - [7296] = 6711, - [7297] = 6705, - [7298] = 6759, - [7299] = 6718, - [7300] = 6716, - [7301] = 6711, + [7246] = 6714, + [7247] = 6709, + [7248] = 6706, + [7249] = 6723, + [7250] = 6715, + [7251] = 6709, + [7252] = 6714, + [7253] = 6717, + [7254] = 6709, + [7255] = 6726, + [7256] = 7256, + [7257] = 6723, + [7258] = 6712, + [7259] = 6717, + [7260] = 6709, + [7261] = 6710, + [7262] = 6714, + [7263] = 6715, + [7264] = 7264, + [7265] = 6717, + [7266] = 6712, + [7267] = 6709, + [7268] = 6715, + [7269] = 6723, + [7270] = 6714, + [7271] = 7003, + [7272] = 6723, + [7273] = 6723, + [7274] = 6723, + [7275] = 6723, + [7276] = 6811, + [7277] = 6714, + [7278] = 7278, + [7279] = 6949, + [7280] = 6865, + [7281] = 6717, + [7282] = 7282, + [7283] = 6707, + [7284] = 6881, + [7285] = 6714, + [7286] = 7286, + [7287] = 6715, + [7288] = 6855, + [7289] = 6712, + [7290] = 6709, + [7291] = 6717, + [7292] = 6712, + [7293] = 7293, + [7294] = 6712, + [7295] = 6805, + [7296] = 6806, + [7297] = 6723, + [7298] = 6709, + [7299] = 6714, + [7300] = 6717, + [7301] = 6842, [7302] = 6705, - [7303] = 6718, - [7304] = 6718, - [7305] = 6711, - [7306] = 6706, - [7307] = 6711, - [7308] = 6710, - [7309] = 6960, - [7310] = 6705, - [7311] = 6732, - [7312] = 6779, - [7313] = 6716, - [7314] = 6767, + [7303] = 7303, + [7304] = 6949, + [7305] = 6710, + [7306] = 6707, + [7307] = 6852, + [7308] = 6949, + [7309] = 7003, + [7310] = 6715, + [7311] = 6714, + [7312] = 6714, + [7313] = 6715, + [7314] = 6715, [7315] = 7315, - [7316] = 6711, - [7317] = 6862, - [7318] = 6779, - [7319] = 6817, - [7320] = 6705, - [7321] = 6870, - [7322] = 6718, - [7323] = 6718, - [7324] = 6718, - [7325] = 6711, - [7326] = 6716, - [7327] = 6718, - [7328] = 6705, - [7329] = 6711, - [7330] = 6705, - [7331] = 6706, - [7332] = 6705, - [7333] = 6706, - [7334] = 6706, - [7335] = 6706, - [7336] = 6711, - [7337] = 7337, - [7338] = 6856, - [7339] = 6705, - [7340] = 6789, - [7341] = 6767, - [7342] = 6965, - [7343] = 6706, - [7344] = 7344, - [7345] = 6732, - [7346] = 6716, - [7347] = 6776, - [7348] = 6777, - [7349] = 6732, - [7350] = 6718, - [7351] = 6711, - [7352] = 6711, - [7353] = 6705, - [7354] = 6706, - [7355] = 6710, - [7356] = 6856, - [7357] = 6859, - [7358] = 6710, - [7359] = 6716, + [7316] = 6723, + [7317] = 7317, + [7318] = 6706, + [7319] = 6714, + [7320] = 6715, + [7321] = 6714, + [7322] = 6717, + [7323] = 6717, + [7324] = 6715, + [7325] = 6715, + [7326] = 6712, + [7327] = 6714, + [7328] = 6715, + [7329] = 7329, + [7330] = 7330, + [7331] = 7331, + [7332] = 6710, + [7333] = 6717, + [7334] = 6712, + [7335] = 7335, + [7336] = 6706, + [7337] = 6710, + [7338] = 6709, + [7339] = 6714, + [7340] = 6715, + [7341] = 6726, + [7342] = 6842, + [7343] = 6712, + [7344] = 6717, + [7345] = 6712, + [7346] = 6717, + [7347] = 6714, + [7348] = 6715, + [7349] = 6712, + [7350] = 6717, + [7351] = 6712, + [7352] = 6709, + [7353] = 6723, + [7354] = 7354, + [7355] = 6726, + [7356] = 6712, + [7357] = 6709, + [7358] = 6919, + [7359] = 6717, [7360] = 6712, - [7361] = 6705, - [7362] = 6862, - [7363] = 6870, - [7364] = 6732, - [7365] = 6716, - [7366] = 6805, - [7367] = 6767, - [7368] = 6718, - [7369] = 7137, - [7370] = 6718, + [7361] = 6712, + [7362] = 6709, + [7363] = 6710, + [7364] = 6799, + [7365] = 6714, + [7366] = 6723, + [7367] = 7367, + [7368] = 6715, + [7369] = 6805, + [7370] = 6709, [7371] = 7371, - [7372] = 6817, - [7373] = 7373, - [7374] = 6716, - [7375] = 6859, - [7376] = 6859, - [7377] = 6711, - [7378] = 6718, - [7379] = 6710, - [7380] = 7137, - [7381] = 7381, - [7382] = 6705, - [7383] = 6779, - [7384] = 7141, - [7385] = 6711, - [7386] = 6732, - [7387] = 6856, - [7388] = 7145, - [7389] = 6716, - [7390] = 6718, - [7391] = 6710, - [7392] = 6928, - [7393] = 6711, - [7394] = 6705, - [7395] = 6706, - [7396] = 6888, - [7397] = 6895, - [7398] = 6711, - [7399] = 6705, - [7400] = 6705, - [7401] = 7141, - [7402] = 6706, - [7403] = 6817, - [7404] = 6732, - [7405] = 7405, - [7406] = 6706, - [7407] = 6729, - [7408] = 6706, - [7409] = 6759, - [7410] = 6779, - [7411] = 7141, - [7412] = 6856, - [7413] = 7145, - [7414] = 7414, - [7415] = 6732, - [7416] = 6928, - [7417] = 6960, - [7418] = 6706, - [7419] = 7419, - [7420] = 6965, - [7421] = 6710, - [7422] = 7145, - [7423] = 7423, - [7424] = 6705, - [7425] = 7425, - [7426] = 7426, - [7427] = 7427, - [7428] = 6732, - [7429] = 6732, - [7430] = 6803, - [7431] = 6732, - [7432] = 6716, - [7433] = 6716, - [7434] = 7141, - [7435] = 7141, - [7436] = 7141, - [7437] = 7141, - [7438] = 7141, - [7439] = 7141, - [7440] = 7141, - [7441] = 7141, - [7442] = 7141, - [7443] = 7141, - [7444] = 7141, - [7445] = 7141, - [7446] = 7141, - [7447] = 7141, - [7448] = 7141, - [7449] = 7141, - [7450] = 7141, - [7451] = 7141, - [7452] = 7141, - [7453] = 7141, - [7454] = 7141, - [7455] = 7141, - [7456] = 7141, - [7457] = 7141, - [7458] = 7141, - [7459] = 7141, - [7460] = 7141, - [7461] = 7141, - [7462] = 7141, - [7463] = 7141, - [7464] = 7141, - [7465] = 7141, - [7466] = 7141, - [7467] = 7141, - [7468] = 7141, - [7469] = 7141, - [7470] = 7141, - [7471] = 7141, - [7472] = 7141, - [7473] = 7141, - [7474] = 7141, - [7475] = 7141, - [7476] = 7141, - [7477] = 7141, - [7478] = 7141, - [7479] = 7141, - [7480] = 7141, - [7481] = 7141, - [7482] = 7141, - [7483] = 7141, - [7484] = 7141, - [7485] = 7141, - [7486] = 7141, - [7487] = 7141, - [7488] = 7141, - [7489] = 7141, - [7490] = 7141, - [7491] = 7141, - [7492] = 7141, - [7493] = 7381, - [7494] = 6718, - [7495] = 6718, - [7496] = 6831, - [7497] = 6711, - [7498] = 6705, - [7499] = 6779, - [7500] = 6776, - [7501] = 6706, - [7502] = 7381, - [7503] = 6710, - [7504] = 6716, - [7505] = 6830, - [7506] = 6767, + [7372] = 7003, + [7373] = 6717, + [7374] = 6723, + [7375] = 6707, + [7376] = 6811, + [7377] = 6806, + [7378] = 6723, + [7379] = 6949, + [7380] = 6865, + [7381] = 6710, + [7382] = 6717, + [7383] = 6707, + [7384] = 6881, + [7385] = 6712, + [7386] = 7003, + [7387] = 6710, + [7388] = 6855, + [7389] = 6712, + [7390] = 7390, + [7391] = 6919, + [7392] = 6714, + [7393] = 6715, + [7394] = 6723, + [7395] = 6717, + [7396] = 6712, + [7397] = 6714, + [7398] = 6706, + [7399] = 6715, + [7400] = 7400, + [7401] = 6717, + [7402] = 6709, + [7403] = 6726, + [7404] = 7404, + [7405] = 6712, + [7406] = 6949, + [7407] = 6865, + [7408] = 6707, + [7409] = 6881, + [7410] = 6714, + [7411] = 6715, + [7412] = 6855, + [7413] = 6709, + [7414] = 6717, + [7415] = 6712, + [7416] = 6799, + [7417] = 6714, + [7418] = 6723, + [7419] = 6715, + [7420] = 6710, + [7421] = 6714, + [7422] = 6715, + [7423] = 6717, + [7424] = 6717, + [7425] = 6712, + [7426] = 6712, + [7427] = 6709, + [7428] = 6708, + [7429] = 7429, + [7430] = 6865, + [7431] = 6865, + [7432] = 6865, + [7433] = 6865, + [7434] = 6865, + [7435] = 6865, + [7436] = 6865, + [7437] = 6865, + [7438] = 6865, + [7439] = 6865, + [7440] = 6865, + [7441] = 6865, + [7442] = 6865, + [7443] = 6865, + [7444] = 6865, + [7445] = 6865, + [7446] = 6865, + [7447] = 6865, + [7448] = 6865, + [7449] = 6865, + [7450] = 6865, + [7451] = 6865, + [7452] = 6865, + [7453] = 6865, + [7454] = 6865, + [7455] = 6865, + [7456] = 6865, + [7457] = 6865, + [7458] = 6865, + [7459] = 6865, + [7460] = 6865, + [7461] = 6865, + [7462] = 6865, + [7463] = 6865, + [7464] = 6865, + [7465] = 6865, + [7466] = 6865, + [7467] = 6865, + [7468] = 6865, + [7469] = 6865, + [7470] = 6865, + [7471] = 6865, + [7472] = 6865, + [7473] = 6865, + [7474] = 6865, + [7475] = 6865, + [7476] = 6865, + [7477] = 6865, + [7478] = 6865, + [7479] = 6865, + [7480] = 6865, + [7481] = 6865, + [7482] = 6865, + [7483] = 6865, + [7484] = 6865, + [7485] = 6865, + [7486] = 6865, + [7487] = 6865, + [7488] = 6865, + [7489] = 6704, + [7490] = 6723, + [7491] = 6714, + [7492] = 6714, + [7493] = 6715, + [7494] = 6715, + [7495] = 6717, + [7496] = 6712, + [7497] = 6709, + [7498] = 7498, + [7499] = 6717, + [7500] = 6704, + [7501] = 6712, + [7502] = 6714, + [7503] = 6715, + [7504] = 6834, + [7505] = 6717, + [7506] = 6712, [7507] = 7507, - [7508] = 6718, - [7509] = 7381, - [7510] = 7381, - [7511] = 7381, - [7512] = 7381, - [7513] = 7381, - [7514] = 7381, - [7515] = 7381, - [7516] = 7381, - [7517] = 7381, - [7518] = 7381, - [7519] = 7381, - [7520] = 7381, - [7521] = 7381, - [7522] = 7381, - [7523] = 7381, - [7524] = 7381, - [7525] = 7381, - [7526] = 7381, - [7527] = 7381, - [7528] = 7381, - [7529] = 7381, - [7530] = 7381, - [7531] = 7381, - [7532] = 7381, - [7533] = 7381, - [7534] = 7381, - [7535] = 7381, - [7536] = 7381, - [7537] = 7381, - [7538] = 7381, - [7539] = 7381, - [7540] = 7381, - [7541] = 7381, - [7542] = 7381, - [7543] = 7381, - [7544] = 7381, - [7545] = 7381, - [7546] = 7381, - [7547] = 7381, - [7548] = 7381, - [7549] = 7381, - [7550] = 7381, - [7551] = 7381, - [7552] = 7381, - [7553] = 7381, - [7554] = 7381, - [7555] = 7381, - [7556] = 7381, - [7557] = 7381, - [7558] = 7381, - [7559] = 7381, - [7560] = 7381, - [7561] = 7381, - [7562] = 7381, - [7563] = 7381, - [7564] = 7381, - [7565] = 7381, - [7566] = 7381, - [7567] = 7381, - [7568] = 7381, - [7569] = 7381, - [7570] = 6716, + [7508] = 6717, + [7509] = 6704, + [7510] = 6704, + [7511] = 6704, + [7512] = 6704, + [7513] = 6704, + [7514] = 6704, + [7515] = 6704, + [7516] = 6704, + [7517] = 6704, + [7518] = 6704, + [7519] = 6704, + [7520] = 6704, + [7521] = 6704, + [7522] = 6704, + [7523] = 6704, + [7524] = 6704, + [7525] = 6704, + [7526] = 6704, + [7527] = 6704, + [7528] = 6704, + [7529] = 6704, + [7530] = 6704, + [7531] = 6704, + [7532] = 6704, + [7533] = 6704, + [7534] = 6704, + [7535] = 6704, + [7536] = 6704, + [7537] = 6704, + [7538] = 6704, + [7539] = 6704, + [7540] = 6704, + [7541] = 6704, + [7542] = 6704, + [7543] = 6704, + [7544] = 6704, + [7545] = 6704, + [7546] = 6704, + [7547] = 6704, + [7548] = 6704, + [7549] = 6704, + [7550] = 6714, + [7551] = 6704, + [7552] = 6704, + [7553] = 6704, + [7554] = 6704, + [7555] = 6704, + [7556] = 6704, + [7557] = 6704, + [7558] = 6704, + [7559] = 6704, + [7560] = 6704, + [7561] = 6704, + [7562] = 6704, + [7563] = 6704, + [7564] = 6704, + [7565] = 6704, + [7566] = 6704, + [7567] = 6704, + [7568] = 6704, + [7569] = 6704, + [7570] = 6821, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -10407,10 +10414,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(397); END_STATE(); case 2: - if (lookahead == '\n') SKIP(412); + if (lookahead == '\n') SKIP(413); END_STATE(); case 3: - if (lookahead == '\n') SKIP(413); + if (lookahead == '\n') SKIP(412); END_STATE(); case 4: if (lookahead == '\n') SKIP(414); @@ -10456,19 +10463,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 7: - if (lookahead == '\n') SKIP(399); + if (lookahead == '\n') SKIP(415); END_STATE(); case 8: - if (lookahead == '\n') SKIP(415); + if (lookahead == '\n') SKIP(399); END_STATE(); case 9: if (lookahead == '\n') SKIP(416); END_STATE(); case 10: - if (lookahead == '\n') SKIP(400); + if (lookahead == '\n') SKIP(401); END_STATE(); case 11: - if (lookahead == '\n') SKIP(401); + if (lookahead == '\n') SKIP(400); END_STATE(); case 12: ADVANCE_MAP( @@ -10584,18 +10591,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(881); + if (lookahead == '\n') SKIP(248); END_STATE(); case 32: if (lookahead == '\n') ADVANCE(881); - if (lookahead == '\r') ADVANCE(31); + END_STATE(); + case 33: + if (lookahead == '\n') ADVANCE(881); + if (lookahead == '\r') ADVANCE(32); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(238); if (lookahead != 0) ADVANCE(949); END_STATE(); - case 33: - if (lookahead == '\n') SKIP(248); - END_STATE(); case 34: if (lookahead == '\n') SKIP(251); END_STATE(); @@ -10623,49 +10630,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') SKIP(451); END_STATE(); case 41: if (lookahead == '\n') ADVANCE(891); - if (lookahead == '\r') ADVANCE(40); + END_STATE(); + case 42: + if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\r') ADVANCE(41); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(253); if (lookahead != 0) ADVANCE(949); END_STATE(); - case 42: - if (lookahead == '\n') SKIP(257); - END_STATE(); case 43: - if (lookahead == '\n') SKIP(451); + if (lookahead == '\n') SKIP(257); END_STATE(); case 44: if (lookahead == '\n') SKIP(260); END_STATE(); case 45: - if (lookahead == '\n') SKIP(455); - END_STATE(); - case 46: if (lookahead == '\n') ADVANCE(893); END_STATE(); - case 47: + case 46: if (lookahead == '\n') ADVANCE(893); - if (lookahead == '\r') ADVANCE(46); + if (lookahead == '\r') ADVANCE(45); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(256); if (lookahead != 0) ADVANCE(949); END_STATE(); + case 47: + if (lookahead == '\n') SKIP(455); + END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\n') SKIP(266); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(895); - if (lookahead == '\r') ADVANCE(48); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(259); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(897); END_STATE(); case 50: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\r') ADVANCE(49); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(262); + if (lookahead != 0) ADVANCE(949); END_STATE(); case 51: if (lookahead == '\n') ADVANCE(901); @@ -10688,26 +10695,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 55: - if (lookahead == '\n') SKIP(464); - END_STATE(); - case 56: if (lookahead == '\n') ADVANCE(915); END_STATE(); - case 57: + case 56: if (lookahead == '\n') ADVANCE(915); - if (lookahead == '\r') ADVANCE(56); + if (lookahead == '\r') ADVANCE(55); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(405); if (lookahead != 0) ADVANCE(949); END_STATE(); + case 57: + if (lookahead == '\n') SKIP(464); + END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\n') ADVANCE(906); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\n') ADVANCE(906); if (lookahead == '\r') ADVANCE(58); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(279); + lookahead == ' ') SKIP(277); if (lookahead != 0) ADVANCE(949); END_STATE(); case 60: @@ -10727,26 +10734,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(454); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\n') SKIP(452); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(917); - if (lookahead == '\r') ADVANCE(64); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(407); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(908); END_STATE(); case 66: - if (lookahead == '\n') SKIP(452); + if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\r') ADVANCE(65); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(281); + if (lookahead != 0) ADVANCE(949); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(917); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(917); if (lookahead == '\r') ADVANCE(67); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(281); + lookahead == ' ') SKIP(407); if (lookahead != 0) ADVANCE(949); END_STATE(); case 69: @@ -10759,54 +10766,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(424); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\n') ADVANCE(922); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\n') ADVANCE(922); if (lookahead == '\r') ADVANCE(71); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(423); + lookahead == ' ') SKIP(422); END_STATE(); case 73: - if (lookahead == '\n') SKIP(460); - END_STATE(); - case 74: - if (lookahead == '\n') SKIP(428); - END_STATE(); - case 75: if (lookahead == '\n') ADVANCE(918); END_STATE(); - case 76: + case 74: if (lookahead == '\n') ADVANCE(918); - if (lookahead == '\r') ADVANCE(75); + if (lookahead == '\r') ADVANCE(73); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(408); if (lookahead != 0) ADVANCE(949); END_STATE(); + case 75: + if (lookahead == '\n') SKIP(460); + END_STATE(); + case 76: + if (lookahead == '\n') ADVANCE(923); + END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\r') ADVANCE(76); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(423); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(922); - if (lookahead == '\r') ADVANCE(77); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(422); + if (lookahead == '\n') SKIP(428); END_STATE(); case 79: if (lookahead == '\n') SKIP(418); END_STATE(); case 80: - if (lookahead == '\n') SKIP(429); - END_STATE(); - case 81: if (lookahead == '\n') ADVANCE(926); END_STATE(); - case 82: + case 81: if (lookahead == '\n') ADVANCE(926); - if (lookahead == '\r') ADVANCE(81); + if (lookahead == '\r') ADVANCE(80); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(426); END_STATE(); + case 82: + if (lookahead == '\n') SKIP(429); + END_STATE(); case 83: if (lookahead == '\n') SKIP(419); END_STATE(); @@ -10814,21 +10821,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(431); END_STATE(); case 85: - if (lookahead == '\n') SKIP(437); - END_STATE(); - case 86: if (lookahead == '\n') ADVANCE(914); END_STATE(); - case 87: + case 86: if (lookahead == '\n') ADVANCE(914); - if (lookahead == '\r') ADVANCE(86); + if (lookahead == '\r') ADVANCE(85); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(404); if (lookahead != 0) ADVANCE(949); END_STATE(); - case 88: + case 87: if (lookahead == '\n') SKIP(432); END_STATE(); + case 88: + if (lookahead == '\n') SKIP(437); + END_STATE(); case 89: if (lookahead == '\n') SKIP(294); END_STATE(); @@ -10836,9 +10843,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(434); END_STATE(); case 91: - if (lookahead == '\n') SKIP(92); + if (lookahead == '\n') ADVANCE(876); END_STATE(); case 92: + if (lookahead == '\n') ADVANCE(876); + if (lookahead == '\r') ADVANCE(91); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(202); + END_STATE(); + case 93: + if (lookahead == '\n') SKIP(94); + END_STATE(); + case 94: ADVANCE_MAP( '\n', 684, '!', 500, @@ -10859,9 +10875,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(591); if (lookahead == '|') ADVANCE(588); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(92); + lookahead == ' ') SKIP(94); END_STATE(); - case 93: + case 95: ADVANCE_MAP( '\n', 684, '"', 783, @@ -10878,12 +10894,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(375); if (lookahead == '`') ADVANCE(850); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(93); + lookahead == ' ') SKIP(95); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(650); END_STATE(); - case 94: + case 96: ADVANCE_MAP( '\n', 684, '#', 857, @@ -10901,12 +10917,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(510); if (lookahead == '}') ADVANCE(813); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(94); + lookahead == ' ') SKIP(96); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(874); END_STATE(); - case 95: + case 97: if (lookahead == '\n') ADVANCE(684); if (lookahead == '#') ADVANCE(857); if (lookahead == '&') ADVANCE(596); @@ -10920,9 +10936,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('[' <= lookahead && lookahead <= ']') || ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(95); + lookahead == ' ') SKIP(97); END_STATE(); - case 96: + case 98: if (lookahead == '\n') ADVANCE(684); if (lookahead == '#') ADVANCE(857); if (lookahead == '&') ADVANCE(596); @@ -10936,9 +10952,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('[' <= lookahead && lookahead <= ']') || ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(96); + lookahead == ' ') SKIP(98); END_STATE(); - case 97: + case 99: if (lookahead == '\n') ADVANCE(684); if (lookahead == '#') ADVANCE(857); if (lookahead == '&') ADVANCE(483); @@ -10950,9 +10966,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('[' <= lookahead && lookahead <= ']') || ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(97); + lookahead == ' ') SKIP(99); END_STATE(); - case 98: + case 100: if (lookahead == '\n') ADVANCE(684); if (lookahead == '#') ADVANCE(857); if (lookahead == '&') ADVANCE(593); @@ -10964,31 +10980,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '{' || lookahead == '}') ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(98); - END_STATE(); - case 99: - if (lookahead == '\n') ADVANCE(876); - END_STATE(); - case 100: - if (lookahead == '\n') ADVANCE(876); - if (lookahead == '\r') ADVANCE(99); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(202); + lookahead == ' ') SKIP(100); END_STATE(); case 101: if (lookahead == '\n') SKIP(436); END_STATE(); case 102: - if (lookahead == '\n') SKIP(433); + if (lookahead == '\n') ADVANCE(878); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(880); + if (lookahead == '\n') ADVANCE(878); + if (lookahead == '\r') ADVANCE(102); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(234); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(880); - if (lookahead == '\r') ADVANCE(103); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237); + if (lookahead == '\n') SKIP(433); END_STATE(); case 105: if (lookahead == '\n') ADVANCE(882); @@ -11003,22 +11010,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(466); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') ADVANCE(886); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') ADVANCE(886); if (lookahead == '\r') ADVANCE(108); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(249); + lookahead == ' ') SKIP(246); END_STATE(); case 110: if (lookahead == '\n') SKIP(296); END_STATE(); case 111: - if (lookahead == '\n') SKIP(476); + if (lookahead == '\n') SKIP(467); END_STATE(); case 112: - if (lookahead == '\n') SKIP(467); + if (lookahead == '\n') SKIP(476); END_STATE(); case 113: if (lookahead == '\n') SKIP(472); @@ -11064,33 +11071,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(439); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\n') ADVANCE(912); END_STATE(); case 124: - if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\n') ADVANCE(912); if (lookahead == '\r') ADVANCE(123); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(411); + lookahead == ' ') SKIP(289); if (lookahead != 0) ADVANCE(949); END_STATE(); case 125: if (lookahead == '\n') SKIP(473); END_STATE(); case 126: - if (lookahead == '\n') ADVANCE(912); + if (lookahead == '\n') SKIP(97); END_STATE(); case 127: - if (lookahead == '\n') ADVANCE(912); - if (lookahead == '\r') ADVANCE(126); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(289); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(921); END_STATE(); case 128: - if (lookahead == '\n') SKIP(95); + if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\r') ADVANCE(127); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(411); + if (lookahead != 0) ADVANCE(949); END_STATE(); case 129: - if (lookahead == '\n') SKIP(93); + if (lookahead == '\n') SKIP(95); END_STATE(); case 130: if (lookahead == '\n') SKIP(468); @@ -11099,7 +11106,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(448); END_STATE(); case 132: - if (lookahead == '\n') SKIP(480); + if (lookahead == '\n') SKIP(481); END_STATE(); case 133: if (lookahead == '\n') SKIP(477); @@ -11111,13 +11118,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(469); END_STATE(); case 136: - if (lookahead == '\n') SKIP(481); + if (lookahead == '\n') SKIP(480); END_STATE(); case 137: - if (lookahead == '\n') SKIP(94); + if (lookahead == '\n') SKIP(96); END_STATE(); case 138: - if (lookahead == '\n') SKIP(97); + if (lookahead == '\n') SKIP(99); END_STATE(); case 139: if (lookahead == '\n') ADVANCE(902); @@ -11176,7 +11183,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(447); END_STATE(); case 151: - if (lookahead == '\n') SKIP(98); + if (lookahead == '\n') SKIP(100); END_STATE(); case 152: if (lookahead == '\n') SKIP(470); @@ -11255,10 +11262,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 165: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') SKIP(284); END_STATE(); case 166: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(280); END_STATE(); case 167: if (lookahead == '\n') ADVANCE(889); @@ -11271,10 +11278,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 169: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') SKIP(291); END_STATE(); case 170: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') SKIP(286); END_STATE(); case 171: if (lookahead == '\n') SKIP(290); @@ -11283,18 +11290,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(456); END_STATE(); case 173: - if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\n') SKIP(295); END_STATE(); case 174: if (lookahead == '\n') ADVANCE(899); - if (lookahead == '\r') ADVANCE(173); + END_STATE(); + case 175: + if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\r') ADVANCE(174); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(265); if (lookahead != 0) ADVANCE(949); END_STATE(); - case 175: - if (lookahead == '\n') SKIP(295); - END_STATE(); case 176: if (lookahead == '\n') SKIP(465); END_STATE(); @@ -11327,13 +11334,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(462); END_STATE(); case 184: - if (lookahead == '\n') ADVANCE(878); + if (lookahead == '\n') ADVANCE(880); END_STATE(); case 185: - if (lookahead == '\n') ADVANCE(878); + if (lookahead == '\n') ADVANCE(880); if (lookahead == '\r') ADVANCE(184); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(234); + lookahead == ' ') SKIP(237); END_STATE(); case 186: if (lookahead == '\n') SKIP(430); @@ -11357,13 +11364,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(258); END_STATE(); case 191: - if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\n') ADVANCE(892); END_STATE(); case 192: - if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\n') ADVANCE(892); if (lookahead == '\r') ADVANCE(191); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252); + lookahead == ' ') SKIP(255); END_STATE(); case 193: if (lookahead == '\n') SKIP(297); @@ -11396,7 +11403,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(441); END_STATE(); case 200: - if (lookahead == '\n') SKIP(96); + if (lookahead == '\n') SKIP(98); END_STATE(); case 201: if (lookahead == '\n') SKIP(403); @@ -11416,7 +11423,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 100, + '\\', 92, '_', 939, 'e', 872, '|', 587, @@ -11437,13 +11444,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(293); END_STATE(); case 206: - if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\n') ADVANCE(907); END_STATE(); case 207: - if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\n') ADVANCE(907); if (lookahead == '\r') ADVANCE(206); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(279); if (lookahead != 0) ADVANCE(949); END_STATE(); case 208: @@ -11453,13 +11460,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(453); END_STATE(); case 210: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') ADVANCE(888); END_STATE(); case 211: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') ADVANCE(888); if (lookahead == '\r') ADVANCE(210); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246); + lookahead == ' ') SKIP(249); END_STATE(); case 212: if (lookahead == '\n') ADVANCE(900); @@ -11471,13 +11478,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(267); END_STATE(); case 214: - if (lookahead == '\n') ADVANCE(892); + if (lookahead == '\n') ADVANCE(890); END_STATE(); case 215: - if (lookahead == '\n') ADVANCE(892); + if (lookahead == '\n') ADVANCE(890); if (lookahead == '\r') ADVANCE(214); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(252); END_STATE(); case 216: ADVANCE_MAP( @@ -11520,19 +11527,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(263); END_STATE(); case 218: - if (lookahead == '\n') SKIP(266); + if (lookahead == '\n') SKIP(269); END_STATE(); case 219: if (lookahead == '\n') SKIP(272); END_STATE(); case 220: - if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\n') ADVANCE(895); END_STATE(); case 221: - if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\n') ADVANCE(895); if (lookahead == '\r') ADVANCE(220); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262); + lookahead == ' ') SKIP(259); if (lookahead != 0) ADVANCE(949); END_STATE(); case 222: @@ -11546,36 +11553,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 224: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(905); END_STATE(); case 225: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(905); if (lookahead == '\r') ADVANCE(224); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(275); if (lookahead != 0) ADVANCE(949); END_STATE(); case 226: if (lookahead == '\n') SKIP(463); END_STATE(); case 227: - if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\n') ADVANCE(909); END_STATE(); case 228: - if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\n') ADVANCE(909); if (lookahead == '\r') ADVANCE(227); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(409); + lookahead == ' ') SKIP(283); if (lookahead != 0) ADVANCE(949); END_STATE(); case 229: - if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\n') ADVANCE(919); END_STATE(); case 230: - if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\n') ADVANCE(919); if (lookahead == '\r') ADVANCE(229); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(283); + lookahead == ' ') SKIP(409); if (lookahead != 0) ADVANCE(949); END_STATE(); case 231: @@ -11635,13 +11642,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '*', 631, '-', 626, ';', 548, - '<', 607, + '<', 606, '>', 612, '?', 754, '@', 935, - '\\', 185, + '\\', 103, '_', 939, - 'e', 872, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -11727,12 +11733,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '*', 631, '-', 626, ';', 548, - '<', 606, + '<', 607, '>', 612, '?', 754, '@', 935, - '\\', 104, + '\\', 185, '_', 939, + 'e', 872, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -11759,7 +11766,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 32, + '\\', 33, '_', 938, '`', 850, 'e', 866, @@ -11814,6 +11821,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, + ')', 649, '*', 631, '-', 626, ';', 549, @@ -11823,7 +11831,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 935, '\\', 106, '_', 939, - '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -12002,8 +12009,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 211, + '\\', 109, '_', 939, + '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -12085,7 +12093,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, - ')', 649, '*', 631, '-', 626, ';', 549, @@ -12093,7 +12100,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 109, + '\\', 211, '_', 939, '|', 587, ); @@ -12146,14 +12153,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 776, '&', 596, '\'', 485, - ')', 649, '-', 941, - '0', 798, - ';', 549, - '<', 604, + '0', 797, + ';', 548, + '<', 603, '>', 611, '\\', 322, '`', 850, + 'e', 947, '|', 587, '[', 781, ']', 781, @@ -12162,9 +12169,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead)) ADVANCE(949); END_STATE(); @@ -12176,7 +12181,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, - ')', 649, '*', 631, '-', 626, ';', 549, @@ -12184,7 +12188,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 192, + '\\', 215, '_', 939, '|', 587, ); @@ -12213,7 +12217,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 41, + '\\', 42, '_', 938, '`', 850, '|', 587, @@ -12238,14 +12242,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 776, '&', 596, '\'', 485, + ')', 649, '-', 941, - '0', 797, - ';', 548, - '<', 603, + '0', 798, + ';', 549, + '<', 604, '>', 611, '\\', 323, '`', 850, - 'e', 947, '|', 587, '[', 781, ']', 781, @@ -12254,7 +12258,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead)) ADVANCE(949); END_STATE(); @@ -12273,8 +12279,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 215, + '\\', 192, '_', 939, + '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -12300,7 +12307,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 47, + '\\', 46, '_', 938, '`', 850, 'e', 866, @@ -12331,7 +12338,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 548, '<', 603, '>', 611, - '\\', 324, + '\\', 325, '`', 850, '|', 587, '[', 781, @@ -12353,6 +12360,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, + ')', 649, '*', 631, '-', 626, ';', 549, @@ -12362,7 +12370,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 935, '\\', 190, '_', 939, - '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -12384,13 +12391,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 630, '0', 801, ';', 548, - '<', 603, + '<', 604, '>', 611, '?', 755, '@', 936, - '\\', 49, + '\\', 221, '_', 938, '`', 850, + 'e', 866, '|', 587, '[', 781, ']', 781, @@ -12470,14 +12478,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 630, '0', 801, ';', 548, - '<', 604, + '<', 603, '>', 611, '?', 755, '@', 936, - '\\', 221, + '\\', 50, '_', 938, '`', 850, - 'e', 866, '|', 587, '[', 781, ']', 781, @@ -12561,7 +12568,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 174, + '\\', 175, '_', 938, '`', 850, '|', 587, @@ -12584,14 +12591,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 857, '$', 776, - '&', 596, + '&', 483, '\'', 485, '-', 941, '0', 797, - ';', 548, - '<', 604, + '<', 602, '>', 611, - '\\', 394, + '\\', 328, '`', 850, '|', 587, '[', 781, @@ -12603,7 +12609,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(266); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(949); END_STATE(); case 267: ADVANCE_MAP( @@ -12636,14 +12644,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 483, + '&', 596, '\'', 485, - '(', 647, + ')', 649, '*', 634, '-', 630, '0', 801, + ';', 549, '<', 603, - '=', 943, '>', 611, '?', 755, '@', 936, @@ -12662,8 +12670,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(949); END_STATE(); case 269: ADVANCE_MAP( @@ -12671,13 +12678,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 857, '$', 776, - '&', 483, + '&', 596, '\'', 485, '-', 941, '0', 797, - '<', 602, + ';', 548, + '<', 604, '>', 611, - '\\', 328, + '\\', 394, '`', 850, '|', 587, '[', 781, @@ -12689,9 +12697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(269); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(949); END_STATE(); case 270: ADVANCE_MAP( @@ -12785,14 +12791,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 596, + '&', 483, '\'', 485, - ')', 649, + '(', 647, '*', 634, '-', 630, '0', 801, - ';', 549, '<', 603, + '=', 943, '>', 611, '?', 755, '@', 936, @@ -12811,7 +12817,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(949); END_STATE(); case 274: ADVANCE_MAP( @@ -12852,6 +12859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 776, '&', 596, '\'', 485, + ')', 649, '*', 634, '-', 630, '0', 801, @@ -12860,7 +12868,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 207, + '\\', 225, '_', 938, '`', 850, '|', 587, @@ -12892,7 +12900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 603, '=', 943, '>', 611, - '\\', 332, + '\\', 333, '`', 851, '|', 587, '[', 781, @@ -12913,18 +12921,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 596, + '&', 483, '\'', 485, - ')', 649, '*', 634, '-', 630, '0', 801, - ';', 549, - '<', 604, + '<', 603, + '=', 943, '>', 611, '?', 755, '@', 936, - '\\', 225, + '\\', 59, '_', 938, '`', 850, '|', 587, @@ -12939,7 +12946,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(949); END_STATE(); case 278: ADVANCE_MAP( @@ -12957,7 +12965,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 603, '=', 943, '>', 611, - '\\', 334, + '\\', 335, '`', 851, '|', 587, '[', 781, @@ -12977,17 +12985,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 483, + '&', 596, '\'', 485, '*', 634, '-', 630, '0', 801, - '<', 603, - '=', 943, + ';', 549, + '<', 604, '>', 611, '?', 755, '@', 936, - '\\', 59, + '\\', 207, '_', 938, '`', 850, '|', 587, @@ -13002,8 +13010,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(949); END_STATE(); case 280: ADVANCE_MAP( @@ -13049,7 +13056,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 68, + '\\', 66, '_', 938, '`', 850, '|', 587, @@ -13114,7 +13121,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 230, + '\\', 228, '_', 938, '`', 850, '|', 587, @@ -13142,11 +13149,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 596, '\'', 485, '-', 941, - '0', 797, + '0', 798, ';', 548, - '<', 603, + '<', 604, '>', 611, - '\\', 341, + '\\', 340, '`', 851, '|', 587, '[', 781, @@ -13156,7 +13163,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(284); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead)) ADVANCE(949); END_STATE(); @@ -13204,11 +13213,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 596, '\'', 485, '-', 941, - '0', 798, + '0', 797, ';', 548, - '<', 604, + '<', 603, '>', 611, - '\\', 342, + '\\', 341, '`', 851, '|', 587, '[', 781, @@ -13218,9 +13227,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(286); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead)) ADVANCE(949); END_STATE(); @@ -13301,7 +13308,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 490, '?', 755, '@', 936, - '\\', 127, + '\\', 124, '_', 938, '`', 850, '[', 781, @@ -13391,7 +13398,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 548, '<', 604, '>', 611, - '\\', 347, + '\\', 348, '`', 851, '|', 587, '[', 781, @@ -13474,7 +13481,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 602, '>', 611, - '\\', 365, + '\\', 366, '`', 851, '|', 510, '[', 781, @@ -13530,7 +13537,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 549, '<', 489, '>', 490, - '\\', 378, + '\\', 377, '`', 851, '[', 781, ']', 781, @@ -13563,13 +13570,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 301: if (lookahead == '\r') SKIP(2); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(412); + lookahead == ' ') SKIP(413); if (lookahead != 0) ADVANCE(949); END_STATE(); case 302: if (lookahead == '\r') SKIP(3); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(413); + lookahead == ' ') SKIP(412); if (lookahead != 0) ADVANCE(949); END_STATE(); case 303: @@ -13587,13 +13594,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 305: if (lookahead == '\r') SKIP(7); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(399); + lookahead == ' ') SKIP(415); if (lookahead != 0) ADVANCE(949); END_STATE(); case 306: if (lookahead == '\r') SKIP(8); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(415); + lookahead == ' ') SKIP(399); if (lookahead != 0) ADVANCE(949); END_STATE(); case 307: @@ -13609,21 +13616,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 309: - if (lookahead == '\r') SKIP(10); + if (lookahead == '\r') SKIP(201); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(400); + lookahead == ' ') SKIP(403); if (lookahead != 0) ADVANCE(949); END_STATE(); case 310: - if (lookahead == '\r') SKIP(201); + if (lookahead == '\r') SKIP(10); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(401); if (lookahead != 0) ADVANCE(949); END_STATE(); case 311: if (lookahead == '\r') SKIP(11); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(400); if (lookahead != 0) ADVANCE(949); END_STATE(); case 312: @@ -13681,7 +13688,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 321: - if (lookahead == '\r') SKIP(33); + if (lookahead == '\r') SKIP(31); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(248); if (lookahead != 0) ADVANCE(949); @@ -13699,15 +13706,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 324: - if (lookahead == '\r') SKIP(42); + if (lookahead == '\r') SKIP(40); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(257); + lookahead == ' ') SKIP(451); if (lookahead != 0) ADVANCE(949); END_STATE(); case 325: if (lookahead == '\r') SKIP(43); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(257); if (lookahead != 0) ADVANCE(949); END_STATE(); case 326: @@ -13717,19 +13724,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 327: - if (lookahead == '\r') SKIP(45); + if (lookahead == '\r') SKIP(47); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(455); if (lookahead != 0) ADVANCE(949); END_STATE(); case 328: - if (lookahead == '\r') SKIP(50); + if (lookahead == '\r') SKIP(48); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(266); if (lookahead != 0) ADVANCE(949); END_STATE(); case 329: - if (lookahead == '\r') SKIP(55); + if (lookahead == '\r') SKIP(57); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(464); if (lookahead != 0) ADVANCE(949); @@ -13747,31 +13754,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 332: - if (lookahead == '\r') SKIP(160); + if (lookahead == '\r') SKIP(63); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(454); if (lookahead != 0) ADVANCE(949); END_STATE(); case 333: - if (lookahead == '\r') SKIP(63); + if (lookahead == '\r') SKIP(160); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(454); + lookahead == ' ') SKIP(276); if (lookahead != 0) ADVANCE(949); END_STATE(); case 334: - if (lookahead == '\r') SKIP(161); + if (lookahead == '\r') SKIP(64); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(278); + lookahead == ' ') SKIP(452); if (lookahead != 0) ADVANCE(949); END_STATE(); case 335: - if (lookahead == '\r') SKIP(66); + if (lookahead == '\r') SKIP(161); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(452); + lookahead == ' ') SKIP(278); if (lookahead != 0) ADVANCE(949); END_STATE(); case 336: - if (lookahead == '\r') SKIP(169); + if (lookahead == '\r') SKIP(166); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(280); if (lookahead != 0) ADVANCE(949); @@ -13783,36 +13790,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 338: - if (lookahead == '\r') SKIP(73); + if (lookahead == '\r') SKIP(75); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(460); if (lookahead != 0) ADVANCE(949); END_STATE(); case 339: - if (lookahead == '\r') SKIP(74); + if (lookahead == '\r') SKIP(78); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(428); END_STATE(); case 340: - if (lookahead == '\r') SKIP(79); + if (lookahead == '\r') SKIP(165); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(418); + lookahead == ' ') SKIP(284); if (lookahead != 0) ADVANCE(949); END_STATE(); case 341: if (lookahead == '\r') SKIP(170); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(284); + lookahead == ' ') SKIP(286); if (lookahead != 0) ADVANCE(949); END_STATE(); case 342: - if (lookahead == '\r') SKIP(165); + if (lookahead == '\r') SKIP(79); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(286); + lookahead == ' ') SKIP(418); if (lookahead != 0) ADVANCE(949); END_STATE(); case 343: - if (lookahead == '\r') SKIP(80); + if (lookahead == '\r') SKIP(82); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(429); END_STATE(); @@ -13829,21 +13836,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 346: - if (lookahead == '\r') SKIP(166); + if (lookahead == '\r') SKIP(169); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(291); if (lookahead != 0) ADVANCE(949); END_STATE(); case 347: - if (lookahead == '\r') SKIP(204); + if (lookahead == '\r') SKIP(83); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(292); + lookahead == ' ') SKIP(419); if (lookahead != 0) ADVANCE(949); END_STATE(); case 348: - if (lookahead == '\r') SKIP(83); + if (lookahead == '\r') SKIP(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(419); + lookahead == ' ') SKIP(292); if (lookahead != 0) ADVANCE(949); END_STATE(); case 349: @@ -13864,20 +13871,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(431); END_STATE(); case 352: - if (lookahead == '\r') SKIP(177); + if (lookahead == '\r') SKIP(87); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(459); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(432); END_STATE(); case 353: - if (lookahead == '\r') SKIP(85); + if (lookahead == '\r') SKIP(88); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(437); END_STATE(); case 354: - if (lookahead == '\r') SKIP(88); + if (lookahead == '\r') SKIP(177); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(432); + lookahead == ' ') SKIP(459); + if (lookahead != 0) ADVANCE(949); END_STATE(); case 355: if (lookahead == '\r') SKIP(89); @@ -13886,15 +13893,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 356: - if (lookahead == '\r') SKIP(176); + if (lookahead == '\r') SKIP(178); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(465); + lookahead == ' ') SKIP(457); if (lookahead != 0) ADVANCE(949); END_STATE(); case 357: - if (lookahead == '\r') SKIP(178); + if (lookahead == '\r') SKIP(176); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(457); + lookahead == ' ') SKIP(465); if (lookahead != 0) ADVANCE(949); END_STATE(); case 358: @@ -13915,9 +13922,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 361: - if (lookahead == '\r') SKIP(91); + if (lookahead == '\r') SKIP(93); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(92); + lookahead == ' ') SKIP(94); END_STATE(); case 362: if (lookahead == '\r') SKIP(101); @@ -13925,7 +13932,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(436); END_STATE(); case 363: - if (lookahead == '\r') SKIP(102); + if (lookahead == '\r') SKIP(104); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(433); END_STATE(); @@ -13935,15 +13942,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(430); END_STATE(); case 365: - if (lookahead == '\r') SKIP(175); + if (lookahead == '\r') SKIP(107); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(466); if (lookahead != 0) ADVANCE(949); END_STATE(); case 366: - if (lookahead == '\r') SKIP(107); + if (lookahead == '\r') SKIP(173); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(466); + lookahead == ' ') SKIP(295); if (lookahead != 0) ADVANCE(949); END_STATE(); case 367: @@ -13961,13 +13968,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 369: if (lookahead == '\r') SKIP(111); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(476); + lookahead == ' ') SKIP(467); + if (lookahead != 0) ADVANCE(949); END_STATE(); case 370: if (lookahead == '\r') SKIP(112); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(467); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(476); END_STATE(); case 371: if (lookahead == '\r') SKIP(113); @@ -13987,31 +13994,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(949); END_STATE(); case 374: - if (lookahead == '\r') SKIP(128); + if (lookahead == '\r') SKIP(126); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(95); + lookahead == ' ') SKIP(97); END_STATE(); case 375: if (lookahead == '\r') SKIP(129); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(93); + lookahead == ' ') SKIP(95); END_STATE(); case 376: if (lookahead == '\r') SKIP(200); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(96); + lookahead == ' ') SKIP(98); END_STATE(); case 377: - if (lookahead == '\r') SKIP(130); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(468); - END_STATE(); - case 378: if (lookahead == '\r') SKIP(193); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(297); if (lookahead != 0) ADVANCE(949); END_STATE(); + case 378: + if (lookahead == '\r') SKIP(130); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(468); + END_STATE(); case 379: if (lookahead == '\r') SKIP(131); if (('\t' <= lookahead && lookahead <= '\f') || @@ -14020,7 +14027,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 380: if (lookahead == '\r') SKIP(132); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(480); + lookahead == ' ') SKIP(481); if (lookahead != 0) ADVANCE(949); END_STATE(); case 381: @@ -14042,17 +14049,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 384: if (lookahead == '\r') SKIP(136); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(481); + lookahead == ' ') SKIP(480); END_STATE(); case 385: if (lookahead == '\r') SKIP(137); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(94); + lookahead == ' ') SKIP(96); END_STATE(); case 386: if (lookahead == '\r') SKIP(138); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(97); + lookahead == ' ') SKIP(99); END_STATE(); case 387: if (lookahead == '\r') SKIP(143); @@ -14068,7 +14075,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 389: if (lookahead == '\r') SKIP(151); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(98); + lookahead == ' ') SKIP(100); END_STATE(); case 390: if (lookahead == '\r') SKIP(152); @@ -14094,7 +14101,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 394: if (lookahead == '\r') SKIP(218); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(266); + lookahead == ' ') SKIP(269); if (lookahead != 0) ADVANCE(949); END_STATE(); case 395: @@ -14206,7 +14213,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 554, '>', 610, '?', 755, - '\\', 305, + '\\', 306, ']', 669, '^', 590, '`', 851, @@ -14243,7 +14250,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 554, '>', 613, '?', 755, - '\\', 309, + '\\', 311, '^', 590, '`', 851, '|', 588, @@ -14279,7 +14286,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 554, '>', 613, '?', 755, - '\\', 311, + '\\', 310, '^', 590, '`', 851, '|', 588, @@ -14351,7 +14358,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 554, '>', 613, '?', 755, - '\\', 310, + '\\', 309, ']', 782, '^', 590, '`', 851, @@ -14383,7 +14390,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 87, + '\\', 86, '_', 938, '`', 850, '[', 781, @@ -14419,7 +14426,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 57, + '\\', 56, '_', 938, '`', 850, '|', 587, @@ -14486,7 +14493,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 65, + '\\', 68, ']', 669, '_', 938, '`', 850, @@ -14520,7 +14527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 76, + '\\', 74, '_', 938, '`', 850, '|', 587, @@ -14554,7 +14561,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 228, + '\\', 230, ']', 669, '_', 938, '`', 850, @@ -14622,7 +14629,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 490, '?', 755, '@', 936, - '\\', 124, + '\\', 128, '_', 938, '`', 850, '[', 781, @@ -14651,23 +14658,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 485, '(', 648, ')', 649, - '-', 941, + '+', 765, + '-', 763, '0', 797, - ';', 484, '<', 602, '>', 611, '[', 668, - '\\', 301, + '\\', 302, '`', 850, '{', 660, '|', 584, + '~', 766, ']', 781, '}', 781, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(412); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(949); END_STATE(); case 413: ADVANCE_MAP( @@ -14678,27 +14688,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 502, '\'', 485, '(', 648, - ')', 493, - '+', 765, - '-', 763, + ')', 649, + '-', 941, '0', 797, + ';', 484, '<', 602, '>', 611, '[', 668, - '\\', 302, + '\\', 301, '`', 850, '{', 660, '|', 585, - '~', 766, ']', 781, '}', 781, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(413); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + if (lookahead != 0) ADVANCE(949); END_STATE(); case 414: ADVANCE_MAP( @@ -14709,6 +14716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 502, '\'', 485, '(', 648, + ')', 493, '+', 765, '-', 763, '0', 797, @@ -14726,7 +14734,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(414); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '{' || '~' < lookahead)) ADVANCE(949); @@ -14746,7 +14753,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 602, '>', 611, '[', 668, - '\\', 306, + '\\', 305, '`', 850, 'e', 947, '{', 660, @@ -14833,7 +14840,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 489, '>', 490, - '\\', 340, + '\\', 342, '`', 850, '{', 660, '~', 766, @@ -14863,7 +14870,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 489, '>', 490, - '\\', 348, + '\\', 347, '`', 850, '~', 766, '[', 781, @@ -14968,7 +14975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 614, '?', 754, '@', 935, - '\\', 78, + '\\', 72, '^', 591, '_', 939, '|', 588, @@ -14997,7 +15004,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 614, '?', 754, '@', 935, - '\\', 72, + '\\', 77, '^', 591, '_', 939, '|', 588, @@ -15083,7 +15090,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 614, '?', 754, '@', 935, - '\\', 82, + '\\', 81, '^', 591, '_', 939, '|', 588, @@ -15261,7 +15268,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 614, '?', 754, ); - if (lookahead == '\\') SKIP(354); + if (lookahead == '\\') SKIP(352); if (lookahead == '^') ADVANCE(591); if (lookahead == '`') ADVANCE(504); if (lookahead == '|') ADVANCE(588); @@ -15686,7 +15693,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 602, '>', 611, '[', 668, - '\\', 325, + '\\', 324, '`', 850, ']', 781, '{', 781, @@ -15713,7 +15720,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 602, '>', 611, - '\\', 335, + '\\', 334, '`', 850, '|', 584, '[', 781, @@ -15770,7 +15777,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 603, '>', 611, - '\\', 333, + '\\', 332, '`', 850, '|', 587, '[', 781, @@ -15853,7 +15860,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 603, '>', 611, - '\\', 357, + '\\', 356, '`', 851, '|', 587, '[', 781, @@ -15907,7 +15914,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 603, '>', 611, - '\\', 352, + '\\', 354, ']', 669, '`', 851, '|', 587, @@ -16071,7 +16078,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 798, '<', 604, '>', 611, - '\\', 356, + '\\', 357, '`', 851, '|', 587, '[', 781, @@ -16100,7 +16107,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 489, '>', 490, - '\\', 366, + '\\', 365, '`', 850, 'e', 947, '[', 781, @@ -16128,7 +16135,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 797, '<', 489, '>', 490, - '\\', 370, + '\\', 369, '`', 850, '}', 813, '[', 781, @@ -16159,7 +16166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 553, '>', 612, ); - if (lookahead == '\\') SKIP(377); + if (lookahead == '\\') SKIP(378); if (lookahead == ']') ADVANCE(669); if (lookahead == '`') ADVANCE(850); if (lookahead == '|') ADVANCE(587); @@ -16305,7 +16312,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 816, '[', 667, ); - if (lookahead == '\\') SKIP(369); + if (lookahead == '\\') SKIP(370); if (lookahead == '^') ADVANCE(592); if (lookahead == '}') ADVANCE(813); if (('\t' <= lookahead && lookahead <= '\r') || @@ -16318,7 +16325,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(637); if (lookahead == ':') ADVANCE(756); if (lookahead == '[') ADVANCE(667); - if (lookahead == '\\') SKIP(369); + if (lookahead == '\\') SKIP(370); if (lookahead == '^') ADVANCE(592); if (lookahead == '}') ADVANCE(813); if (('\t' <= lookahead && lookahead <= '\r') || @@ -16333,9 +16340,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(607); if (lookahead == '>') ADVANCE(612); if (lookahead == '\\') SKIP(381); + if (lookahead == ']') ADVANCE(669); if (lookahead == '`') ADVANCE(504); if (lookahead == '|') ADVANCE(587); - if (('[' <= lookahead && lookahead <= ']') || + if (lookahead == '[' || ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(477); @@ -16352,7 +16360,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 623, '-', 626, '/', 635, - '<', 606, + '<', 607, '>', 612, ); if (lookahead == '\\') SKIP(382); @@ -16385,6 +16393,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || '}' < lookahead)) ADVANCE(949); END_STATE(); case 480: + if (lookahead == '#') ADVANCE(857); + if (lookahead == '&') ADVANCE(483); + if (lookahead == '<') ADVANCE(606); + if (lookahead == '>') ADVANCE(612); + if (lookahead == '\\') SKIP(384); + if (lookahead == '`') ADVANCE(504); + if (lookahead == '|') ADVANCE(587); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(480); + END_STATE(); + case 481: ADVANCE_MAP( '#', 857, '&', 483, @@ -16399,27 +16420,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 781, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(480); + lookahead == ' ') SKIP(481); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<') ADVANCE(949); END_STATE(); - case 481: - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(483); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(384); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(587); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(481); - END_STATE(); case 482: if (lookahead == '#') ADVANCE(857); if (lookahead == '+') ADVANCE(501); @@ -16565,7 +16572,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(549); if (lookahead == '<') ADVANCE(606); if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(537); + if (lookahead == '\\') SKIP(536); if (lookahead == '`') ADVANCE(850); if (lookahead == '|') ADVANCE(587); if (('[' <= lookahead && lookahead <= ']') || @@ -16582,7 +16589,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(549); if (lookahead == '<') ADVANCE(607); if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(536); + if (lookahead == '\\') SKIP(537); if (lookahead == '`') ADVANCE(851); if (lookahead == '|') ADVANCE(587); if (('[' <= lookahead && lookahead <= ']') || @@ -16613,11 +16620,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 518: if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(515); + if (lookahead == '\n') SKIP(514); END_STATE(); case 519: if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(514); + if (lookahead == '\n') SKIP(515); END_STATE(); case 520: if (eof) ADVANCE(541); @@ -16693,7 +16700,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 523: if (eof) ADVANCE(541); ADVANCE_MAP( - '\n', 701, + '\n', 704, '!', 663, '"', 783, '#', 811, @@ -16755,7 +16762,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 525: if (eof) ADVANCE(541); ADVANCE_MAP( - '\n', 706, + '\n', 707, + '!', 663, + '"', 783, + '#', 811, + '$', 775, + '&', 596, + '*', 631, + '-', 626, + ';', 549, + '<', 607, + '>', 612, + '?', 754, + '@', 935, + '\\', 215, + '_', 939, + '|', 587, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(525); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + END_STATE(); + case 526: + if (eof) ADVANCE(541); + ADVANCE_MAP( + '\n', 709, '"', 783, '#', 857, '$', 776, @@ -16767,7 +16800,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ';', 549, '<', 604, '>', 611, - '\\', 322, + '\\', 323, '`', 850, '|', 587, '[', 781, @@ -16776,39 +16809,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 781, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(525); + lookahead == ' ') SKIP(526); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead)) ADVANCE(949); END_STATE(); - case 526: - if (eof) ADVANCE(541); - ADVANCE_MAP( - '\n', 710, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 215, - '_', 939, - '|', 587, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(526); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); - END_STATE(); case 527: if (eof) ADVANCE(541); ADVANCE_MAP( @@ -16856,7 +16863,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 174, + '\\', 175, '_', 938, '`', 850, '|', 587, @@ -16905,24 +16912,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 530: if (eof) ADVANCE(541); ADVANCE_MAP( - '\n', 730, - '!', 666, + '\n', 733, '"', 783, - '#', 811, + '#', 857, '$', 776, '&', 596, '\'', 485, - '*', 634, - '-', 630, - '0', 801, + '(', 647, + ')', 649, + '-', 941, + '0', 797, ';', 549, - '<', 604, + '<', 603, + '=', 943, '>', 611, - '?', 755, - '@', 936, - '\\', 207, - '_', 938, - '`', 850, + '\\', 335, + '`', 851, '|', 587, '[', 781, ']', 781, @@ -16931,31 +16936,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(530); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (lookahead != 0) ADVANCE(949); END_STATE(); case 531: if (eof) ADVANCE(541); ADVANCE_MAP( - '\n', 733, + '\n', 734, + '!', 666, '"', 783, - '#', 857, + '#', 811, '$', 776, '&', 596, '\'', 485, - '(', 647, - ')', 649, - '-', 941, - '0', 797, + '*', 634, + '-', 630, + '0', 801, ';', 549, - '<', 603, - '=', 943, + '<', 604, '>', 611, - '\\', 334, - '`', 851, + '?', 755, + '@', 936, + '\\', 207, + '_', 938, + '`', 850, '|', 587, '[', 781, ']', 781, @@ -16964,8 +16968,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(531); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(949); END_STATE(); case 532: if (eof) ADVANCE(541); @@ -17066,13 +17073,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(541); if (lookahead == '\r') SKIP(518); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(515); + lookahead == ' ') SKIP(514); END_STATE(); case 537: if (eof) ADVANCE(541); if (lookahead == '\r') SKIP(519); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(514); + lookahead == ' ') SKIP(515); END_STATE(); case 538: if (eof) ADVANCE(541); @@ -17141,7 +17148,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\\', 301, '`', 850, '{', 660, - '|', 584, + '|', 585, ']', 781, '}', 781, ); @@ -17807,7 +17814,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 686: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(686); - if (lookahead == '\\') ADVANCE(100); + if (lookahead == '\\') ADVANCE(92); END_STATE(); case 687: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17822,7 +17829,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 689: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(689); - if (lookahead == '\\') ADVANCE(185); + if (lookahead == '\\') ADVANCE(103); END_STATE(); case 690: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17837,12 +17844,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 692: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(692); - if (lookahead == '\\') ADVANCE(104); + if (lookahead == '\\') ADVANCE(185); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(693); - if (lookahead == '\\') ADVANCE(32); + if (lookahead == '\\') ADVANCE(33); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17882,7 +17889,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 701: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(701); - if (lookahead == '\\') ADVANCE(211); + if (lookahead == '\\') ADVANCE(109); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17897,7 +17904,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 704: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(704); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(211); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17912,12 +17919,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 707: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(707); - if (lookahead == '\\') ADVANCE(192); + if (lookahead == '\\') ADVANCE(215); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(708); - if (lookahead == '\\') ADVANCE(41); + if (lookahead == '\\') ADVANCE(42); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17927,17 +17934,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 710: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(710); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\\') ADVANCE(192); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(711); - if (lookahead == '\\') ADVANCE(47); + if (lookahead == '\\') ADVANCE(46); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(712); - if (lookahead == '\\') ADVANCE(324); + if (lookahead == '\\') ADVANCE(325); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17947,7 +17954,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 714: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(714); - if (lookahead == '\\') ADVANCE(49); + if (lookahead == '\\') ADVANCE(221); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17962,7 +17969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 717: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(717); - if (lookahead == '\\') ADVANCE(221); + if (lookahead == '\\') ADVANCE(50); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17977,12 +17984,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 720: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(720); - if (lookahead == '\\') ADVANCE(174); + if (lookahead == '\\') ADVANCE(175); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(721); - if (lookahead == '\\') ADVANCE(394); + if (lookahead == '\\') ADVANCE(328); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17997,7 +18004,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 724: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(724); - if (lookahead == '\\') ADVANCE(328); + if (lookahead == '\\') ADVANCE(394); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18027,27 +18034,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 730: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(730); - if (lookahead == '\\') ADVANCE(207); + if (lookahead == '\\') ADVANCE(225); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(731); - if (lookahead == '\\') ADVANCE(332); + if (lookahead == '\\') ADVANCE(333); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(732); - if (lookahead == '\\') ADVANCE(225); + if (lookahead == '\\') ADVANCE(59); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(733); - if (lookahead == '\\') ADVANCE(334); + if (lookahead == '\\') ADVANCE(335); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(734); - if (lookahead == '\\') ADVANCE(59); + if (lookahead == '\\') ADVANCE(207); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18057,7 +18064,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 736: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(736); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\\') ADVANCE(66); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18067,12 +18074,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 738: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(738); - if (lookahead == '\\') ADVANCE(230); + if (lookahead == '\\') ADVANCE(228); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(739); - if (lookahead == '\\') ADVANCE(341); + if (lookahead == '\\') ADVANCE(340); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18082,7 +18089,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 741: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(741); - if (lookahead == '\\') ADVANCE(342); + if (lookahead == '\\') ADVANCE(341); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18097,7 +18104,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 744: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(744); - if (lookahead == '\\') ADVANCE(127); + if (lookahead == '\\') ADVANCE(124); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18112,7 +18119,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 747: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(747); - if (lookahead == '\\') ADVANCE(347); + if (lookahead == '\\') ADVANCE(348); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18127,7 +18134,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 750: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(750); - if (lookahead == '\\') ADVANCE(365); + if (lookahead == '\\') ADVANCE(366); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18137,7 +18144,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 752: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\\') ADVANCE(378); + if (lookahead == '\\') ADVANCE(377); END_STATE(); case 753: ACCEPT_TOKEN(anon_sym_LT_LT_LT); @@ -18922,7 +18929,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 100, + '\\', 92, '_', 939, 'e', 872, '|', 587, @@ -18981,13 +18988,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '*', 631, '-', 626, ';', 548, - '<', 607, + '<', 606, '>', 612, '?', 754, '@', 935, - '\\', 185, + '\\', 103, '_', 939, - 'e', 872, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19043,12 +19049,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '*', 631, '-', 626, ';', 548, - '<', 606, + '<', 607, '>', 612, '?', 754, '@', 935, - '\\', 104, + '\\', 185, '_', 939, + 'e', 872, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19076,7 +19083,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 32, + '\\', 33, '_', 938, '`', 850, 'e', 866, @@ -19101,6 +19108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, + ')', 649, '*', 631, '-', 626, ';', 549, @@ -19110,7 +19118,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 935, '\\', 106, '_', 939, - '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19230,8 +19237,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 211, + '\\', 109, '_', 939, + '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19284,7 +19292,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, - ')', 649, '*', 631, '-', 626, ';', 549, @@ -19292,7 +19299,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 109, + '\\', 211, '_', 939, '|', 587, ); @@ -19345,7 +19352,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, - ')', 649, '*', 631, '-', 626, ';', 549, @@ -19353,7 +19359,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 192, + '\\', 215, '_', 939, '|', 587, ); @@ -19383,7 +19389,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 41, + '\\', 42, '_', 938, '`', 850, '|', 587, @@ -19414,8 +19420,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 612, '?', 754, '@', 935, - '\\', 215, + '\\', 192, '_', 939, + '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19442,7 +19449,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 47, + '\\', 46, '_', 938, '`', 850, 'e', 866, @@ -19467,6 +19474,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 811, '$', 775, '&', 596, + ')', 649, '*', 631, '-', 626, ';', 549, @@ -19476,7 +19484,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 935, '\\', 190, '_', 939, - '`', 850, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19499,13 +19506,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 630, '0', 801, ';', 548, - '<', 603, + '<', 604, '>', 611, '?', 755, '@', 936, - '\\', 49, + '\\', 221, '_', 938, '`', 850, + 'e', 866, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19557,14 +19565,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 630, '0', 801, ';', 548, - '<', 604, + '<', 603, '>', 611, '?', 755, '@', 936, - '\\', 221, + '\\', 50, '_', 938, '`', 850, - 'e', 866, '|', 587, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -19620,7 +19627,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 174, + '\\', 175, '_', 938, '`', 850, '|', 587, @@ -19668,14 +19675,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 483, + '&', 596, '\'', 485, - '(', 647, + ')', 649, '*', 634, '-', 630, '0', 801, + ';', 549, '<', 603, - '=', 943, '>', 611, '?', 755, '@', 936, @@ -19691,7 +19698,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead) && + (lookahead < '>' || ']' < lookahead) && (lookahead < '_' || '}' < lookahead)) ADVANCE(949); END_STATE(); case 902: @@ -19759,14 +19766,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 596, + '&', 483, '\'', 485, - ')', 649, + '(', 647, '*', 634, '-', 630, '0', 801, - ';', 549, '<', 603, + '=', 943, '>', 611, '?', 755, '@', 936, @@ -19782,7 +19789,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < '>' || ']' < lookahead) && + (lookahead < ';' || ']' < lookahead) && (lookahead < '_' || '}' < lookahead)) ADVANCE(949); END_STATE(); case 905: @@ -19795,6 +19802,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 776, '&', 596, '\'', 485, + ')', 649, '*', 634, '-', 630, '0', 801, @@ -19803,7 +19811,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 207, + '\\', 225, '_', 938, '`', 850, '|', 587, @@ -19826,18 +19834,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 596, + '&', 483, '\'', 485, - ')', 649, '*', 634, '-', 630, '0', 801, - ';', 549, - '<', 604, + '<', 603, + '=', 943, '>', 611, '?', 755, '@', 936, - '\\', 225, + '\\', 59, '_', 938, '`', 850, '|', 587, @@ -19849,7 +19856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < '>' || ']' < lookahead) && + (lookahead < ';' || ']' < lookahead) && (lookahead < '_' || '}' < lookahead)) ADVANCE(949); END_STATE(); case 907: @@ -19860,17 +19867,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 783, '#', 811, '$', 776, - '&', 483, + '&', 596, '\'', 485, '*', 634, '-', 630, '0', 801, - '<', 603, - '=', 943, + ';', 549, + '<', 604, '>', 611, '?', 755, '@', 936, - '\\', 59, + '\\', 207, '_', 938, '`', 850, '|', 587, @@ -19882,7 +19889,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead) && + (lookahead < '>' || ']' < lookahead) && (lookahead < '_' || '}' < lookahead)) ADVANCE(949); END_STATE(); case 908: @@ -19902,7 +19909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 68, + '\\', 66, '_', 938, '`', 850, '|', 587, @@ -19936,7 +19943,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 230, + '\\', 228, '_', 938, '`', 850, '|', 587, @@ -20035,7 +20042,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 490, '?', 755, '@', 936, - '\\', 127, + '\\', 124, '_', 938, '`', 850, ); @@ -20104,7 +20111,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 87, + '\\', 86, '_', 938, '`', 850, ); @@ -20138,7 +20145,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 57, + '\\', 56, '_', 938, '`', 850, '|', 587, @@ -20201,7 +20208,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 65, + '\\', 68, ']', 669, '_', 938, '`', 850, @@ -20235,7 +20242,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 76, + '\\', 74, '_', 938, '`', 850, '|', 587, @@ -20268,7 +20275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 611, '?', 755, '@', 936, - '\\', 228, + '\\', 230, ']', 669, '_', 938, '`', 850, @@ -20335,7 +20342,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 490, '?', 755, '@', 936, - '\\', 124, + '\\', 128, '_', 938, '`', 850, ); @@ -20370,7 +20377,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 614, '?', 754, '@', 935, - '\\', 78, + '\\', 72, '^', 591, '_', 939, '|', 588, @@ -20400,7 +20407,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 614, '?', 754, '@', 935, - '\\', 72, + '\\', 77, '^', 591, '_', 939, '|', 588, @@ -20489,7 +20496,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 614, '?', 754, '@', 935, - '\\', 82, + '\\', 81, '^', 591, '_', 939, '|', 588, @@ -21112,9 +21119,9 @@ 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 = 540, .external_lex_state = 2}, - [2] = {.lex_state = 413, .external_lex_state = 2}, - [3] = {.lex_state = 413, .external_lex_state = 2}, - [4] = {.lex_state = 413, .external_lex_state = 2}, + [2] = {.lex_state = 412, .external_lex_state = 2}, + [3] = {.lex_state = 412, .external_lex_state = 2}, + [4] = {.lex_state = 412, .external_lex_state = 2}, [5] = {.lex_state = 414, .external_lex_state = 3}, [6] = {.lex_state = 414, .external_lex_state = 3}, [7] = {.lex_state = 414, .external_lex_state = 3}, @@ -21132,24 +21139,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [19] = {.lex_state = 540, .external_lex_state = 2}, [20] = {.lex_state = 540, .external_lex_state = 2}, [21] = {.lex_state = 540, .external_lex_state = 2}, - [22] = {.lex_state = 399, .external_lex_state = 5}, - [23] = {.lex_state = 415, .external_lex_state = 6}, - [24] = {.lex_state = 415, .external_lex_state = 6}, - [25] = {.lex_state = 415, .external_lex_state = 6}, - [26] = {.lex_state = 540, .external_lex_state = 2}, - [27] = {.lex_state = 415, .external_lex_state = 6}, - [28] = {.lex_state = 415, .external_lex_state = 6}, - [29] = {.lex_state = 415, .external_lex_state = 6}, - [30] = {.lex_state = 415, .external_lex_state = 6}, - [31] = {.lex_state = 415, .external_lex_state = 6}, - [32] = {.lex_state = 415, .external_lex_state = 6}, - [33] = {.lex_state = 415, .external_lex_state = 6}, - [34] = {.lex_state = 415, .external_lex_state = 6}, - [35] = {.lex_state = 415, .external_lex_state = 6}, + [22] = {.lex_state = 415, .external_lex_state = 5}, + [23] = {.lex_state = 540, .external_lex_state = 2}, + [24] = {.lex_state = 415, .external_lex_state = 5}, + [25] = {.lex_state = 415, .external_lex_state = 5}, + [26] = {.lex_state = 415, .external_lex_state = 5}, + [27] = {.lex_state = 415, .external_lex_state = 5}, + [28] = {.lex_state = 415, .external_lex_state = 5}, + [29] = {.lex_state = 415, .external_lex_state = 5}, + [30] = {.lex_state = 415, .external_lex_state = 5}, + [31] = {.lex_state = 415, .external_lex_state = 5}, + [32] = {.lex_state = 415, .external_lex_state = 5}, + [33] = {.lex_state = 415, .external_lex_state = 5}, + [34] = {.lex_state = 415, .external_lex_state = 5}, + [35] = {.lex_state = 540, .external_lex_state = 2}, [36] = {.lex_state = 540, .external_lex_state = 2}, [37] = {.lex_state = 540, .external_lex_state = 2}, [38] = {.lex_state = 540, .external_lex_state = 2}, - [39] = {.lex_state = 540, .external_lex_state = 2}, + [39] = {.lex_state = 399, .external_lex_state = 6}, [40] = {.lex_state = 540, .external_lex_state = 2}, [41] = {.lex_state = 540, .external_lex_state = 2}, [42] = {.lex_state = 540, .external_lex_state = 2}, @@ -21174,46 +21181,46 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 540, .external_lex_state = 2}, [62] = {.lex_state = 540, .external_lex_state = 2}, [63] = {.lex_state = 540, .external_lex_state = 2}, - [64] = {.lex_state = 416, .external_lex_state = 2}, + [64] = {.lex_state = 540, .external_lex_state = 2}, [65] = {.lex_state = 540, .external_lex_state = 2}, - [66] = {.lex_state = 416, .external_lex_state = 2}, + [66] = {.lex_state = 540, .external_lex_state = 2}, [67] = {.lex_state = 416, .external_lex_state = 2}, [68] = {.lex_state = 540, .external_lex_state = 2}, - [69] = {.lex_state = 416, .external_lex_state = 2}, - [70] = {.lex_state = 540, .external_lex_state = 2}, - [71] = {.lex_state = 416, .external_lex_state = 2}, - [72] = {.lex_state = 540, .external_lex_state = 2}, + [69] = {.lex_state = 540, .external_lex_state = 2}, + [70] = {.lex_state = 416, .external_lex_state = 2}, + [71] = {.lex_state = 540, .external_lex_state = 2}, + [72] = {.lex_state = 416, .external_lex_state = 2}, [73] = {.lex_state = 540, .external_lex_state = 2}, - [74] = {.lex_state = 416, .external_lex_state = 2}, + [74] = {.lex_state = 540, .external_lex_state = 2}, [75] = {.lex_state = 416, .external_lex_state = 2}, - [76] = {.lex_state = 540, .external_lex_state = 2}, - [77] = {.lex_state = 540, .external_lex_state = 2}, - [78] = {.lex_state = 416, .external_lex_state = 2}, - [79] = {.lex_state = 416, .external_lex_state = 2}, - [80] = {.lex_state = 540, .external_lex_state = 2}, + [76] = {.lex_state = 416, .external_lex_state = 2}, + [77] = {.lex_state = 416, .external_lex_state = 2}, + [78] = {.lex_state = 540, .external_lex_state = 2}, + [79] = {.lex_state = 540, .external_lex_state = 2}, + [80] = {.lex_state = 416, .external_lex_state = 2}, [81] = {.lex_state = 540, .external_lex_state = 2}, [82] = {.lex_state = 416, .external_lex_state = 2}, [83] = {.lex_state = 540, .external_lex_state = 2}, - [84] = {.lex_state = 416, .external_lex_state = 2}, - [85] = {.lex_state = 540, .external_lex_state = 2}, - [86] = {.lex_state = 416, .external_lex_state = 2}, + [84] = {.lex_state = 540, .external_lex_state = 2}, + [85] = {.lex_state = 416, .external_lex_state = 2}, + [86] = {.lex_state = 540, .external_lex_state = 2}, [87] = {.lex_state = 416, .external_lex_state = 2}, [88] = {.lex_state = 540, .external_lex_state = 2}, [89] = {.lex_state = 540, .external_lex_state = 2}, [90] = {.lex_state = 416, .external_lex_state = 2}, - [91] = {.lex_state = 540, .external_lex_state = 2}, + [91] = {.lex_state = 416, .external_lex_state = 2}, [92] = {.lex_state = 416, .external_lex_state = 2}, [93] = {.lex_state = 540, .external_lex_state = 2}, [94] = {.lex_state = 540, .external_lex_state = 2}, [95] = {.lex_state = 416, .external_lex_state = 2}, - [96] = {.lex_state = 540, .external_lex_state = 2}, - [97] = {.lex_state = 416, .external_lex_state = 2}, + [96] = {.lex_state = 416, .external_lex_state = 2}, + [97] = {.lex_state = 540, .external_lex_state = 2}, [98] = {.lex_state = 540, .external_lex_state = 2}, [99] = {.lex_state = 540, .external_lex_state = 2}, - [100] = {.lex_state = 416, .external_lex_state = 2}, - [101] = {.lex_state = 416, .external_lex_state = 2}, + [100] = {.lex_state = 540, .external_lex_state = 2}, + [101] = {.lex_state = 540, .external_lex_state = 2}, [102] = {.lex_state = 540, .external_lex_state = 2}, - [103] = {.lex_state = 540, .external_lex_state = 2}, + [103] = {.lex_state = 416, .external_lex_state = 2}, [104] = {.lex_state = 540, .external_lex_state = 2}, [105] = {.lex_state = 540, .external_lex_state = 2}, [106] = {.lex_state = 540, .external_lex_state = 2}, @@ -21364,7 +21371,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 540, .external_lex_state = 2}, [252] = {.lex_state = 540, .external_lex_state = 2}, [253] = {.lex_state = 540, .external_lex_state = 2}, - [254] = {.lex_state = 540, .external_lex_state = 2}, + [254] = {.lex_state = 416, .external_lex_state = 2}, [255] = {.lex_state = 540, .external_lex_state = 2}, [256] = {.lex_state = 540, .external_lex_state = 2}, [257] = {.lex_state = 540, .external_lex_state = 2}, @@ -21519,10 +21526,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [406] = {.lex_state = 540, .external_lex_state = 2}, [407] = {.lex_state = 540, .external_lex_state = 2}, [408] = {.lex_state = 540, .external_lex_state = 2}, - [409] = {.lex_state = 540, .external_lex_state = 2}, + [409] = {.lex_state = 416, .external_lex_state = 2}, [410] = {.lex_state = 540, .external_lex_state = 2}, [411] = {.lex_state = 540, .external_lex_state = 2}, - [412] = {.lex_state = 540, .external_lex_state = 2}, + [412] = {.lex_state = 416, .external_lex_state = 2}, [413] = {.lex_state = 540, .external_lex_state = 2}, [414] = {.lex_state = 540, .external_lex_state = 2}, [415] = {.lex_state = 540, .external_lex_state = 2}, @@ -21558,14 +21565,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 540, .external_lex_state = 2}, [446] = {.lex_state = 540, .external_lex_state = 2}, [447] = {.lex_state = 402, .external_lex_state = 7}, - [448] = {.lex_state = 402, .external_lex_state = 7}, - [449] = {.lex_state = 402, .external_lex_state = 7}, + [448] = {.lex_state = 403, .external_lex_state = 8}, + [449] = {.lex_state = 401, .external_lex_state = 8}, [450] = {.lex_state = 402, .external_lex_state = 7}, [451] = {.lex_state = 402, .external_lex_state = 7}, - [452] = {.lex_state = 400, .external_lex_state = 8}, - [453] = {.lex_state = 403, .external_lex_state = 8}, + [452] = {.lex_state = 402, .external_lex_state = 7}, + [453] = {.lex_state = 400, .external_lex_state = 8}, [454] = {.lex_state = 402, .external_lex_state = 7}, - [455] = {.lex_state = 401, .external_lex_state = 8}, + [455] = {.lex_state = 402, .external_lex_state = 7}, [456] = {.lex_state = 402, .external_lex_state = 7}, [457] = {.lex_state = 402, .external_lex_state = 7}, [458] = {.lex_state = 400, .external_lex_state = 8}, @@ -21600,3081 +21607,3081 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [487] = {.lex_state = 156, .external_lex_state = 4}, [488] = {.lex_state = 233, .external_lex_state = 11}, [489] = {.lex_state = 233, .external_lex_state = 11}, - [490] = {.lex_state = 233, .external_lex_state = 11}, + [490] = {.lex_state = 420, .external_lex_state = 6}, [491] = {.lex_state = 233, .external_lex_state = 11}, - [492] = {.lex_state = 420, .external_lex_state = 5}, - [493] = {.lex_state = 420, .external_lex_state = 5}, - [494] = {.lex_state = 420, .external_lex_state = 5}, - [495] = {.lex_state = 420, .external_lex_state = 5}, - [496] = {.lex_state = 420, .external_lex_state = 5}, - [497] = {.lex_state = 420, .external_lex_state = 5}, - [498] = {.lex_state = 420, .external_lex_state = 5}, - [499] = {.lex_state = 420, .external_lex_state = 5}, - [500] = {.lex_state = 420, .external_lex_state = 5}, - [501] = {.lex_state = 420, .external_lex_state = 5}, - [502] = {.lex_state = 420, .external_lex_state = 5}, - [503] = {.lex_state = 420, .external_lex_state = 5}, - [504] = {.lex_state = 420, .external_lex_state = 5}, - [505] = {.lex_state = 420, .external_lex_state = 5}, - [506] = {.lex_state = 420, .external_lex_state = 5}, - [507] = {.lex_state = 420, .external_lex_state = 5}, - [508] = {.lex_state = 420, .external_lex_state = 5}, - [509] = {.lex_state = 420, .external_lex_state = 5}, - [510] = {.lex_state = 420, .external_lex_state = 5}, - [511] = {.lex_state = 420, .external_lex_state = 5}, - [512] = {.lex_state = 420, .external_lex_state = 5}, - [513] = {.lex_state = 420, .external_lex_state = 5}, - [514] = {.lex_state = 420, .external_lex_state = 5}, - [515] = {.lex_state = 420, .external_lex_state = 5}, - [516] = {.lex_state = 420, .external_lex_state = 5}, + [492] = {.lex_state = 420, .external_lex_state = 6}, + [493] = {.lex_state = 233, .external_lex_state = 11}, + [494] = {.lex_state = 420, .external_lex_state = 6}, + [495] = {.lex_state = 420, .external_lex_state = 6}, + [496] = {.lex_state = 420, .external_lex_state = 6}, + [497] = {.lex_state = 420, .external_lex_state = 6}, + [498] = {.lex_state = 420, .external_lex_state = 6}, + [499] = {.lex_state = 420, .external_lex_state = 6}, + [500] = {.lex_state = 420, .external_lex_state = 6}, + [501] = {.lex_state = 420, .external_lex_state = 6}, + [502] = {.lex_state = 420, .external_lex_state = 6}, + [503] = {.lex_state = 420, .external_lex_state = 6}, + [504] = {.lex_state = 420, .external_lex_state = 6}, + [505] = {.lex_state = 420, .external_lex_state = 6}, + [506] = {.lex_state = 420, .external_lex_state = 6}, + [507] = {.lex_state = 420, .external_lex_state = 6}, + [508] = {.lex_state = 420, .external_lex_state = 6}, + [509] = {.lex_state = 420, .external_lex_state = 6}, + [510] = {.lex_state = 420, .external_lex_state = 6}, + [511] = {.lex_state = 420, .external_lex_state = 6}, + [512] = {.lex_state = 420, .external_lex_state = 6}, + [513] = {.lex_state = 420, .external_lex_state = 6}, + [514] = {.lex_state = 420, .external_lex_state = 6}, + [515] = {.lex_state = 420, .external_lex_state = 6}, + [516] = {.lex_state = 420, .external_lex_state = 6}, [517] = {.lex_state = 421, .external_lex_state = 12}, [518] = {.lex_state = 421, .external_lex_state = 12}, [519] = {.lex_state = 421, .external_lex_state = 12}, - [520] = {.lex_state = 421, .external_lex_state = 12}, + [520] = {.lex_state = 417, .external_lex_state = 2}, [521] = {.lex_state = 417, .external_lex_state = 2}, - [522] = {.lex_state = 417, .external_lex_state = 2}, + [522] = {.lex_state = 421, .external_lex_state = 12}, [523] = {.lex_state = 236, .external_lex_state = 13}, [524] = {.lex_state = 236, .external_lex_state = 13}, [525] = {.lex_state = 239, .external_lex_state = 11}, [526] = {.lex_state = 239, .external_lex_state = 11}, [527] = {.lex_state = 236, .external_lex_state = 14}, [528] = {.lex_state = 521, .external_lex_state = 11}, - [529] = {.lex_state = 236, .external_lex_state = 14}, + [529] = {.lex_state = 521, .external_lex_state = 11}, [530] = {.lex_state = 521, .external_lex_state = 11}, [531] = {.lex_state = 236, .external_lex_state = 14}, - [532] = {.lex_state = 521, .external_lex_state = 11}, + [532] = {.lex_state = 236, .external_lex_state = 14}, [533] = {.lex_state = 521, .external_lex_state = 11}, - [534] = {.lex_state = 245, .external_lex_state = 15}, - [535] = {.lex_state = 239, .external_lex_state = 16}, - [536] = {.lex_state = 216, .external_lex_state = 17}, + [534] = {.lex_state = 521, .external_lex_state = 11}, + [535] = {.lex_state = 245, .external_lex_state = 15}, + [536] = {.lex_state = 239, .external_lex_state = 16}, [537] = {.lex_state = 216, .external_lex_state = 17}, - [538] = {.lex_state = 521, .external_lex_state = 11}, + [538] = {.lex_state = 239, .external_lex_state = 16}, [539] = {.lex_state = 245, .external_lex_state = 15}, - [540] = {.lex_state = 521, .external_lex_state = 11}, - [541] = {.lex_state = 245, .external_lex_state = 15}, - [542] = {.lex_state = 521, .external_lex_state = 11}, - [543] = {.lex_state = 239, .external_lex_state = 16}, + [540] = {.lex_state = 239, .external_lex_state = 16}, + [541] = {.lex_state = 521, .external_lex_state = 11}, + [542] = {.lex_state = 245, .external_lex_state = 15}, + [543] = {.lex_state = 216, .external_lex_state = 17}, [544] = {.lex_state = 521, .external_lex_state = 11}, - [545] = {.lex_state = 239, .external_lex_state = 16}, + [545] = {.lex_state = 521, .external_lex_state = 11}, [546] = {.lex_state = 235, .external_lex_state = 9}, - [547] = {.lex_state = 238, .external_lex_state = 18}, + [547] = {.lex_state = 235, .external_lex_state = 9}, [548] = {.lex_state = 521, .external_lex_state = 16}, - [549] = {.lex_state = 235, .external_lex_state = 9}, - [550] = {.lex_state = 248, .external_lex_state = 19}, + [549] = {.lex_state = 521, .external_lex_state = 16}, + [550] = {.lex_state = 248, .external_lex_state = 18}, [551] = {.lex_state = 521, .external_lex_state = 16}, - [552] = {.lex_state = 521, .external_lex_state = 16}, - [553] = {.lex_state = 521, .external_lex_state = 16}, - [554] = {.lex_state = 248, .external_lex_state = 19}, + [552] = {.lex_state = 248, .external_lex_state = 18}, + [553] = {.lex_state = 248, .external_lex_state = 18}, + [554] = {.lex_state = 521, .external_lex_state = 16}, [555] = {.lex_state = 521, .external_lex_state = 16}, [556] = {.lex_state = 521, .external_lex_state = 16}, - [557] = {.lex_state = 248, .external_lex_state = 19}, - [558] = {.lex_state = 238, .external_lex_state = 18}, - [559] = {.lex_state = 525, .external_lex_state = 19}, + [557] = {.lex_state = 238, .external_lex_state = 19}, + [558] = {.lex_state = 238, .external_lex_state = 19}, + [559] = {.lex_state = 251, .external_lex_state = 15}, [560] = {.lex_state = 241, .external_lex_state = 20}, - [561] = {.lex_state = 521, .external_lex_state = 16}, - [562] = {.lex_state = 521, .external_lex_state = 16}, - [563] = {.lex_state = 525, .external_lex_state = 19}, - [564] = {.lex_state = 241, .external_lex_state = 20}, - [565] = {.lex_state = 525, .external_lex_state = 19}, - [566] = {.lex_state = 525, .external_lex_state = 19}, - [567] = {.lex_state = 522, .external_lex_state = 9}, - [568] = {.lex_state = 525, .external_lex_state = 19}, - [569] = {.lex_state = 254, .external_lex_state = 15}, - [570] = {.lex_state = 540, .external_lex_state = 2}, - [571] = {.lex_state = 254, .external_lex_state = 15}, - [572] = {.lex_state = 254, .external_lex_state = 15}, - [573] = {.lex_state = 525, .external_lex_state = 19}, - [574] = {.lex_state = 522, .external_lex_state = 9}, + [561] = {.lex_state = 526, .external_lex_state = 18}, + [562] = {.lex_state = 526, .external_lex_state = 18}, + [563] = {.lex_state = 521, .external_lex_state = 16}, + [564] = {.lex_state = 251, .external_lex_state = 15}, + [565] = {.lex_state = 251, .external_lex_state = 15}, + [566] = {.lex_state = 526, .external_lex_state = 18}, + [567] = {.lex_state = 251, .external_lex_state = 15}, + [568] = {.lex_state = 251, .external_lex_state = 15}, + [569] = {.lex_state = 526, .external_lex_state = 18}, + [570] = {.lex_state = 241, .external_lex_state = 20}, + [571] = {.lex_state = 522, .external_lex_state = 9}, + [572] = {.lex_state = 540, .external_lex_state = 2}, + [573] = {.lex_state = 526, .external_lex_state = 18}, + [574] = {.lex_state = 247, .external_lex_state = 9}, [575] = {.lex_state = 247, .external_lex_state = 9}, - [576] = {.lex_state = 247, .external_lex_state = 9}, + [576] = {.lex_state = 521, .external_lex_state = 16}, [577] = {.lex_state = 521, .external_lex_state = 16}, [578] = {.lex_state = 521, .external_lex_state = 16}, - [579] = {.lex_state = 521, .external_lex_state = 16}, - [580] = {.lex_state = 415, .external_lex_state = 6}, - [581] = {.lex_state = 239, .external_lex_state = 11}, - [582] = {.lex_state = 524, .external_lex_state = 20}, - [583] = {.lex_state = 524, .external_lex_state = 20}, - [584] = {.lex_state = 253, .external_lex_state = 20}, - [585] = {.lex_state = 253, .external_lex_state = 20}, - [586] = {.lex_state = 254, .external_lex_state = 15}, - [587] = {.lex_state = 254, .external_lex_state = 15}, - [588] = {.lex_state = 245, .external_lex_state = 21}, - [589] = {.lex_state = 525, .external_lex_state = 19}, - [590] = {.lex_state = 540, .external_lex_state = 2}, - [591] = {.lex_state = 245, .external_lex_state = 21}, - [592] = {.lex_state = 254, .external_lex_state = 21}, - [593] = {.lex_state = 254, .external_lex_state = 21}, - [594] = {.lex_state = 254, .external_lex_state = 21}, - [595] = {.lex_state = 257, .external_lex_state = 19}, - [596] = {.lex_state = 257, .external_lex_state = 19}, - [597] = {.lex_state = 257, .external_lex_state = 19}, - [598] = {.lex_state = 245, .external_lex_state = 21}, - [599] = {.lex_state = 415, .external_lex_state = 6}, - [600] = {.lex_state = 525, .external_lex_state = 19}, - [601] = {.lex_state = 525, .external_lex_state = 19}, - [602] = {.lex_state = 522, .external_lex_state = 9}, - [603] = {.lex_state = 525, .external_lex_state = 19}, - [604] = {.lex_state = 522, .external_lex_state = 9}, - [605] = {.lex_state = 239, .external_lex_state = 11}, - [606] = {.lex_state = 540, .external_lex_state = 2}, - [607] = {.lex_state = 525, .external_lex_state = 19}, + [579] = {.lex_state = 522, .external_lex_state = 9}, + [580] = {.lex_state = 521, .external_lex_state = 16}, + [581] = {.lex_state = 526, .external_lex_state = 18}, + [582] = {.lex_state = 415, .external_lex_state = 5}, + [583] = {.lex_state = 245, .external_lex_state = 21}, + [584] = {.lex_state = 451, .external_lex_state = 2}, + [585] = {.lex_state = 540, .external_lex_state = 2}, + [586] = {.lex_state = 524, .external_lex_state = 20}, + [587] = {.lex_state = 524, .external_lex_state = 20}, + [588] = {.lex_state = 253, .external_lex_state = 20}, + [589] = {.lex_state = 253, .external_lex_state = 20}, + [590] = {.lex_state = 245, .external_lex_state = 21}, + [591] = {.lex_state = 251, .external_lex_state = 21}, + [592] = {.lex_state = 251, .external_lex_state = 15}, + [593] = {.lex_state = 251, .external_lex_state = 21}, + [594] = {.lex_state = 251, .external_lex_state = 15}, + [595] = {.lex_state = 451, .external_lex_state = 2}, + [596] = {.lex_state = 522, .external_lex_state = 9}, + [597] = {.lex_state = 257, .external_lex_state = 18}, + [598] = {.lex_state = 526, .external_lex_state = 18}, + [599] = {.lex_state = 540, .external_lex_state = 2}, + [600] = {.lex_state = 522, .external_lex_state = 9}, + [601] = {.lex_state = 251, .external_lex_state = 21}, + [602] = {.lex_state = 251, .external_lex_state = 21}, + [603] = {.lex_state = 251, .external_lex_state = 21}, + [604] = {.lex_state = 257, .external_lex_state = 18}, + [605] = {.lex_state = 257, .external_lex_state = 18}, + [606] = {.lex_state = 257, .external_lex_state = 18}, + [607] = {.lex_state = 451, .external_lex_state = 2}, [608] = {.lex_state = 451, .external_lex_state = 2}, - [609] = {.lex_state = 527, .external_lex_state = 19}, + [609] = {.lex_state = 451, .external_lex_state = 2}, [610] = {.lex_state = 451, .external_lex_state = 2}, - [611] = {.lex_state = 248, .external_lex_state = 22}, - [612] = {.lex_state = 257, .external_lex_state = 19}, - [613] = {.lex_state = 257, .external_lex_state = 19}, - [614] = {.lex_state = 248, .external_lex_state = 22}, - [615] = {.lex_state = 527, .external_lex_state = 19}, - [616] = {.lex_state = 527, .external_lex_state = 19}, - [617] = {.lex_state = 257, .external_lex_state = 22}, - [618] = {.lex_state = 451, .external_lex_state = 2}, - [619] = {.lex_state = 455, .external_lex_state = 23}, - [620] = {.lex_state = 257, .external_lex_state = 22}, - [621] = {.lex_state = 257, .external_lex_state = 22}, - [622] = {.lex_state = 527, .external_lex_state = 19}, - [623] = {.lex_state = 527, .external_lex_state = 19}, - [624] = {.lex_state = 451, .external_lex_state = 2}, - [625] = {.lex_state = 256, .external_lex_state = 15}, - [626] = {.lex_state = 451, .external_lex_state = 2}, - [627] = {.lex_state = 256, .external_lex_state = 15}, - [628] = {.lex_state = 256, .external_lex_state = 15}, - [629] = {.lex_state = 527, .external_lex_state = 19}, - [630] = {.lex_state = 524, .external_lex_state = 20}, - [631] = {.lex_state = 451, .external_lex_state = 2}, - [632] = {.lex_state = 524, .external_lex_state = 20}, - [633] = {.lex_state = 263, .external_lex_state = 21}, - [634] = {.lex_state = 451, .external_lex_state = 2}, - [635] = {.lex_state = 263, .external_lex_state = 21}, - [636] = {.lex_state = 248, .external_lex_state = 22}, - [637] = {.lex_state = 451, .external_lex_state = 2}, - [638] = {.lex_state = 263, .external_lex_state = 21}, + [611] = {.lex_state = 526, .external_lex_state = 18}, + [612] = {.lex_state = 451, .external_lex_state = 2}, + [613] = {.lex_state = 526, .external_lex_state = 18}, + [614] = {.lex_state = 526, .external_lex_state = 18}, + [615] = {.lex_state = 415, .external_lex_state = 5}, + [616] = {.lex_state = 526, .external_lex_state = 18}, + [617] = {.lex_state = 451, .external_lex_state = 2}, + [618] = {.lex_state = 239, .external_lex_state = 11}, + [619] = {.lex_state = 239, .external_lex_state = 11}, + [620] = {.lex_state = 245, .external_lex_state = 21}, + [621] = {.lex_state = 257, .external_lex_state = 18}, + [622] = {.lex_state = 257, .external_lex_state = 18}, + [623] = {.lex_state = 527, .external_lex_state = 18}, + [624] = {.lex_state = 527, .external_lex_state = 18}, + [625] = {.lex_state = 527, .external_lex_state = 18}, + [626] = {.lex_state = 524, .external_lex_state = 20}, + [627] = {.lex_state = 524, .external_lex_state = 20}, + [628] = {.lex_state = 263, .external_lex_state = 21}, + [629] = {.lex_state = 263, .external_lex_state = 21}, + [630] = {.lex_state = 263, .external_lex_state = 21}, + [631] = {.lex_state = 251, .external_lex_state = 21}, + [632] = {.lex_state = 251, .external_lex_state = 21}, + [633] = {.lex_state = 527, .external_lex_state = 18}, + [634] = {.lex_state = 257, .external_lex_state = 22}, + [635] = {.lex_state = 257, .external_lex_state = 18}, + [636] = {.lex_state = 257, .external_lex_state = 22}, + [637] = {.lex_state = 256, .external_lex_state = 15}, + [638] = {.lex_state = 527, .external_lex_state = 18}, [639] = {.lex_state = 455, .external_lex_state = 23}, - [640] = {.lex_state = 254, .external_lex_state = 21}, - [641] = {.lex_state = 254, .external_lex_state = 21}, - [642] = {.lex_state = 256, .external_lex_state = 15}, - [643] = {.lex_state = 239, .external_lex_state = 16}, - [644] = {.lex_state = 525, .external_lex_state = 22}, - [645] = {.lex_state = 527, .external_lex_state = 22}, - [646] = {.lex_state = 527, .external_lex_state = 22}, - [647] = {.lex_state = 527, .external_lex_state = 22}, - [648] = {.lex_state = 525, .external_lex_state = 22}, - [649] = {.lex_state = 527, .external_lex_state = 19}, - [650] = {.lex_state = 259, .external_lex_state = 19}, - [651] = {.lex_state = 527, .external_lex_state = 19}, - [652] = {.lex_state = 263, .external_lex_state = 21}, + [640] = {.lex_state = 248, .external_lex_state = 22}, + [641] = {.lex_state = 455, .external_lex_state = 23}, + [642] = {.lex_state = 257, .external_lex_state = 22}, + [643] = {.lex_state = 256, .external_lex_state = 15}, + [644] = {.lex_state = 257, .external_lex_state = 22}, + [645] = {.lex_state = 257, .external_lex_state = 22}, + [646] = {.lex_state = 256, .external_lex_state = 15}, + [647] = {.lex_state = 527, .external_lex_state = 18}, + [648] = {.lex_state = 248, .external_lex_state = 22}, + [649] = {.lex_state = 527, .external_lex_state = 18}, + [650] = {.lex_state = 256, .external_lex_state = 15}, + [651] = {.lex_state = 527, .external_lex_state = 18}, + [652] = {.lex_state = 527, .external_lex_state = 18}, [653] = {.lex_state = 263, .external_lex_state = 21}, - [654] = {.lex_state = 527, .external_lex_state = 19}, - [655] = {.lex_state = 527, .external_lex_state = 19}, - [656] = {.lex_state = 525, .external_lex_state = 22}, - [657] = {.lex_state = 525, .external_lex_state = 22}, - [658] = {.lex_state = 259, .external_lex_state = 19}, - [659] = {.lex_state = 527, .external_lex_state = 22}, - [660] = {.lex_state = 266, .external_lex_state = 22}, - [661] = {.lex_state = 266, .external_lex_state = 22}, - [662] = {.lex_state = 266, .external_lex_state = 22}, - [663] = {.lex_state = 525, .external_lex_state = 22}, - [664] = {.lex_state = 257, .external_lex_state = 22}, - [665] = {.lex_state = 257, .external_lex_state = 22}, - [666] = {.lex_state = 527, .external_lex_state = 22}, - [667] = {.lex_state = 262, .external_lex_state = 15}, - [668] = {.lex_state = 262, .external_lex_state = 15}, - [669] = {.lex_state = 262, .external_lex_state = 15}, - [670] = {.lex_state = 262, .external_lex_state = 15}, - [671] = {.lex_state = 262, .external_lex_state = 15}, - [672] = {.lex_state = 262, .external_lex_state = 15}, - [673] = {.lex_state = 527, .external_lex_state = 22}, - [674] = {.lex_state = 259, .external_lex_state = 19}, - [675] = {.lex_state = 259, .external_lex_state = 19}, - [676] = {.lex_state = 527, .external_lex_state = 19}, - [677] = {.lex_state = 527, .external_lex_state = 19}, - [678] = {.lex_state = 527, .external_lex_state = 19}, - [679] = {.lex_state = 239, .external_lex_state = 16}, - [680] = {.lex_state = 239, .external_lex_state = 16}, - [681] = {.lex_state = 525, .external_lex_state = 22}, - [682] = {.lex_state = 540, .external_lex_state = 2}, - [683] = {.lex_state = 266, .external_lex_state = 22}, - [684] = {.lex_state = 527, .external_lex_state = 22}, - [685] = {.lex_state = 266, .external_lex_state = 22}, - [686] = {.lex_state = 527, .external_lex_state = 22}, - [687] = {.lex_state = 269, .external_lex_state = 24}, - [688] = {.lex_state = 269, .external_lex_state = 24}, - [689] = {.lex_state = 269, .external_lex_state = 24}, - [690] = {.lex_state = 529, .external_lex_state = 22}, - [691] = {.lex_state = 540, .external_lex_state = 2}, - [692] = {.lex_state = 528, .external_lex_state = 19}, - [693] = {.lex_state = 528, .external_lex_state = 19}, - [694] = {.lex_state = 269, .external_lex_state = 24}, - [695] = {.lex_state = 455, .external_lex_state = 25}, - [696] = {.lex_state = 269, .external_lex_state = 24}, - [697] = {.lex_state = 269, .external_lex_state = 24}, - [698] = {.lex_state = 529, .external_lex_state = 22}, - [699] = {.lex_state = 455, .external_lex_state = 25}, - [700] = {.lex_state = 268, .external_lex_state = 9}, - [701] = {.lex_state = 268, .external_lex_state = 9}, - [702] = {.lex_state = 455, .external_lex_state = 25}, - [703] = {.lex_state = 527, .external_lex_state = 22}, - [704] = {.lex_state = 269, .external_lex_state = 24}, - [705] = {.lex_state = 525, .external_lex_state = 22}, - [706] = {.lex_state = 269, .external_lex_state = 24}, - [707] = {.lex_state = 529, .external_lex_state = 22}, - [708] = {.lex_state = 269, .external_lex_state = 24}, - [709] = {.lex_state = 527, .external_lex_state = 22}, - [710] = {.lex_state = 269, .external_lex_state = 24}, - [711] = {.lex_state = 529, .external_lex_state = 22}, - [712] = {.lex_state = 527, .external_lex_state = 22}, - [713] = {.lex_state = 271, .external_lex_state = 19}, - [714] = {.lex_state = 529, .external_lex_state = 22}, - [715] = {.lex_state = 271, .external_lex_state = 19}, - [716] = {.lex_state = 525, .external_lex_state = 22}, - [717] = {.lex_state = 271, .external_lex_state = 19}, - [718] = {.lex_state = 527, .external_lex_state = 22}, - [719] = {.lex_state = 273, .external_lex_state = 19}, - [720] = {.lex_state = 527, .external_lex_state = 22}, - [721] = {.lex_state = 525, .external_lex_state = 22}, - [722] = {.lex_state = 527, .external_lex_state = 22}, + [654] = {.lex_state = 248, .external_lex_state = 22}, + [655] = {.lex_state = 263, .external_lex_state = 21}, + [656] = {.lex_state = 527, .external_lex_state = 18}, + [657] = {.lex_state = 239, .external_lex_state = 16}, + [658] = {.lex_state = 259, .external_lex_state = 15}, + [659] = {.lex_state = 266, .external_lex_state = 24}, + [660] = {.lex_state = 527, .external_lex_state = 22}, + [661] = {.lex_state = 526, .external_lex_state = 22}, + [662] = {.lex_state = 263, .external_lex_state = 21}, + [663] = {.lex_state = 266, .external_lex_state = 24}, + [664] = {.lex_state = 527, .external_lex_state = 22}, + [665] = {.lex_state = 269, .external_lex_state = 22}, + [666] = {.lex_state = 526, .external_lex_state = 22}, + [667] = {.lex_state = 259, .external_lex_state = 15}, + [668] = {.lex_state = 269, .external_lex_state = 22}, + [669] = {.lex_state = 269, .external_lex_state = 22}, + [670] = {.lex_state = 527, .external_lex_state = 22}, + [671] = {.lex_state = 266, .external_lex_state = 24}, + [672] = {.lex_state = 527, .external_lex_state = 22}, + [673] = {.lex_state = 263, .external_lex_state = 21}, + [674] = {.lex_state = 257, .external_lex_state = 22}, + [675] = {.lex_state = 257, .external_lex_state = 22}, + [676] = {.lex_state = 266, .external_lex_state = 24}, + [677] = {.lex_state = 262, .external_lex_state = 18}, + [678] = {.lex_state = 526, .external_lex_state = 22}, + [679] = {.lex_state = 527, .external_lex_state = 22}, + [680] = {.lex_state = 527, .external_lex_state = 18}, + [681] = {.lex_state = 266, .external_lex_state = 24}, + [682] = {.lex_state = 527, .external_lex_state = 22}, + [683] = {.lex_state = 259, .external_lex_state = 15}, + [684] = {.lex_state = 259, .external_lex_state = 15}, + [685] = {.lex_state = 259, .external_lex_state = 15}, + [686] = {.lex_state = 266, .external_lex_state = 24}, + [687] = {.lex_state = 259, .external_lex_state = 15}, + [688] = {.lex_state = 527, .external_lex_state = 18}, + [689] = {.lex_state = 266, .external_lex_state = 24}, + [690] = {.lex_state = 269, .external_lex_state = 22}, + [691] = {.lex_state = 526, .external_lex_state = 22}, + [692] = {.lex_state = 269, .external_lex_state = 22}, + [693] = {.lex_state = 527, .external_lex_state = 18}, + [694] = {.lex_state = 527, .external_lex_state = 18}, + [695] = {.lex_state = 527, .external_lex_state = 18}, + [696] = {.lex_state = 262, .external_lex_state = 18}, + [697] = {.lex_state = 527, .external_lex_state = 18}, + [698] = {.lex_state = 527, .external_lex_state = 22}, + [699] = {.lex_state = 527, .external_lex_state = 22}, + [700] = {.lex_state = 262, .external_lex_state = 18}, + [701] = {.lex_state = 527, .external_lex_state = 22}, + [702] = {.lex_state = 526, .external_lex_state = 22}, + [703] = {.lex_state = 266, .external_lex_state = 24}, + [704] = {.lex_state = 239, .external_lex_state = 16}, + [705] = {.lex_state = 527, .external_lex_state = 22}, + [706] = {.lex_state = 266, .external_lex_state = 24}, + [707] = {.lex_state = 239, .external_lex_state = 16}, + [708] = {.lex_state = 527, .external_lex_state = 18}, + [709] = {.lex_state = 527, .external_lex_state = 18}, + [710] = {.lex_state = 266, .external_lex_state = 24}, + [711] = {.lex_state = 526, .external_lex_state = 22}, + [712] = {.lex_state = 527, .external_lex_state = 18}, + [713] = {.lex_state = 262, .external_lex_state = 18}, + [714] = {.lex_state = 527, .external_lex_state = 22}, + [715] = {.lex_state = 528, .external_lex_state = 18}, + [716] = {.lex_state = 527, .external_lex_state = 22}, + [717] = {.lex_state = 268, .external_lex_state = 18}, + [718] = {.lex_state = 268, .external_lex_state = 18}, + [719] = {.lex_state = 455, .external_lex_state = 25}, + [720] = {.lex_state = 529, .external_lex_state = 22}, + [721] = {.lex_state = 529, .external_lex_state = 22}, + [722] = {.lex_state = 529, .external_lex_state = 22}, [723] = {.lex_state = 529, .external_lex_state = 22}, - [724] = {.lex_state = 527, .external_lex_state = 22}, - [725] = {.lex_state = 525, .external_lex_state = 22}, - [726] = {.lex_state = 540, .external_lex_state = 2}, - [727] = {.lex_state = 271, .external_lex_state = 19}, - [728] = {.lex_state = 248, .external_lex_state = 19}, - [729] = {.lex_state = 528, .external_lex_state = 19}, - [730] = {.lex_state = 273, .external_lex_state = 19}, - [731] = {.lex_state = 248, .external_lex_state = 19}, - [732] = {.lex_state = 273, .external_lex_state = 19}, - [733] = {.lex_state = 271, .external_lex_state = 19}, - [734] = {.lex_state = 271, .external_lex_state = 19}, - [735] = {.lex_state = 273, .external_lex_state = 19}, - [736] = {.lex_state = 525, .external_lex_state = 22}, - [737] = {.lex_state = 527, .external_lex_state = 19}, - [738] = {.lex_state = 528, .external_lex_state = 19}, - [739] = {.lex_state = 527, .external_lex_state = 19}, - [740] = {.lex_state = 248, .external_lex_state = 19}, - [741] = {.lex_state = 416, .external_lex_state = 2}, - [742] = {.lex_state = 530, .external_lex_state = 19}, - [743] = {.lex_state = 529, .external_lex_state = 22}, - [744] = {.lex_state = 530, .external_lex_state = 19}, - [745] = {.lex_state = 277, .external_lex_state = 19}, - [746] = {.lex_state = 277, .external_lex_state = 19}, - [747] = {.lex_state = 464, .external_lex_state = 26}, - [748] = {.lex_state = 530, .external_lex_state = 19}, - [749] = {.lex_state = 405, .external_lex_state = 27}, - [750] = {.lex_state = 405, .external_lex_state = 27}, - [751] = {.lex_state = 530, .external_lex_state = 19}, - [752] = {.lex_state = 530, .external_lex_state = 19}, - [753] = {.lex_state = 540, .external_lex_state = 2}, - [754] = {.lex_state = 279, .external_lex_state = 20}, - [755] = {.lex_state = 279, .external_lex_state = 20}, - [756] = {.lex_state = 529, .external_lex_state = 22}, - [757] = {.lex_state = 529, .external_lex_state = 22}, - [758] = {.lex_state = 529, .external_lex_state = 22}, - [759] = {.lex_state = 529, .external_lex_state = 22}, - [760] = {.lex_state = 277, .external_lex_state = 19}, - [761] = {.lex_state = 464, .external_lex_state = 26}, - [762] = {.lex_state = 527, .external_lex_state = 22}, - [763] = {.lex_state = 540, .external_lex_state = 2}, - [764] = {.lex_state = 527, .external_lex_state = 22}, - [765] = {.lex_state = 529, .external_lex_state = 22}, - [766] = {.lex_state = 529, .external_lex_state = 22}, - [767] = {.lex_state = 277, .external_lex_state = 19}, - [768] = {.lex_state = 529, .external_lex_state = 22}, - [769] = {.lex_state = 527, .external_lex_state = 22}, - [770] = {.lex_state = 527, .external_lex_state = 22}, - [771] = {.lex_state = 529, .external_lex_state = 22}, - [772] = {.lex_state = 277, .external_lex_state = 19}, - [773] = {.lex_state = 277, .external_lex_state = 19}, - [774] = {.lex_state = 528, .external_lex_state = 19}, - [775] = {.lex_state = 530, .external_lex_state = 19}, - [776] = {.lex_state = 528, .external_lex_state = 19}, - [777] = {.lex_state = 528, .external_lex_state = 19}, - [778] = {.lex_state = 540, .external_lex_state = 2}, - [779] = {.lex_state = 464, .external_lex_state = 26}, - [780] = {.lex_state = 528, .external_lex_state = 19}, - [781] = {.lex_state = 274, .external_lex_state = 28}, - [782] = {.lex_state = 254, .external_lex_state = 15}, - [783] = {.lex_state = 274, .external_lex_state = 28}, - [784] = {.lex_state = 530, .external_lex_state = 19}, - [785] = {.lex_state = 254, .external_lex_state = 15}, - [786] = {.lex_state = 458, .external_lex_state = 29}, - [787] = {.lex_state = 530, .external_lex_state = 19}, - [788] = {.lex_state = 529, .external_lex_state = 22}, - [789] = {.lex_state = 529, .external_lex_state = 22}, - [790] = {.lex_state = 529, .external_lex_state = 22}, - [791] = {.lex_state = 529, .external_lex_state = 22}, - [792] = {.lex_state = 406, .external_lex_state = 30}, - [793] = {.lex_state = 254, .external_lex_state = 15}, - [794] = {.lex_state = 458, .external_lex_state = 29}, - [795] = {.lex_state = 257, .external_lex_state = 19}, - [796] = {.lex_state = 274, .external_lex_state = 28}, - [797] = {.lex_state = 257, .external_lex_state = 19}, - [798] = {.lex_state = 257, .external_lex_state = 19}, - [799] = {.lex_state = 406, .external_lex_state = 30}, - [800] = {.lex_state = 254, .external_lex_state = 15}, - [801] = {.lex_state = 458, .external_lex_state = 29}, - [802] = {.lex_state = 274, .external_lex_state = 28}, - [803] = {.lex_state = 274, .external_lex_state = 28}, - [804] = {.lex_state = 274, .external_lex_state = 28}, - [805] = {.lex_state = 274, .external_lex_state = 28}, - [806] = {.lex_state = 530, .external_lex_state = 19}, - [807] = {.lex_state = 530, .external_lex_state = 19}, - [808] = {.lex_state = 530, .external_lex_state = 19}, - [809] = {.lex_state = 530, .external_lex_state = 19}, - [810] = {.lex_state = 274, .external_lex_state = 31}, - [811] = {.lex_state = 274, .external_lex_state = 28}, - [812] = {.lex_state = 274, .external_lex_state = 28}, - [813] = {.lex_state = 274, .external_lex_state = 31}, - [814] = {.lex_state = 257, .external_lex_state = 19}, - [815] = {.lex_state = 274, .external_lex_state = 31}, - [816] = {.lex_state = 274, .external_lex_state = 31}, - [817] = {.lex_state = 274, .external_lex_state = 31}, - [818] = {.lex_state = 274, .external_lex_state = 31}, - [819] = {.lex_state = 274, .external_lex_state = 31}, - [820] = {.lex_state = 458, .external_lex_state = 32}, - [821] = {.lex_state = 458, .external_lex_state = 32}, - [822] = {.lex_state = 257, .external_lex_state = 22}, - [823] = {.lex_state = 458, .external_lex_state = 29}, - [824] = {.lex_state = 274, .external_lex_state = 28}, - [825] = {.lex_state = 274, .external_lex_state = 28}, - [826] = {.lex_state = 274, .external_lex_state = 31}, - [827] = {.lex_state = 257, .external_lex_state = 22}, - [828] = {.lex_state = 274, .external_lex_state = 31}, - [829] = {.lex_state = 458, .external_lex_state = 32}, - [830] = {.lex_state = 276, .external_lex_state = 4}, - [831] = {.lex_state = 276, .external_lex_state = 4}, - [832] = {.lex_state = 274, .external_lex_state = 28}, - [833] = {.lex_state = 276, .external_lex_state = 4}, - [834] = {.lex_state = 274, .external_lex_state = 28}, - [835] = {.lex_state = 276, .external_lex_state = 4}, + [724] = {.lex_state = 540, .external_lex_state = 2}, + [725] = {.lex_state = 527, .external_lex_state = 22}, + [726] = {.lex_state = 527, .external_lex_state = 22}, + [727] = {.lex_state = 455, .external_lex_state = 25}, + [728] = {.lex_state = 529, .external_lex_state = 22}, + [729] = {.lex_state = 455, .external_lex_state = 25}, + [730] = {.lex_state = 527, .external_lex_state = 22}, + [731] = {.lex_state = 527, .external_lex_state = 22}, + [732] = {.lex_state = 268, .external_lex_state = 18}, + [733] = {.lex_state = 268, .external_lex_state = 18}, + [734] = {.lex_state = 526, .external_lex_state = 22}, + [735] = {.lex_state = 526, .external_lex_state = 22}, + [736] = {.lex_state = 271, .external_lex_state = 18}, + [737] = {.lex_state = 271, .external_lex_state = 18}, + [738] = {.lex_state = 527, .external_lex_state = 22}, + [739] = {.lex_state = 273, .external_lex_state = 9}, + [740] = {.lex_state = 527, .external_lex_state = 22}, + [741] = {.lex_state = 529, .external_lex_state = 22}, + [742] = {.lex_state = 527, .external_lex_state = 22}, + [743] = {.lex_state = 527, .external_lex_state = 22}, + [744] = {.lex_state = 271, .external_lex_state = 18}, + [745] = {.lex_state = 271, .external_lex_state = 18}, + [746] = {.lex_state = 269, .external_lex_state = 22}, + [747] = {.lex_state = 269, .external_lex_state = 22}, + [748] = {.lex_state = 529, .external_lex_state = 22}, + [749] = {.lex_state = 529, .external_lex_state = 22}, + [750] = {.lex_state = 273, .external_lex_state = 9}, + [751] = {.lex_state = 271, .external_lex_state = 18}, + [752] = {.lex_state = 529, .external_lex_state = 22}, + [753] = {.lex_state = 271, .external_lex_state = 18}, + [754] = {.lex_state = 529, .external_lex_state = 22}, + [755] = {.lex_state = 540, .external_lex_state = 2}, + [756] = {.lex_state = 526, .external_lex_state = 22}, + [757] = {.lex_state = 526, .external_lex_state = 22}, + [758] = {.lex_state = 540, .external_lex_state = 2}, + [759] = {.lex_state = 527, .external_lex_state = 22}, + [760] = {.lex_state = 248, .external_lex_state = 18}, + [761] = {.lex_state = 527, .external_lex_state = 22}, + [762] = {.lex_state = 416, .external_lex_state = 2}, + [763] = {.lex_state = 248, .external_lex_state = 18}, + [764] = {.lex_state = 528, .external_lex_state = 18}, + [765] = {.lex_state = 528, .external_lex_state = 18}, + [766] = {.lex_state = 526, .external_lex_state = 22}, + [767] = {.lex_state = 527, .external_lex_state = 18}, + [768] = {.lex_state = 528, .external_lex_state = 18}, + [769] = {.lex_state = 527, .external_lex_state = 18}, + [770] = {.lex_state = 248, .external_lex_state = 18}, + [771] = {.lex_state = 527, .external_lex_state = 22}, + [772] = {.lex_state = 405, .external_lex_state = 26}, + [773] = {.lex_state = 528, .external_lex_state = 18}, + [774] = {.lex_state = 529, .external_lex_state = 22}, + [775] = {.lex_state = 528, .external_lex_state = 18}, + [776] = {.lex_state = 529, .external_lex_state = 22}, + [777] = {.lex_state = 529, .external_lex_state = 22}, + [778] = {.lex_state = 529, .external_lex_state = 22}, + [779] = {.lex_state = 527, .external_lex_state = 22}, + [780] = {.lex_state = 275, .external_lex_state = 18}, + [781] = {.lex_state = 527, .external_lex_state = 22}, + [782] = {.lex_state = 540, .external_lex_state = 2}, + [783] = {.lex_state = 529, .external_lex_state = 22}, + [784] = {.lex_state = 275, .external_lex_state = 18}, + [785] = {.lex_state = 529, .external_lex_state = 22}, + [786] = {.lex_state = 464, .external_lex_state = 27}, + [787] = {.lex_state = 277, .external_lex_state = 20}, + [788] = {.lex_state = 275, .external_lex_state = 18}, + [789] = {.lex_state = 275, .external_lex_state = 18}, + [790] = {.lex_state = 275, .external_lex_state = 18}, + [791] = {.lex_state = 464, .external_lex_state = 27}, + [792] = {.lex_state = 275, .external_lex_state = 18}, + [793] = {.lex_state = 531, .external_lex_state = 18}, + [794] = {.lex_state = 531, .external_lex_state = 18}, + [795] = {.lex_state = 528, .external_lex_state = 18}, + [796] = {.lex_state = 528, .external_lex_state = 18}, + [797] = {.lex_state = 529, .external_lex_state = 22}, + [798] = {.lex_state = 251, .external_lex_state = 15}, + [799] = {.lex_state = 540, .external_lex_state = 2}, + [800] = {.lex_state = 277, .external_lex_state = 20}, + [801] = {.lex_state = 527, .external_lex_state = 22}, + [802] = {.lex_state = 527, .external_lex_state = 22}, + [803] = {.lex_state = 531, .external_lex_state = 18}, + [804] = {.lex_state = 540, .external_lex_state = 2}, + [805] = {.lex_state = 251, .external_lex_state = 15}, + [806] = {.lex_state = 251, .external_lex_state = 15}, + [807] = {.lex_state = 531, .external_lex_state = 18}, + [808] = {.lex_state = 529, .external_lex_state = 22}, + [809] = {.lex_state = 529, .external_lex_state = 22}, + [810] = {.lex_state = 529, .external_lex_state = 22}, + [811] = {.lex_state = 251, .external_lex_state = 15}, + [812] = {.lex_state = 529, .external_lex_state = 22}, + [813] = {.lex_state = 529, .external_lex_state = 22}, + [814] = {.lex_state = 529, .external_lex_state = 22}, + [815] = {.lex_state = 464, .external_lex_state = 27}, + [816] = {.lex_state = 531, .external_lex_state = 18}, + [817] = {.lex_state = 531, .external_lex_state = 18}, + [818] = {.lex_state = 405, .external_lex_state = 26}, + [819] = {.lex_state = 531, .external_lex_state = 18}, + [820] = {.lex_state = 531, .external_lex_state = 18}, + [821] = {.lex_state = 531, .external_lex_state = 18}, + [822] = {.lex_state = 529, .external_lex_state = 22}, + [823] = {.lex_state = 529, .external_lex_state = 22}, + [824] = {.lex_state = 257, .external_lex_state = 18}, + [825] = {.lex_state = 531, .external_lex_state = 18}, + [826] = {.lex_state = 531, .external_lex_state = 18}, + [827] = {.lex_state = 274, .external_lex_state = 28}, + [828] = {.lex_state = 274, .external_lex_state = 28}, + [829] = {.lex_state = 531, .external_lex_state = 18}, + [830] = {.lex_state = 458, .external_lex_state = 29}, + [831] = {.lex_state = 257, .external_lex_state = 18}, + [832] = {.lex_state = 458, .external_lex_state = 29}, + [833] = {.lex_state = 406, .external_lex_state = 30}, + [834] = {.lex_state = 406, .external_lex_state = 30}, + [835] = {.lex_state = 274, .external_lex_state = 28}, [836] = {.lex_state = 274, .external_lex_state = 28}, [837] = {.lex_state = 274, .external_lex_state = 28}, - [838] = {.lex_state = 274, .external_lex_state = 31}, - [839] = {.lex_state = 274, .external_lex_state = 31}, - [840] = {.lex_state = 276, .external_lex_state = 4}, - [841] = {.lex_state = 274, .external_lex_state = 28}, - [842] = {.lex_state = 454, .external_lex_state = 26}, - [843] = {.lex_state = 248, .external_lex_state = 22}, - [844] = {.lex_state = 454, .external_lex_state = 26}, - [845] = {.lex_state = 458, .external_lex_state = 29}, - [846] = {.lex_state = 257, .external_lex_state = 19}, - [847] = {.lex_state = 274, .external_lex_state = 28}, - [848] = {.lex_state = 274, .external_lex_state = 28}, - [849] = {.lex_state = 276, .external_lex_state = 4}, - [850] = {.lex_state = 454, .external_lex_state = 26}, - [851] = {.lex_state = 248, .external_lex_state = 22}, + [838] = {.lex_state = 274, .external_lex_state = 28}, + [839] = {.lex_state = 458, .external_lex_state = 29}, + [840] = {.lex_state = 257, .external_lex_state = 18}, + [841] = {.lex_state = 529, .external_lex_state = 22}, + [842] = {.lex_state = 529, .external_lex_state = 22}, + [843] = {.lex_state = 458, .external_lex_state = 29}, + [844] = {.lex_state = 458, .external_lex_state = 29}, + [845] = {.lex_state = 257, .external_lex_state = 18}, + [846] = {.lex_state = 257, .external_lex_state = 18}, + [847] = {.lex_state = 257, .external_lex_state = 18}, + [848] = {.lex_state = 257, .external_lex_state = 18}, + [849] = {.lex_state = 257, .external_lex_state = 18}, + [850] = {.lex_state = 274, .external_lex_state = 28}, + [851] = {.lex_state = 257, .external_lex_state = 18}, [852] = {.lex_state = 274, .external_lex_state = 28}, - [853] = {.lex_state = 274, .external_lex_state = 28}, - [854] = {.lex_state = 257, .external_lex_state = 22}, - [855] = {.lex_state = 257, .external_lex_state = 19}, - [856] = {.lex_state = 274, .external_lex_state = 31}, + [853] = {.lex_state = 454, .external_lex_state = 27}, + [854] = {.lex_state = 527, .external_lex_state = 18}, + [855] = {.lex_state = 274, .external_lex_state = 28}, + [856] = {.lex_state = 527, .external_lex_state = 18}, [857] = {.lex_state = 274, .external_lex_state = 28}, - [858] = {.lex_state = 274, .external_lex_state = 28}, - [859] = {.lex_state = 274, .external_lex_state = 28}, - [860] = {.lex_state = 257, .external_lex_state = 19}, + [858] = {.lex_state = 458, .external_lex_state = 31}, + [859] = {.lex_state = 527, .external_lex_state = 18}, + [860] = {.lex_state = 274, .external_lex_state = 28}, [861] = {.lex_state = 274, .external_lex_state = 28}, [862] = {.lex_state = 274, .external_lex_state = 28}, - [863] = {.lex_state = 248, .external_lex_state = 22}, - [864] = {.lex_state = 257, .external_lex_state = 19}, - [865] = {.lex_state = 276, .external_lex_state = 4}, - [866] = {.lex_state = 257, .external_lex_state = 19}, - [867] = {.lex_state = 274, .external_lex_state = 28}, - [868] = {.lex_state = 527, .external_lex_state = 19}, - [869] = {.lex_state = 454, .external_lex_state = 26}, - [870] = {.lex_state = 454, .external_lex_state = 33}, - [871] = {.lex_state = 454, .external_lex_state = 33}, - [872] = {.lex_state = 454, .external_lex_state = 33}, - [873] = {.lex_state = 527, .external_lex_state = 19}, - [874] = {.lex_state = 407, .external_lex_state = 29}, - [875] = {.lex_state = 407, .external_lex_state = 29}, - [876] = {.lex_state = 464, .external_lex_state = 33}, - [877] = {.lex_state = 531, .external_lex_state = 4}, - [878] = {.lex_state = 276, .external_lex_state = 34}, - [879] = {.lex_state = 276, .external_lex_state = 34}, - [880] = {.lex_state = 452, .external_lex_state = 35}, - [881] = {.lex_state = 276, .external_lex_state = 34}, - [882] = {.lex_state = 276, .external_lex_state = 34}, - [883] = {.lex_state = 531, .external_lex_state = 4}, - [884] = {.lex_state = 527, .external_lex_state = 19}, - [885] = {.lex_state = 464, .external_lex_state = 33}, - [886] = {.lex_state = 531, .external_lex_state = 4}, - [887] = {.lex_state = 236, .external_lex_state = 13}, - [888] = {.lex_state = 274, .external_lex_state = 31}, - [889] = {.lex_state = 274, .external_lex_state = 31}, - [890] = {.lex_state = 274, .external_lex_state = 31}, - [891] = {.lex_state = 274, .external_lex_state = 31}, - [892] = {.lex_state = 274, .external_lex_state = 31}, - [893] = {.lex_state = 274, .external_lex_state = 31}, - [894] = {.lex_state = 274, .external_lex_state = 31}, - [895] = {.lex_state = 531, .external_lex_state = 4}, - [896] = {.lex_state = 276, .external_lex_state = 4}, - [897] = {.lex_state = 276, .external_lex_state = 4}, - [898] = {.lex_state = 276, .external_lex_state = 4}, - [899] = {.lex_state = 276, .external_lex_state = 4}, - [900] = {.lex_state = 281, .external_lex_state = 19}, - [901] = {.lex_state = 281, .external_lex_state = 19}, - [902] = {.lex_state = 276, .external_lex_state = 4}, - [903] = {.lex_state = 274, .external_lex_state = 31}, - [904] = {.lex_state = 274, .external_lex_state = 31}, - [905] = {.lex_state = 276, .external_lex_state = 4}, - [906] = {.lex_state = 276, .external_lex_state = 4}, - [907] = {.lex_state = 276, .external_lex_state = 34}, - [908] = {.lex_state = 274, .external_lex_state = 31}, - [909] = {.lex_state = 274, .external_lex_state = 31}, - [910] = {.lex_state = 276, .external_lex_state = 34}, - [911] = {.lex_state = 276, .external_lex_state = 34}, - [912] = {.lex_state = 276, .external_lex_state = 34}, - [913] = {.lex_state = 276, .external_lex_state = 4}, - [914] = {.lex_state = 276, .external_lex_state = 4}, - [915] = {.lex_state = 274, .external_lex_state = 31}, - [916] = {.lex_state = 274, .external_lex_state = 31}, - [917] = {.lex_state = 274, .external_lex_state = 31}, - [918] = {.lex_state = 274, .external_lex_state = 31}, - [919] = {.lex_state = 274, .external_lex_state = 31}, - [920] = {.lex_state = 276, .external_lex_state = 4}, - [921] = {.lex_state = 276, .external_lex_state = 4}, - [922] = {.lex_state = 274, .external_lex_state = 31}, - [923] = {.lex_state = 274, .external_lex_state = 31}, - [924] = {.lex_state = 454, .external_lex_state = 26}, - [925] = {.lex_state = 281, .external_lex_state = 19}, - [926] = {.lex_state = 281, .external_lex_state = 19}, - [927] = {.lex_state = 276, .external_lex_state = 4}, - [928] = {.lex_state = 276, .external_lex_state = 4}, - [929] = {.lex_state = 276, .external_lex_state = 4}, - [930] = {.lex_state = 276, .external_lex_state = 4}, - [931] = {.lex_state = 531, .external_lex_state = 4}, - [932] = {.lex_state = 276, .external_lex_state = 4}, - [933] = {.lex_state = 464, .external_lex_state = 33}, - [934] = {.lex_state = 276, .external_lex_state = 4}, - [935] = {.lex_state = 276, .external_lex_state = 4}, - [936] = {.lex_state = 276, .external_lex_state = 4}, - [937] = {.lex_state = 452, .external_lex_state = 35}, - [938] = {.lex_state = 452, .external_lex_state = 35}, - [939] = {.lex_state = 527, .external_lex_state = 19}, - [940] = {.lex_state = 407, .external_lex_state = 29}, - [941] = {.lex_state = 407, .external_lex_state = 29}, - [942] = {.lex_state = 452, .external_lex_state = 35}, - [943] = {.lex_state = 236, .external_lex_state = 13}, - [944] = {.lex_state = 531, .external_lex_state = 4}, - [945] = {.lex_state = 531, .external_lex_state = 4}, - [946] = {.lex_state = 266, .external_lex_state = 22}, - [947] = {.lex_state = 266, .external_lex_state = 22}, - [948] = {.lex_state = 266, .external_lex_state = 22}, - [949] = {.lex_state = 452, .external_lex_state = 35}, - [950] = {.lex_state = 531, .external_lex_state = 4}, - [951] = {.lex_state = 276, .external_lex_state = 34}, - [952] = {.lex_state = 276, .external_lex_state = 34}, - [953] = {.lex_state = 527, .external_lex_state = 19}, - [954] = {.lex_state = 531, .external_lex_state = 4}, - [955] = {.lex_state = 531, .external_lex_state = 4}, - [956] = {.lex_state = 531, .external_lex_state = 4}, - [957] = {.lex_state = 531, .external_lex_state = 4}, - [958] = {.lex_state = 527, .external_lex_state = 19}, - [959] = {.lex_state = 276, .external_lex_state = 34}, - [960] = {.lex_state = 276, .external_lex_state = 34}, - [961] = {.lex_state = 452, .external_lex_state = 35}, - [962] = {.lex_state = 527, .external_lex_state = 19}, - [963] = {.lex_state = 531, .external_lex_state = 4}, - [964] = {.lex_state = 463, .external_lex_state = 32}, - [965] = {.lex_state = 463, .external_lex_state = 32}, - [966] = {.lex_state = 458, .external_lex_state = 32}, - [967] = {.lex_state = 458, .external_lex_state = 32}, - [968] = {.lex_state = 531, .external_lex_state = 4}, - [969] = {.lex_state = 527, .external_lex_state = 19}, - [970] = {.lex_state = 452, .external_lex_state = 35}, - [971] = {.lex_state = 463, .external_lex_state = 32}, - [972] = {.lex_state = 424, .external_lex_state = 36}, - [973] = {.lex_state = 424, .external_lex_state = 36}, - [974] = {.lex_state = 452, .external_lex_state = 35}, - [975] = {.lex_state = 257, .external_lex_state = 22}, - [976] = {.lex_state = 257, .external_lex_state = 22}, - [977] = {.lex_state = 274, .external_lex_state = 31}, - [978] = {.lex_state = 531, .external_lex_state = 4}, - [979] = {.lex_state = 409, .external_lex_state = 29}, - [980] = {.lex_state = 423, .external_lex_state = 37}, - [981] = {.lex_state = 423, .external_lex_state = 37}, - [982] = {.lex_state = 531, .external_lex_state = 34}, - [983] = {.lex_state = 531, .external_lex_state = 4}, - [984] = {.lex_state = 236, .external_lex_state = 13}, - [985] = {.lex_state = 280, .external_lex_state = 38}, - [986] = {.lex_state = 280, .external_lex_state = 38}, - [987] = {.lex_state = 280, .external_lex_state = 38}, - [988] = {.lex_state = 282, .external_lex_state = 38}, - [989] = {.lex_state = 282, .external_lex_state = 38}, - [990] = {.lex_state = 282, .external_lex_state = 38}, - [991] = {.lex_state = 280, .external_lex_state = 38}, - [992] = {.lex_state = 282, .external_lex_state = 38}, - [993] = {.lex_state = 527, .external_lex_state = 19}, - [994] = {.lex_state = 531, .external_lex_state = 34}, - [995] = {.lex_state = 236, .external_lex_state = 14}, - [996] = {.lex_state = 531, .external_lex_state = 4}, - [997] = {.lex_state = 531, .external_lex_state = 4}, - [998] = {.lex_state = 460, .external_lex_state = 33}, - [999] = {.lex_state = 460, .external_lex_state = 33}, - [1000] = {.lex_state = 460, .external_lex_state = 33}, - [1001] = {.lex_state = 454, .external_lex_state = 33}, - [1002] = {.lex_state = 283, .external_lex_state = 19}, - [1003] = {.lex_state = 454, .external_lex_state = 33}, - [1004] = {.lex_state = 283, .external_lex_state = 19}, - [1005] = {.lex_state = 239, .external_lex_state = 11}, - [1006] = {.lex_state = 283, .external_lex_state = 19}, - [1007] = {.lex_state = 283, .external_lex_state = 19}, - [1008] = {.lex_state = 280, .external_lex_state = 38}, - [1009] = {.lex_state = 280, .external_lex_state = 38}, - [1010] = {.lex_state = 276, .external_lex_state = 34}, - [1011] = {.lex_state = 276, .external_lex_state = 34}, - [1012] = {.lex_state = 276, .external_lex_state = 34}, - [1013] = {.lex_state = 276, .external_lex_state = 34}, - [1014] = {.lex_state = 276, .external_lex_state = 34}, - [1015] = {.lex_state = 280, .external_lex_state = 38}, - [1016] = {.lex_state = 280, .external_lex_state = 38}, - [1017] = {.lex_state = 276, .external_lex_state = 34}, - [1018] = {.lex_state = 276, .external_lex_state = 34}, - [1019] = {.lex_state = 280, .external_lex_state = 38}, - [1020] = {.lex_state = 280, .external_lex_state = 38}, - [1021] = {.lex_state = 280, .external_lex_state = 38}, - [1022] = {.lex_state = 283, .external_lex_state = 19}, - [1023] = {.lex_state = 283, .external_lex_state = 19}, - [1024] = {.lex_state = 276, .external_lex_state = 34}, - [1025] = {.lex_state = 276, .external_lex_state = 34}, - [1026] = {.lex_state = 531, .external_lex_state = 34}, - [1027] = {.lex_state = 236, .external_lex_state = 14}, - [1028] = {.lex_state = 531, .external_lex_state = 34}, - [1029] = {.lex_state = 236, .external_lex_state = 14}, - [1030] = {.lex_state = 276, .external_lex_state = 34}, - [1031] = {.lex_state = 276, .external_lex_state = 34}, - [1032] = {.lex_state = 531, .external_lex_state = 4}, - [1033] = {.lex_state = 276, .external_lex_state = 34}, - [1034] = {.lex_state = 276, .external_lex_state = 34}, + [863] = {.lex_state = 527, .external_lex_state = 18}, + [864] = {.lex_state = 274, .external_lex_state = 28}, + [865] = {.lex_state = 274, .external_lex_state = 28}, + [866] = {.lex_state = 274, .external_lex_state = 28}, + [867] = {.lex_state = 276, .external_lex_state = 4}, + [868] = {.lex_state = 274, .external_lex_state = 28}, + [869] = {.lex_state = 274, .external_lex_state = 28}, + [870] = {.lex_state = 274, .external_lex_state = 28}, + [871] = {.lex_state = 458, .external_lex_state = 31}, + [872] = {.lex_state = 274, .external_lex_state = 28}, + [873] = {.lex_state = 276, .external_lex_state = 4}, + [874] = {.lex_state = 452, .external_lex_state = 32}, + [875] = {.lex_state = 452, .external_lex_state = 32}, + [876] = {.lex_state = 274, .external_lex_state = 33}, + [877] = {.lex_state = 274, .external_lex_state = 33}, + [878] = {.lex_state = 276, .external_lex_state = 4}, + [879] = {.lex_state = 276, .external_lex_state = 4}, + [880] = {.lex_state = 527, .external_lex_state = 18}, + [881] = {.lex_state = 274, .external_lex_state = 28}, + [882] = {.lex_state = 276, .external_lex_state = 4}, + [883] = {.lex_state = 452, .external_lex_state = 32}, + [884] = {.lex_state = 274, .external_lex_state = 28}, + [885] = {.lex_state = 458, .external_lex_state = 31}, + [886] = {.lex_state = 458, .external_lex_state = 31}, + [887] = {.lex_state = 274, .external_lex_state = 28}, + [888] = {.lex_state = 458, .external_lex_state = 31}, + [889] = {.lex_state = 274, .external_lex_state = 33}, + [890] = {.lex_state = 458, .external_lex_state = 29}, + [891] = {.lex_state = 257, .external_lex_state = 22}, + [892] = {.lex_state = 274, .external_lex_state = 28}, + [893] = {.lex_state = 274, .external_lex_state = 28}, + [894] = {.lex_state = 274, .external_lex_state = 33}, + [895] = {.lex_state = 527, .external_lex_state = 18}, + [896] = {.lex_state = 452, .external_lex_state = 32}, + [897] = {.lex_state = 458, .external_lex_state = 29}, + [898] = {.lex_state = 527, .external_lex_state = 18}, + [899] = {.lex_state = 248, .external_lex_state = 22}, + [900] = {.lex_state = 276, .external_lex_state = 4}, + [901] = {.lex_state = 274, .external_lex_state = 33}, + [902] = {.lex_state = 274, .external_lex_state = 33}, + [903] = {.lex_state = 452, .external_lex_state = 32}, + [904] = {.lex_state = 257, .external_lex_state = 22}, + [905] = {.lex_state = 257, .external_lex_state = 22}, + [906] = {.lex_state = 454, .external_lex_state = 27}, + [907] = {.lex_state = 248, .external_lex_state = 22}, + [908] = {.lex_state = 452, .external_lex_state = 32}, + [909] = {.lex_state = 274, .external_lex_state = 33}, + [910] = {.lex_state = 527, .external_lex_state = 18}, + [911] = {.lex_state = 274, .external_lex_state = 33}, + [912] = {.lex_state = 274, .external_lex_state = 33}, + [913] = {.lex_state = 274, .external_lex_state = 33}, + [914] = {.lex_state = 274, .external_lex_state = 33}, + [915] = {.lex_state = 274, .external_lex_state = 33}, + [916] = {.lex_state = 454, .external_lex_state = 27}, + [917] = {.lex_state = 454, .external_lex_state = 27}, + [918] = {.lex_state = 257, .external_lex_state = 22}, + [919] = {.lex_state = 454, .external_lex_state = 27}, + [920] = {.lex_state = 452, .external_lex_state = 32}, + [921] = {.lex_state = 452, .external_lex_state = 32}, + [922] = {.lex_state = 248, .external_lex_state = 22}, + [923] = {.lex_state = 257, .external_lex_state = 18}, + [924] = {.lex_state = 276, .external_lex_state = 4}, + [925] = {.lex_state = 274, .external_lex_state = 28}, + [926] = {.lex_state = 257, .external_lex_state = 18}, + [927] = {.lex_state = 257, .external_lex_state = 22}, + [928] = {.lex_state = 530, .external_lex_state = 4}, + [929] = {.lex_state = 276, .external_lex_state = 34}, + [930] = {.lex_state = 527, .external_lex_state = 18}, + [931] = {.lex_state = 527, .external_lex_state = 18}, + [932] = {.lex_state = 236, .external_lex_state = 13}, + [933] = {.lex_state = 274, .external_lex_state = 33}, + [934] = {.lex_state = 274, .external_lex_state = 33}, + [935] = {.lex_state = 274, .external_lex_state = 33}, + [936] = {.lex_state = 274, .external_lex_state = 33}, + [937] = {.lex_state = 274, .external_lex_state = 33}, + [938] = {.lex_state = 274, .external_lex_state = 33}, + [939] = {.lex_state = 274, .external_lex_state = 33}, + [940] = {.lex_state = 276, .external_lex_state = 34}, + [941] = {.lex_state = 276, .external_lex_state = 34}, + [942] = {.lex_state = 276, .external_lex_state = 4}, + [943] = {.lex_state = 276, .external_lex_state = 4}, + [944] = {.lex_state = 276, .external_lex_state = 4}, + [945] = {.lex_state = 276, .external_lex_state = 4}, + [946] = {.lex_state = 281, .external_lex_state = 18}, + [947] = {.lex_state = 281, .external_lex_state = 18}, + [948] = {.lex_state = 276, .external_lex_state = 4}, + [949] = {.lex_state = 274, .external_lex_state = 33}, + [950] = {.lex_state = 274, .external_lex_state = 33}, + [951] = {.lex_state = 276, .external_lex_state = 4}, + [952] = {.lex_state = 276, .external_lex_state = 4}, + [953] = {.lex_state = 276, .external_lex_state = 34}, + [954] = {.lex_state = 274, .external_lex_state = 33}, + [955] = {.lex_state = 274, .external_lex_state = 33}, + [956] = {.lex_state = 276, .external_lex_state = 34}, + [957] = {.lex_state = 276, .external_lex_state = 34}, + [958] = {.lex_state = 276, .external_lex_state = 34}, + [959] = {.lex_state = 276, .external_lex_state = 4}, + [960] = {.lex_state = 276, .external_lex_state = 4}, + [961] = {.lex_state = 274, .external_lex_state = 33}, + [962] = {.lex_state = 274, .external_lex_state = 33}, + [963] = {.lex_state = 274, .external_lex_state = 33}, + [964] = {.lex_state = 274, .external_lex_state = 33}, + [965] = {.lex_state = 274, .external_lex_state = 33}, + [966] = {.lex_state = 276, .external_lex_state = 34}, + [967] = {.lex_state = 276, .external_lex_state = 4}, + [968] = {.lex_state = 276, .external_lex_state = 4}, + [969] = {.lex_state = 274, .external_lex_state = 33}, + [970] = {.lex_state = 274, .external_lex_state = 33}, + [971] = {.lex_state = 274, .external_lex_state = 33}, + [972] = {.lex_state = 281, .external_lex_state = 18}, + [973] = {.lex_state = 281, .external_lex_state = 18}, + [974] = {.lex_state = 276, .external_lex_state = 4}, + [975] = {.lex_state = 276, .external_lex_state = 4}, + [976] = {.lex_state = 276, .external_lex_state = 4}, + [977] = {.lex_state = 276, .external_lex_state = 4}, + [978] = {.lex_state = 276, .external_lex_state = 4}, + [979] = {.lex_state = 276, .external_lex_state = 34}, + [980] = {.lex_state = 276, .external_lex_state = 4}, + [981] = {.lex_state = 276, .external_lex_state = 4}, + [982] = {.lex_state = 276, .external_lex_state = 4}, + [983] = {.lex_state = 530, .external_lex_state = 4}, + [984] = {.lex_state = 527, .external_lex_state = 18}, + [985] = {.lex_state = 527, .external_lex_state = 18}, + [986] = {.lex_state = 530, .external_lex_state = 4}, + [987] = {.lex_state = 464, .external_lex_state = 35}, + [988] = {.lex_state = 530, .external_lex_state = 4}, + [989] = {.lex_state = 407, .external_lex_state = 29}, + [990] = {.lex_state = 407, .external_lex_state = 29}, + [991] = {.lex_state = 527, .external_lex_state = 18}, + [992] = {.lex_state = 527, .external_lex_state = 18}, + [993] = {.lex_state = 530, .external_lex_state = 4}, + [994] = {.lex_state = 464, .external_lex_state = 35}, + [995] = {.lex_state = 530, .external_lex_state = 4}, + [996] = {.lex_state = 530, .external_lex_state = 4}, + [997] = {.lex_state = 527, .external_lex_state = 18}, + [998] = {.lex_state = 463, .external_lex_state = 31}, + [999] = {.lex_state = 269, .external_lex_state = 22}, + [1000] = {.lex_state = 269, .external_lex_state = 22}, + [1001] = {.lex_state = 269, .external_lex_state = 22}, + [1002] = {.lex_state = 269, .external_lex_state = 22}, + [1003] = {.lex_state = 463, .external_lex_state = 31}, + [1004] = {.lex_state = 269, .external_lex_state = 22}, + [1005] = {.lex_state = 463, .external_lex_state = 31}, + [1006] = {.lex_state = 463, .external_lex_state = 31}, + [1007] = {.lex_state = 527, .external_lex_state = 18}, + [1008] = {.lex_state = 458, .external_lex_state = 31}, + [1009] = {.lex_state = 458, .external_lex_state = 31}, + [1010] = {.lex_state = 530, .external_lex_state = 4}, + [1011] = {.lex_state = 530, .external_lex_state = 4}, + [1012] = {.lex_state = 464, .external_lex_state = 35}, + [1013] = {.lex_state = 463, .external_lex_state = 31}, + [1014] = {.lex_state = 424, .external_lex_state = 36}, + [1015] = {.lex_state = 424, .external_lex_state = 36}, + [1016] = {.lex_state = 454, .external_lex_state = 27}, + [1017] = {.lex_state = 454, .external_lex_state = 27}, + [1018] = {.lex_state = 454, .external_lex_state = 35}, + [1019] = {.lex_state = 454, .external_lex_state = 35}, + [1020] = {.lex_state = 454, .external_lex_state = 35}, + [1021] = {.lex_state = 454, .external_lex_state = 35}, + [1022] = {.lex_state = 454, .external_lex_state = 35}, + [1023] = {.lex_state = 530, .external_lex_state = 4}, + [1024] = {.lex_state = 530, .external_lex_state = 4}, + [1025] = {.lex_state = 530, .external_lex_state = 4}, + [1026] = {.lex_state = 236, .external_lex_state = 13}, + [1027] = {.lex_state = 530, .external_lex_state = 4}, + [1028] = {.lex_state = 530, .external_lex_state = 4}, + [1029] = {.lex_state = 527, .external_lex_state = 18}, + [1030] = {.lex_state = 407, .external_lex_state = 29}, + [1031] = {.lex_state = 407, .external_lex_state = 29}, + [1032] = {.lex_state = 527, .external_lex_state = 18}, + [1033] = {.lex_state = 257, .external_lex_state = 22}, + [1034] = {.lex_state = 257, .external_lex_state = 22}, [1035] = {.lex_state = 276, .external_lex_state = 34}, [1036] = {.lex_state = 276, .external_lex_state = 34}, [1037] = {.lex_state = 276, .external_lex_state = 34}, - [1038] = {.lex_state = 276, .external_lex_state = 34}, + [1038] = {.lex_state = 530, .external_lex_state = 34}, [1039] = {.lex_state = 276, .external_lex_state = 34}, - [1040] = {.lex_state = 276, .external_lex_state = 34}, - [1041] = {.lex_state = 531, .external_lex_state = 4}, - [1042] = {.lex_state = 531, .external_lex_state = 4}, - [1043] = {.lex_state = 531, .external_lex_state = 4}, - [1044] = {.lex_state = 531, .external_lex_state = 4}, - [1045] = {.lex_state = 427, .external_lex_state = 39}, - [1046] = {.lex_state = 531, .external_lex_state = 4}, - [1047] = {.lex_state = 527, .external_lex_state = 19}, - [1048] = {.lex_state = 531, .external_lex_state = 4}, - [1049] = {.lex_state = 531, .external_lex_state = 4}, - [1050] = {.lex_state = 531, .external_lex_state = 4}, - [1051] = {.lex_state = 531, .external_lex_state = 4}, - [1052] = {.lex_state = 531, .external_lex_state = 4}, - [1053] = {.lex_state = 531, .external_lex_state = 34}, - [1054] = {.lex_state = 531, .external_lex_state = 4}, - [1055] = {.lex_state = 531, .external_lex_state = 34}, - [1056] = {.lex_state = 236, .external_lex_state = 13}, - [1057] = {.lex_state = 408, .external_lex_state = 26}, - [1058] = {.lex_state = 408, .external_lex_state = 26}, - [1059] = {.lex_state = 424, .external_lex_state = 40}, - [1060] = {.lex_state = 527, .external_lex_state = 19}, - [1061] = {.lex_state = 424, .external_lex_state = 40}, - [1062] = {.lex_state = 409, .external_lex_state = 29}, - [1063] = {.lex_state = 282, .external_lex_state = 38}, - [1064] = {.lex_state = 282, .external_lex_state = 38}, - [1065] = {.lex_state = 408, .external_lex_state = 26}, - [1066] = {.lex_state = 531, .external_lex_state = 4}, - [1067] = {.lex_state = 531, .external_lex_state = 4}, - [1068] = {.lex_state = 531, .external_lex_state = 4}, - [1069] = {.lex_state = 531, .external_lex_state = 4}, - [1070] = {.lex_state = 531, .external_lex_state = 4}, - [1071] = {.lex_state = 236, .external_lex_state = 14}, - [1072] = {.lex_state = 531, .external_lex_state = 4}, - [1073] = {.lex_state = 531, .external_lex_state = 4}, - [1074] = {.lex_state = 527, .external_lex_state = 19}, - [1075] = {.lex_state = 531, .external_lex_state = 4}, - [1076] = {.lex_state = 531, .external_lex_state = 4}, - [1077] = {.lex_state = 531, .external_lex_state = 4}, - [1078] = {.lex_state = 531, .external_lex_state = 4}, - [1079] = {.lex_state = 531, .external_lex_state = 4}, - [1080] = {.lex_state = 531, .external_lex_state = 4}, - [1081] = {.lex_state = 531, .external_lex_state = 4}, - [1082] = {.lex_state = 531, .external_lex_state = 4}, - [1083] = {.lex_state = 236, .external_lex_state = 14}, - [1084] = {.lex_state = 531, .external_lex_state = 4}, - [1085] = {.lex_state = 531, .external_lex_state = 4}, - [1086] = {.lex_state = 531, .external_lex_state = 4}, - [1087] = {.lex_state = 531, .external_lex_state = 4}, - [1088] = {.lex_state = 531, .external_lex_state = 4}, - [1089] = {.lex_state = 239, .external_lex_state = 11}, - [1090] = {.lex_state = 531, .external_lex_state = 4}, - [1091] = {.lex_state = 531, .external_lex_state = 4}, - [1092] = {.lex_state = 527, .external_lex_state = 19}, - [1093] = {.lex_state = 531, .external_lex_state = 4}, - [1094] = {.lex_state = 531, .external_lex_state = 34}, - [1095] = {.lex_state = 531, .external_lex_state = 34}, - [1096] = {.lex_state = 280, .external_lex_state = 38}, - [1097] = {.lex_state = 527, .external_lex_state = 19}, - [1098] = {.lex_state = 527, .external_lex_state = 19}, - [1099] = {.lex_state = 531, .external_lex_state = 34}, - [1100] = {.lex_state = 531, .external_lex_state = 34}, - [1101] = {.lex_state = 531, .external_lex_state = 34}, - [1102] = {.lex_state = 531, .external_lex_state = 34}, - [1103] = {.lex_state = 425, .external_lex_state = 37}, - [1104] = {.lex_state = 425, .external_lex_state = 37}, - [1105] = {.lex_state = 531, .external_lex_state = 34}, - [1106] = {.lex_state = 531, .external_lex_state = 34}, - [1107] = {.lex_state = 531, .external_lex_state = 34}, - [1108] = {.lex_state = 531, .external_lex_state = 34}, - [1109] = {.lex_state = 531, .external_lex_state = 4}, - [1110] = {.lex_state = 531, .external_lex_state = 4}, - [1111] = {.lex_state = 463, .external_lex_state = 32}, - [1112] = {.lex_state = 531, .external_lex_state = 34}, - [1113] = {.lex_state = 463, .external_lex_state = 32}, - [1114] = {.lex_state = 531, .external_lex_state = 34}, - [1115] = {.lex_state = 531, .external_lex_state = 34}, - [1116] = {.lex_state = 531, .external_lex_state = 34}, - [1117] = {.lex_state = 531, .external_lex_state = 34}, - [1118] = {.lex_state = 531, .external_lex_state = 34}, - [1119] = {.lex_state = 531, .external_lex_state = 34}, - [1120] = {.lex_state = 531, .external_lex_state = 34}, - [1121] = {.lex_state = 280, .external_lex_state = 38}, - [1122] = {.lex_state = 280, .external_lex_state = 38}, - [1123] = {.lex_state = 282, .external_lex_state = 38}, - [1124] = {.lex_state = 282, .external_lex_state = 38}, - [1125] = {.lex_state = 531, .external_lex_state = 4}, - [1126] = {.lex_state = 531, .external_lex_state = 4}, - [1127] = {.lex_state = 531, .external_lex_state = 4}, - [1128] = {.lex_state = 527, .external_lex_state = 19}, - [1129] = {.lex_state = 531, .external_lex_state = 4}, - [1130] = {.lex_state = 527, .external_lex_state = 19}, - [1131] = {.lex_state = 422, .external_lex_state = 37}, - [1132] = {.lex_state = 266, .external_lex_state = 22}, - [1133] = {.lex_state = 266, .external_lex_state = 22}, - [1134] = {.lex_state = 422, .external_lex_state = 37}, - [1135] = {.lex_state = 408, .external_lex_state = 26}, - [1136] = {.lex_state = 527, .external_lex_state = 19}, - [1137] = {.lex_state = 282, .external_lex_state = 41}, - [1138] = {.lex_state = 531, .external_lex_state = 34}, - [1139] = {.lex_state = 239, .external_lex_state = 16}, + [1040] = {.lex_state = 530, .external_lex_state = 4}, + [1041] = {.lex_state = 276, .external_lex_state = 34}, + [1042] = {.lex_state = 530, .external_lex_state = 4}, + [1043] = {.lex_state = 530, .external_lex_state = 34}, + [1044] = {.lex_state = 530, .external_lex_state = 34}, + [1045] = {.lex_state = 422, .external_lex_state = 37}, + [1046] = {.lex_state = 530, .external_lex_state = 4}, + [1047] = {.lex_state = 530, .external_lex_state = 34}, + [1048] = {.lex_state = 276, .external_lex_state = 34}, + [1049] = {.lex_state = 530, .external_lex_state = 34}, + [1050] = {.lex_state = 530, .external_lex_state = 34}, + [1051] = {.lex_state = 276, .external_lex_state = 34}, + [1052] = {.lex_state = 276, .external_lex_state = 34}, + [1053] = {.lex_state = 530, .external_lex_state = 34}, + [1054] = {.lex_state = 408, .external_lex_state = 27}, + [1055] = {.lex_state = 408, .external_lex_state = 27}, + [1056] = {.lex_state = 236, .external_lex_state = 14}, + [1057] = {.lex_state = 408, .external_lex_state = 27}, + [1058] = {.lex_state = 530, .external_lex_state = 34}, + [1059] = {.lex_state = 276, .external_lex_state = 34}, + [1060] = {.lex_state = 276, .external_lex_state = 34}, + [1061] = {.lex_state = 530, .external_lex_state = 34}, + [1062] = {.lex_state = 425, .external_lex_state = 37}, + [1063] = {.lex_state = 425, .external_lex_state = 37}, + [1064] = {.lex_state = 530, .external_lex_state = 4}, + [1065] = {.lex_state = 236, .external_lex_state = 13}, + [1066] = {.lex_state = 530, .external_lex_state = 34}, + [1067] = {.lex_state = 530, .external_lex_state = 34}, + [1068] = {.lex_state = 408, .external_lex_state = 27}, + [1069] = {.lex_state = 530, .external_lex_state = 34}, + [1070] = {.lex_state = 530, .external_lex_state = 34}, + [1071] = {.lex_state = 280, .external_lex_state = 38}, + [1072] = {.lex_state = 530, .external_lex_state = 4}, + [1073] = {.lex_state = 530, .external_lex_state = 4}, + [1074] = {.lex_state = 530, .external_lex_state = 4}, + [1075] = {.lex_state = 463, .external_lex_state = 31}, + [1076] = {.lex_state = 530, .external_lex_state = 34}, + [1077] = {.lex_state = 530, .external_lex_state = 4}, + [1078] = {.lex_state = 280, .external_lex_state = 38}, + [1079] = {.lex_state = 280, .external_lex_state = 38}, + [1080] = {.lex_state = 282, .external_lex_state = 38}, + [1081] = {.lex_state = 282, .external_lex_state = 38}, + [1082] = {.lex_state = 463, .external_lex_state = 31}, + [1083] = {.lex_state = 530, .external_lex_state = 34}, + [1084] = {.lex_state = 283, .external_lex_state = 18}, + [1085] = {.lex_state = 283, .external_lex_state = 18}, + [1086] = {.lex_state = 530, .external_lex_state = 34}, + [1087] = {.lex_state = 282, .external_lex_state = 38}, + [1088] = {.lex_state = 530, .external_lex_state = 34}, + [1089] = {.lex_state = 530, .external_lex_state = 4}, + [1090] = {.lex_state = 280, .external_lex_state = 38}, + [1091] = {.lex_state = 276, .external_lex_state = 34}, + [1092] = {.lex_state = 530, .external_lex_state = 4}, + [1093] = {.lex_state = 280, .external_lex_state = 38}, + [1094] = {.lex_state = 280, .external_lex_state = 38}, + [1095] = {.lex_state = 530, .external_lex_state = 4}, + [1096] = {.lex_state = 276, .external_lex_state = 34}, + [1097] = {.lex_state = 282, .external_lex_state = 38}, + [1098] = {.lex_state = 530, .external_lex_state = 34}, + [1099] = {.lex_state = 282, .external_lex_state = 38}, + [1100] = {.lex_state = 282, .external_lex_state = 38}, + [1101] = {.lex_state = 283, .external_lex_state = 18}, + [1102] = {.lex_state = 409, .external_lex_state = 29}, + [1103] = {.lex_state = 283, .external_lex_state = 18}, + [1104] = {.lex_state = 530, .external_lex_state = 4}, + [1105] = {.lex_state = 530, .external_lex_state = 4}, + [1106] = {.lex_state = 460, .external_lex_state = 35}, + [1107] = {.lex_state = 239, .external_lex_state = 11}, + [1108] = {.lex_state = 460, .external_lex_state = 35}, + [1109] = {.lex_state = 283, .external_lex_state = 18}, + [1110] = {.lex_state = 280, .external_lex_state = 38}, + [1111] = {.lex_state = 280, .external_lex_state = 38}, + [1112] = {.lex_state = 283, .external_lex_state = 18}, + [1113] = {.lex_state = 530, .external_lex_state = 34}, + [1114] = {.lex_state = 276, .external_lex_state = 34}, + [1115] = {.lex_state = 530, .external_lex_state = 34}, + [1116] = {.lex_state = 530, .external_lex_state = 34}, + [1117] = {.lex_state = 422, .external_lex_state = 37}, + [1118] = {.lex_state = 530, .external_lex_state = 34}, + [1119] = {.lex_state = 530, .external_lex_state = 4}, + [1120] = {.lex_state = 460, .external_lex_state = 35}, + [1121] = {.lex_state = 460, .external_lex_state = 35}, + [1122] = {.lex_state = 460, .external_lex_state = 35}, + [1123] = {.lex_state = 530, .external_lex_state = 4}, + [1124] = {.lex_state = 454, .external_lex_state = 35}, + [1125] = {.lex_state = 530, .external_lex_state = 4}, + [1126] = {.lex_state = 454, .external_lex_state = 35}, + [1127] = {.lex_state = 276, .external_lex_state = 34}, + [1128] = {.lex_state = 280, .external_lex_state = 38}, + [1129] = {.lex_state = 280, .external_lex_state = 38}, + [1130] = {.lex_state = 409, .external_lex_state = 29}, + [1131] = {.lex_state = 280, .external_lex_state = 38}, + [1132] = {.lex_state = 280, .external_lex_state = 38}, + [1133] = {.lex_state = 423, .external_lex_state = 37}, + [1134] = {.lex_state = 530, .external_lex_state = 4}, + [1135] = {.lex_state = 423, .external_lex_state = 37}, + [1136] = {.lex_state = 530, .external_lex_state = 4}, + [1137] = {.lex_state = 530, .external_lex_state = 4}, + [1138] = {.lex_state = 530, .external_lex_state = 4}, + [1139] = {.lex_state = 280, .external_lex_state = 38}, [1140] = {.lex_state = 280, .external_lex_state = 38}, - [1141] = {.lex_state = 280, .external_lex_state = 38}, - [1142] = {.lex_state = 280, .external_lex_state = 38}, - [1143] = {.lex_state = 280, .external_lex_state = 38}, - [1144] = {.lex_state = 282, .external_lex_state = 38}, + [1141] = {.lex_state = 236, .external_lex_state = 13}, + [1142] = {.lex_state = 276, .external_lex_state = 34}, + [1143] = {.lex_state = 276, .external_lex_state = 34}, + [1144] = {.lex_state = 276, .external_lex_state = 34}, [1145] = {.lex_state = 282, .external_lex_state = 38}, [1146] = {.lex_state = 282, .external_lex_state = 38}, - [1147] = {.lex_state = 282, .external_lex_state = 41}, - [1148] = {.lex_state = 531, .external_lex_state = 34}, - [1149] = {.lex_state = 531, .external_lex_state = 34}, - [1150] = {.lex_state = 236, .external_lex_state = 14}, - [1151] = {.lex_state = 531, .external_lex_state = 34}, - [1152] = {.lex_state = 531, .external_lex_state = 34}, + [1147] = {.lex_state = 530, .external_lex_state = 4}, + [1148] = {.lex_state = 530, .external_lex_state = 4}, + [1149] = {.lex_state = 236, .external_lex_state = 14}, + [1150] = {.lex_state = 530, .external_lex_state = 4}, + [1151] = {.lex_state = 530, .external_lex_state = 4}, + [1152] = {.lex_state = 530, .external_lex_state = 4}, [1153] = {.lex_state = 236, .external_lex_state = 14}, - [1154] = {.lex_state = 531, .external_lex_state = 34}, - [1155] = {.lex_state = 280, .external_lex_state = 38}, - [1156] = {.lex_state = 531, .external_lex_state = 34}, - [1157] = {.lex_state = 531, .external_lex_state = 34}, - [1158] = {.lex_state = 280, .external_lex_state = 41}, - [1159] = {.lex_state = 521, .external_lex_state = 11}, - [1160] = {.lex_state = 531, .external_lex_state = 34}, - [1161] = {.lex_state = 280, .external_lex_state = 41}, - [1162] = {.lex_state = 280, .external_lex_state = 41}, - [1163] = {.lex_state = 236, .external_lex_state = 14}, - [1164] = {.lex_state = 282, .external_lex_state = 38}, - [1165] = {.lex_state = 280, .external_lex_state = 41}, - [1166] = {.lex_state = 280, .external_lex_state = 41}, - [1167] = {.lex_state = 280, .external_lex_state = 38}, - [1168] = {.lex_state = 280, .external_lex_state = 38}, - [1169] = {.lex_state = 280, .external_lex_state = 41}, - [1170] = {.lex_state = 282, .external_lex_state = 38}, - [1171] = {.lex_state = 282, .external_lex_state = 38}, - [1172] = {.lex_state = 280, .external_lex_state = 38}, - [1173] = {.lex_state = 282, .external_lex_state = 38}, - [1174] = {.lex_state = 531, .external_lex_state = 34}, - [1175] = {.lex_state = 531, .external_lex_state = 34}, - [1176] = {.lex_state = 460, .external_lex_state = 33}, - [1177] = {.lex_state = 531, .external_lex_state = 34}, - [1178] = {.lex_state = 531, .external_lex_state = 34}, - [1179] = {.lex_state = 410, .external_lex_state = 26}, - [1180] = {.lex_state = 410, .external_lex_state = 26}, - [1181] = {.lex_state = 521, .external_lex_state = 11}, - [1182] = {.lex_state = 531, .external_lex_state = 34}, - [1183] = {.lex_state = 460, .external_lex_state = 33}, - [1184] = {.lex_state = 280, .external_lex_state = 38}, - [1185] = {.lex_state = 280, .external_lex_state = 38}, - [1186] = {.lex_state = 418, .external_lex_state = 42}, - [1187] = {.lex_state = 410, .external_lex_state = 26}, - [1188] = {.lex_state = 410, .external_lex_state = 26}, - [1189] = {.lex_state = 531, .external_lex_state = 34}, - [1190] = {.lex_state = 282, .external_lex_state = 41}, - [1191] = {.lex_state = 284, .external_lex_state = 43}, - [1192] = {.lex_state = 280, .external_lex_state = 38}, - [1193] = {.lex_state = 280, .external_lex_state = 38}, - [1194] = {.lex_state = 284, .external_lex_state = 43}, - [1195] = {.lex_state = 531, .external_lex_state = 34}, - [1196] = {.lex_state = 236, .external_lex_state = 14}, - [1197] = {.lex_state = 236, .external_lex_state = 14}, - [1198] = {.lex_state = 284, .external_lex_state = 43}, - [1199] = {.lex_state = 418, .external_lex_state = 42}, - [1200] = {.lex_state = 284, .external_lex_state = 43}, - [1201] = {.lex_state = 282, .external_lex_state = 41}, + [1154] = {.lex_state = 530, .external_lex_state = 4}, + [1155] = {.lex_state = 530, .external_lex_state = 4}, + [1156] = {.lex_state = 236, .external_lex_state = 14}, + [1157] = {.lex_state = 424, .external_lex_state = 39}, + [1158] = {.lex_state = 424, .external_lex_state = 39}, + [1159] = {.lex_state = 530, .external_lex_state = 4}, + [1160] = {.lex_state = 530, .external_lex_state = 4}, + [1161] = {.lex_state = 530, .external_lex_state = 4}, + [1162] = {.lex_state = 530, .external_lex_state = 4}, + [1163] = {.lex_state = 276, .external_lex_state = 34}, + [1164] = {.lex_state = 276, .external_lex_state = 34}, + [1165] = {.lex_state = 276, .external_lex_state = 34}, + [1166] = {.lex_state = 530, .external_lex_state = 4}, + [1167] = {.lex_state = 276, .external_lex_state = 34}, + [1168] = {.lex_state = 530, .external_lex_state = 4}, + [1169] = {.lex_state = 530, .external_lex_state = 4}, + [1170] = {.lex_state = 530, .external_lex_state = 4}, + [1171] = {.lex_state = 530, .external_lex_state = 4}, + [1172] = {.lex_state = 530, .external_lex_state = 4}, + [1173] = {.lex_state = 530, .external_lex_state = 4}, + [1174] = {.lex_state = 530, .external_lex_state = 4}, + [1175] = {.lex_state = 530, .external_lex_state = 4}, + [1176] = {.lex_state = 530, .external_lex_state = 4}, + [1177] = {.lex_state = 236, .external_lex_state = 14}, + [1178] = {.lex_state = 530, .external_lex_state = 34}, + [1179] = {.lex_state = 269, .external_lex_state = 22}, + [1180] = {.lex_state = 269, .external_lex_state = 22}, + [1181] = {.lex_state = 276, .external_lex_state = 34}, + [1182] = {.lex_state = 530, .external_lex_state = 4}, + [1183] = {.lex_state = 239, .external_lex_state = 11}, + [1184] = {.lex_state = 530, .external_lex_state = 4}, + [1185] = {.lex_state = 530, .external_lex_state = 4}, + [1186] = {.lex_state = 530, .external_lex_state = 4}, + [1187] = {.lex_state = 530, .external_lex_state = 34}, + [1188] = {.lex_state = 427, .external_lex_state = 40}, + [1189] = {.lex_state = 530, .external_lex_state = 34}, + [1190] = {.lex_state = 239, .external_lex_state = 16}, + [1191] = {.lex_state = 282, .external_lex_state = 41}, + [1192] = {.lex_state = 282, .external_lex_state = 38}, + [1193] = {.lex_state = 282, .external_lex_state = 41}, + [1194] = {.lex_state = 284, .external_lex_state = 42}, + [1195] = {.lex_state = 282, .external_lex_state = 41}, + [1196] = {.lex_state = 286, .external_lex_state = 42}, + [1197] = {.lex_state = 280, .external_lex_state = 38}, + [1198] = {.lex_state = 280, .external_lex_state = 38}, + [1199] = {.lex_state = 286, .external_lex_state = 42}, + [1200] = {.lex_state = 280, .external_lex_state = 38}, + [1201] = {.lex_state = 286, .external_lex_state = 42}, [1202] = {.lex_state = 282, .external_lex_state = 38}, - [1203] = {.lex_state = 282, .external_lex_state = 41}, - [1204] = {.lex_state = 531, .external_lex_state = 34}, - [1205] = {.lex_state = 531, .external_lex_state = 34}, - [1206] = {.lex_state = 418, .external_lex_state = 42}, - [1207] = {.lex_state = 286, .external_lex_state = 43}, - [1208] = {.lex_state = 282, .external_lex_state = 38}, + [1203] = {.lex_state = 280, .external_lex_state = 38}, + [1204] = {.lex_state = 282, .external_lex_state = 38}, + [1205] = {.lex_state = 239, .external_lex_state = 11}, + [1206] = {.lex_state = 284, .external_lex_state = 42}, + [1207] = {.lex_state = 410, .external_lex_state = 27}, + [1208] = {.lex_state = 410, .external_lex_state = 27}, [1209] = {.lex_state = 282, .external_lex_state = 38}, - [1210] = {.lex_state = 284, .external_lex_state = 43}, - [1211] = {.lex_state = 284, .external_lex_state = 43}, - [1212] = {.lex_state = 236, .external_lex_state = 14}, - [1213] = {.lex_state = 286, .external_lex_state = 43}, - [1214] = {.lex_state = 239, .external_lex_state = 11}, - [1215] = {.lex_state = 418, .external_lex_state = 42}, - [1216] = {.lex_state = 429, .external_lex_state = 44}, - [1217] = {.lex_state = 418, .external_lex_state = 42}, - [1218] = {.lex_state = 418, .external_lex_state = 42}, - [1219] = {.lex_state = 286, .external_lex_state = 43}, - [1220] = {.lex_state = 239, .external_lex_state = 11}, - [1221] = {.lex_state = 284, .external_lex_state = 43}, - [1222] = {.lex_state = 282, .external_lex_state = 41}, - [1223] = {.lex_state = 284, .external_lex_state = 43}, - [1224] = {.lex_state = 280, .external_lex_state = 38}, - [1225] = {.lex_state = 284, .external_lex_state = 43}, - [1226] = {.lex_state = 286, .external_lex_state = 43}, - [1227] = {.lex_state = 286, .external_lex_state = 43}, - [1228] = {.lex_state = 531, .external_lex_state = 34}, - [1229] = {.lex_state = 531, .external_lex_state = 34}, - [1230] = {.lex_state = 239, .external_lex_state = 16}, - [1231] = {.lex_state = 531, .external_lex_state = 34}, - [1232] = {.lex_state = 521, .external_lex_state = 11}, - [1233] = {.lex_state = 284, .external_lex_state = 43}, - [1234] = {.lex_state = 284, .external_lex_state = 43}, - [1235] = {.lex_state = 239, .external_lex_state = 16}, - [1236] = {.lex_state = 531, .external_lex_state = 34}, - [1237] = {.lex_state = 521, .external_lex_state = 11}, - [1238] = {.lex_state = 531, .external_lex_state = 34}, - [1239] = {.lex_state = 286, .external_lex_state = 43}, - [1240] = {.lex_state = 284, .external_lex_state = 43}, - [1241] = {.lex_state = 282, .external_lex_state = 38}, + [1210] = {.lex_state = 282, .external_lex_state = 38}, + [1211] = {.lex_state = 284, .external_lex_state = 42}, + [1212] = {.lex_state = 239, .external_lex_state = 11}, + [1213] = {.lex_state = 284, .external_lex_state = 42}, + [1214] = {.lex_state = 410, .external_lex_state = 27}, + [1215] = {.lex_state = 410, .external_lex_state = 27}, + [1216] = {.lex_state = 521, .external_lex_state = 11}, + [1217] = {.lex_state = 284, .external_lex_state = 42}, + [1218] = {.lex_state = 286, .external_lex_state = 42}, + [1219] = {.lex_state = 418, .external_lex_state = 43}, + [1220] = {.lex_state = 530, .external_lex_state = 34}, + [1221] = {.lex_state = 530, .external_lex_state = 34}, + [1222] = {.lex_state = 418, .external_lex_state = 43}, + [1223] = {.lex_state = 418, .external_lex_state = 43}, + [1224] = {.lex_state = 284, .external_lex_state = 42}, + [1225] = {.lex_state = 280, .external_lex_state = 38}, + [1226] = {.lex_state = 282, .external_lex_state = 38}, + [1227] = {.lex_state = 530, .external_lex_state = 34}, + [1228] = {.lex_state = 418, .external_lex_state = 43}, + [1229] = {.lex_state = 530, .external_lex_state = 34}, + [1230] = {.lex_state = 530, .external_lex_state = 34}, + [1231] = {.lex_state = 282, .external_lex_state = 38}, + [1232] = {.lex_state = 418, .external_lex_state = 43}, + [1233] = {.lex_state = 530, .external_lex_state = 34}, + [1234] = {.lex_state = 418, .external_lex_state = 43}, + [1235] = {.lex_state = 521, .external_lex_state = 11}, + [1236] = {.lex_state = 530, .external_lex_state = 34}, + [1237] = {.lex_state = 426, .external_lex_state = 37}, + [1238] = {.lex_state = 521, .external_lex_state = 11}, + [1239] = {.lex_state = 426, .external_lex_state = 37}, + [1240] = {.lex_state = 280, .external_lex_state = 38}, + [1241] = {.lex_state = 530, .external_lex_state = 34}, [1242] = {.lex_state = 280, .external_lex_state = 38}, - [1243] = {.lex_state = 282, .external_lex_state = 38}, - [1244] = {.lex_state = 426, .external_lex_state = 37}, - [1245] = {.lex_state = 239, .external_lex_state = 16}, - [1246] = {.lex_state = 531, .external_lex_state = 34}, - [1247] = {.lex_state = 531, .external_lex_state = 34}, - [1248] = {.lex_state = 531, .external_lex_state = 34}, - [1249] = {.lex_state = 531, .external_lex_state = 34}, - [1250] = {.lex_state = 426, .external_lex_state = 37}, - [1251] = {.lex_state = 531, .external_lex_state = 34}, - [1252] = {.lex_state = 531, .external_lex_state = 34}, - [1253] = {.lex_state = 280, .external_lex_state = 38}, - [1254] = {.lex_state = 280, .external_lex_state = 38}, - [1255] = {.lex_state = 280, .external_lex_state = 38}, - [1256] = {.lex_state = 280, .external_lex_state = 38}, - [1257] = {.lex_state = 531, .external_lex_state = 34}, - [1258] = {.lex_state = 239, .external_lex_state = 16}, - [1259] = {.lex_state = 531, .external_lex_state = 34}, - [1260] = {.lex_state = 531, .external_lex_state = 34}, - [1261] = {.lex_state = 531, .external_lex_state = 34}, - [1262] = {.lex_state = 531, .external_lex_state = 34}, - [1263] = {.lex_state = 280, .external_lex_state = 38}, - [1264] = {.lex_state = 286, .external_lex_state = 43}, - [1265] = {.lex_state = 286, .external_lex_state = 43}, - [1266] = {.lex_state = 284, .external_lex_state = 43}, - [1267] = {.lex_state = 410, .external_lex_state = 26}, - [1268] = {.lex_state = 531, .external_lex_state = 34}, - [1269] = {.lex_state = 531, .external_lex_state = 34}, - [1270] = {.lex_state = 531, .external_lex_state = 34}, - [1271] = {.lex_state = 410, .external_lex_state = 26}, - [1272] = {.lex_state = 531, .external_lex_state = 34}, - [1273] = {.lex_state = 531, .external_lex_state = 34}, - [1274] = {.lex_state = 282, .external_lex_state = 38}, - [1275] = {.lex_state = 531, .external_lex_state = 34}, - [1276] = {.lex_state = 531, .external_lex_state = 34}, - [1277] = {.lex_state = 282, .external_lex_state = 38}, - [1278] = {.lex_state = 282, .external_lex_state = 38}, - [1279] = {.lex_state = 531, .external_lex_state = 34}, - [1280] = {.lex_state = 531, .external_lex_state = 34}, - [1281] = {.lex_state = 531, .external_lex_state = 34}, - [1282] = {.lex_state = 531, .external_lex_state = 34}, - [1283] = {.lex_state = 531, .external_lex_state = 34}, - [1284] = {.lex_state = 531, .external_lex_state = 34}, - [1285] = {.lex_state = 531, .external_lex_state = 34}, - [1286] = {.lex_state = 531, .external_lex_state = 34}, + [1243] = {.lex_state = 530, .external_lex_state = 34}, + [1244] = {.lex_state = 280, .external_lex_state = 38}, + [1245] = {.lex_state = 530, .external_lex_state = 34}, + [1246] = {.lex_state = 530, .external_lex_state = 34}, + [1247] = {.lex_state = 530, .external_lex_state = 34}, + [1248] = {.lex_state = 280, .external_lex_state = 38}, + [1249] = {.lex_state = 280, .external_lex_state = 38}, + [1250] = {.lex_state = 530, .external_lex_state = 34}, + [1251] = {.lex_state = 530, .external_lex_state = 34}, + [1252] = {.lex_state = 282, .external_lex_state = 41}, + [1253] = {.lex_state = 530, .external_lex_state = 34}, + [1254] = {.lex_state = 530, .external_lex_state = 34}, + [1255] = {.lex_state = 530, .external_lex_state = 34}, + [1256] = {.lex_state = 530, .external_lex_state = 34}, + [1257] = {.lex_state = 280, .external_lex_state = 38}, + [1258] = {.lex_state = 282, .external_lex_state = 38}, + [1259] = {.lex_state = 282, .external_lex_state = 38}, + [1260] = {.lex_state = 282, .external_lex_state = 38}, + [1261] = {.lex_state = 282, .external_lex_state = 38}, + [1262] = {.lex_state = 286, .external_lex_state = 42}, + [1263] = {.lex_state = 286, .external_lex_state = 42}, + [1264] = {.lex_state = 530, .external_lex_state = 34}, + [1265] = {.lex_state = 530, .external_lex_state = 34}, + [1266] = {.lex_state = 530, .external_lex_state = 34}, + [1267] = {.lex_state = 282, .external_lex_state = 38}, + [1268] = {.lex_state = 530, .external_lex_state = 34}, + [1269] = {.lex_state = 284, .external_lex_state = 42}, + [1270] = {.lex_state = 284, .external_lex_state = 42}, + [1271] = {.lex_state = 530, .external_lex_state = 34}, + [1272] = {.lex_state = 530, .external_lex_state = 34}, + [1273] = {.lex_state = 280, .external_lex_state = 38}, + [1274] = {.lex_state = 530, .external_lex_state = 34}, + [1275] = {.lex_state = 460, .external_lex_state = 35}, + [1276] = {.lex_state = 460, .external_lex_state = 35}, + [1277] = {.lex_state = 239, .external_lex_state = 16}, + [1278] = {.lex_state = 530, .external_lex_state = 34}, + [1279] = {.lex_state = 530, .external_lex_state = 34}, + [1280] = {.lex_state = 280, .external_lex_state = 38}, + [1281] = {.lex_state = 280, .external_lex_state = 38}, + [1282] = {.lex_state = 280, .external_lex_state = 38}, + [1283] = {.lex_state = 286, .external_lex_state = 42}, + [1284] = {.lex_state = 286, .external_lex_state = 42}, + [1285] = {.lex_state = 282, .external_lex_state = 38}, + [1286] = {.lex_state = 282, .external_lex_state = 38}, [1287] = {.lex_state = 282, .external_lex_state = 38}, - [1288] = {.lex_state = 282, .external_lex_state = 38}, - [1289] = {.lex_state = 282, .external_lex_state = 38}, - [1290] = {.lex_state = 282, .external_lex_state = 38}, - [1291] = {.lex_state = 284, .external_lex_state = 43}, - [1292] = {.lex_state = 288, .external_lex_state = 41}, - [1293] = {.lex_state = 286, .external_lex_state = 43}, - [1294] = {.lex_state = 286, .external_lex_state = 43}, - [1295] = {.lex_state = 286, .external_lex_state = 43}, - [1296] = {.lex_state = 284, .external_lex_state = 43}, - [1297] = {.lex_state = 284, .external_lex_state = 45}, - [1298] = {.lex_state = 286, .external_lex_state = 43}, - [1299] = {.lex_state = 286, .external_lex_state = 43}, - [1300] = {.lex_state = 284, .external_lex_state = 43}, - [1301] = {.lex_state = 532, .external_lex_state = 43}, - [1302] = {.lex_state = 284, .external_lex_state = 43}, - [1303] = {.lex_state = 284, .external_lex_state = 43}, - [1304] = {.lex_state = 282, .external_lex_state = 41}, - [1305] = {.lex_state = 269, .external_lex_state = 24}, - [1306] = {.lex_state = 532, .external_lex_state = 43}, - [1307] = {.lex_state = 532, .external_lex_state = 43}, - [1308] = {.lex_state = 286, .external_lex_state = 43}, - [1309] = {.lex_state = 286, .external_lex_state = 43}, - [1310] = {.lex_state = 282, .external_lex_state = 41}, - [1311] = {.lex_state = 288, .external_lex_state = 41}, - [1312] = {.lex_state = 282, .external_lex_state = 41}, - [1313] = {.lex_state = 284, .external_lex_state = 43}, - [1314] = {.lex_state = 286, .external_lex_state = 43}, - [1315] = {.lex_state = 286, .external_lex_state = 43}, - [1316] = {.lex_state = 286, .external_lex_state = 43}, - [1317] = {.lex_state = 284, .external_lex_state = 45}, - [1318] = {.lex_state = 284, .external_lex_state = 43}, - [1319] = {.lex_state = 286, .external_lex_state = 43}, - [1320] = {.lex_state = 254, .external_lex_state = 15}, - [1321] = {.lex_state = 280, .external_lex_state = 41}, - [1322] = {.lex_state = 532, .external_lex_state = 43}, - [1323] = {.lex_state = 286, .external_lex_state = 45}, - [1324] = {.lex_state = 286, .external_lex_state = 45}, - [1325] = {.lex_state = 532, .external_lex_state = 43}, - [1326] = {.lex_state = 286, .external_lex_state = 45}, - [1327] = {.lex_state = 282, .external_lex_state = 41}, - [1328] = {.lex_state = 282, .external_lex_state = 41}, - [1329] = {.lex_state = 280, .external_lex_state = 41}, + [1288] = {.lex_state = 280, .external_lex_state = 38}, + [1289] = {.lex_state = 280, .external_lex_state = 41}, + [1290] = {.lex_state = 282, .external_lex_state = 41}, + [1291] = {.lex_state = 530, .external_lex_state = 34}, + [1292] = {.lex_state = 282, .external_lex_state = 41}, + [1293] = {.lex_state = 236, .external_lex_state = 14}, + [1294] = {.lex_state = 530, .external_lex_state = 34}, + [1295] = {.lex_state = 530, .external_lex_state = 34}, + [1296] = {.lex_state = 280, .external_lex_state = 41}, + [1297] = {.lex_state = 236, .external_lex_state = 14}, + [1298] = {.lex_state = 282, .external_lex_state = 38}, + [1299] = {.lex_state = 236, .external_lex_state = 14}, + [1300] = {.lex_state = 521, .external_lex_state = 11}, + [1301] = {.lex_state = 530, .external_lex_state = 34}, + [1302] = {.lex_state = 236, .external_lex_state = 14}, + [1303] = {.lex_state = 530, .external_lex_state = 34}, + [1304] = {.lex_state = 236, .external_lex_state = 14}, + [1305] = {.lex_state = 280, .external_lex_state = 41}, + [1306] = {.lex_state = 280, .external_lex_state = 41}, + [1307] = {.lex_state = 280, .external_lex_state = 41}, + [1308] = {.lex_state = 530, .external_lex_state = 34}, + [1309] = {.lex_state = 530, .external_lex_state = 34}, + [1310] = {.lex_state = 530, .external_lex_state = 34}, + [1311] = {.lex_state = 530, .external_lex_state = 34}, + [1312] = {.lex_state = 286, .external_lex_state = 42}, + [1313] = {.lex_state = 286, .external_lex_state = 42}, + [1314] = {.lex_state = 286, .external_lex_state = 42}, + [1315] = {.lex_state = 286, .external_lex_state = 42}, + [1316] = {.lex_state = 286, .external_lex_state = 42}, + [1317] = {.lex_state = 286, .external_lex_state = 42}, + [1318] = {.lex_state = 530, .external_lex_state = 34}, + [1319] = {.lex_state = 530, .external_lex_state = 34}, + [1320] = {.lex_state = 530, .external_lex_state = 34}, + [1321] = {.lex_state = 530, .external_lex_state = 34}, + [1322] = {.lex_state = 530, .external_lex_state = 34}, + [1323] = {.lex_state = 530, .external_lex_state = 34}, + [1324] = {.lex_state = 530, .external_lex_state = 34}, + [1325] = {.lex_state = 280, .external_lex_state = 38}, + [1326] = {.lex_state = 280, .external_lex_state = 38}, + [1327] = {.lex_state = 530, .external_lex_state = 34}, + [1328] = {.lex_state = 530, .external_lex_state = 34}, + [1329] = {.lex_state = 530, .external_lex_state = 34}, [1330] = {.lex_state = 239, .external_lex_state = 16}, - [1331] = {.lex_state = 282, .external_lex_state = 41}, - [1332] = {.lex_state = 239, .external_lex_state = 16}, - [1333] = {.lex_state = 286, .external_lex_state = 43}, - [1334] = {.lex_state = 521, .external_lex_state = 16}, - [1335] = {.lex_state = 282, .external_lex_state = 41}, - [1336] = {.lex_state = 286, .external_lex_state = 43}, - [1337] = {.lex_state = 254, .external_lex_state = 15}, - [1338] = {.lex_state = 286, .external_lex_state = 45}, - [1339] = {.lex_state = 521, .external_lex_state = 11}, - [1340] = {.lex_state = 280, .external_lex_state = 41}, - [1341] = {.lex_state = 532, .external_lex_state = 43}, - [1342] = {.lex_state = 282, .external_lex_state = 41}, - [1343] = {.lex_state = 280, .external_lex_state = 41}, - [1344] = {.lex_state = 532, .external_lex_state = 43}, - [1345] = {.lex_state = 286, .external_lex_state = 45}, - [1346] = {.lex_state = 284, .external_lex_state = 45}, - [1347] = {.lex_state = 239, .external_lex_state = 16}, - [1348] = {.lex_state = 284, .external_lex_state = 45}, - [1349] = {.lex_state = 280, .external_lex_state = 41}, - [1350] = {.lex_state = 521, .external_lex_state = 11}, - [1351] = {.lex_state = 282, .external_lex_state = 41}, - [1352] = {.lex_state = 288, .external_lex_state = 41}, - [1353] = {.lex_state = 532, .external_lex_state = 43}, - [1354] = {.lex_state = 532, .external_lex_state = 43}, - [1355] = {.lex_state = 532, .external_lex_state = 43}, - [1356] = {.lex_state = 532, .external_lex_state = 43}, - [1357] = {.lex_state = 532, .external_lex_state = 43}, - [1358] = {.lex_state = 284, .external_lex_state = 43}, - [1359] = {.lex_state = 286, .external_lex_state = 43}, - [1360] = {.lex_state = 521, .external_lex_state = 16}, - [1361] = {.lex_state = 521, .external_lex_state = 11}, - [1362] = {.lex_state = 532, .external_lex_state = 43}, - [1363] = {.lex_state = 532, .external_lex_state = 43}, - [1364] = {.lex_state = 284, .external_lex_state = 43}, - [1365] = {.lex_state = 286, .external_lex_state = 43}, - [1366] = {.lex_state = 521, .external_lex_state = 16}, - [1367] = {.lex_state = 533, .external_lex_state = 43}, - [1368] = {.lex_state = 533, .external_lex_state = 43}, - [1369] = {.lex_state = 239, .external_lex_state = 16}, - [1370] = {.lex_state = 532, .external_lex_state = 43}, - [1371] = {.lex_state = 533, .external_lex_state = 43}, - [1372] = {.lex_state = 533, .external_lex_state = 43}, - [1373] = {.lex_state = 532, .external_lex_state = 43}, - [1374] = {.lex_state = 532, .external_lex_state = 43}, - [1375] = {.lex_state = 533, .external_lex_state = 43}, - [1376] = {.lex_state = 533, .external_lex_state = 43}, - [1377] = {.lex_state = 533, .external_lex_state = 43}, - [1378] = {.lex_state = 533, .external_lex_state = 43}, - [1379] = {.lex_state = 288, .external_lex_state = 41}, - [1380] = {.lex_state = 280, .external_lex_state = 41}, - [1381] = {.lex_state = 532, .external_lex_state = 43}, - [1382] = {.lex_state = 532, .external_lex_state = 43}, - [1383] = {.lex_state = 280, .external_lex_state = 41}, - [1384] = {.lex_state = 284, .external_lex_state = 43}, - [1385] = {.lex_state = 429, .external_lex_state = 46}, - [1386] = {.lex_state = 532, .external_lex_state = 43}, - [1387] = {.lex_state = 521, .external_lex_state = 16}, - [1388] = {.lex_state = 280, .external_lex_state = 41}, - [1389] = {.lex_state = 532, .external_lex_state = 43}, - [1390] = {.lex_state = 269, .external_lex_state = 24}, - [1391] = {.lex_state = 254, .external_lex_state = 15}, - [1392] = {.lex_state = 286, .external_lex_state = 43}, - [1393] = {.lex_state = 284, .external_lex_state = 45}, - [1394] = {.lex_state = 284, .external_lex_state = 43}, - [1395] = {.lex_state = 521, .external_lex_state = 16}, - [1396] = {.lex_state = 286, .external_lex_state = 43}, - [1397] = {.lex_state = 521, .external_lex_state = 16}, - [1398] = {.lex_state = 280, .external_lex_state = 41}, - [1399] = {.lex_state = 284, .external_lex_state = 43}, - [1400] = {.lex_state = 280, .external_lex_state = 41}, - [1401] = {.lex_state = 288, .external_lex_state = 41}, - [1402] = {.lex_state = 286, .external_lex_state = 45}, - [1403] = {.lex_state = 280, .external_lex_state = 41}, - [1404] = {.lex_state = 282, .external_lex_state = 41}, - [1405] = {.lex_state = 280, .external_lex_state = 41}, - [1406] = {.lex_state = 282, .external_lex_state = 41}, + [1331] = {.lex_state = 530, .external_lex_state = 34}, + [1332] = {.lex_state = 236, .external_lex_state = 14}, + [1333] = {.lex_state = 280, .external_lex_state = 41}, + [1334] = {.lex_state = 282, .external_lex_state = 38}, + [1335] = {.lex_state = 282, .external_lex_state = 38}, + [1336] = {.lex_state = 282, .external_lex_state = 38}, + [1337] = {.lex_state = 410, .external_lex_state = 27}, + [1338] = {.lex_state = 239, .external_lex_state = 16}, + [1339] = {.lex_state = 429, .external_lex_state = 44}, + [1340] = {.lex_state = 410, .external_lex_state = 27}, + [1341] = {.lex_state = 280, .external_lex_state = 38}, + [1342] = {.lex_state = 239, .external_lex_state = 16}, + [1343] = {.lex_state = 530, .external_lex_state = 34}, + [1344] = {.lex_state = 239, .external_lex_state = 16}, + [1345] = {.lex_state = 282, .external_lex_state = 41}, + [1346] = {.lex_state = 288, .external_lex_state = 41}, + [1347] = {.lex_state = 532, .external_lex_state = 42}, + [1348] = {.lex_state = 245, .external_lex_state = 15}, + [1349] = {.lex_state = 286, .external_lex_state = 42}, + [1350] = {.lex_state = 251, .external_lex_state = 15}, + [1351] = {.lex_state = 532, .external_lex_state = 42}, + [1352] = {.lex_state = 239, .external_lex_state = 16}, + [1353] = {.lex_state = 251, .external_lex_state = 15}, + [1354] = {.lex_state = 521, .external_lex_state = 16}, + [1355] = {.lex_state = 280, .external_lex_state = 41}, + [1356] = {.lex_state = 532, .external_lex_state = 42}, + [1357] = {.lex_state = 284, .external_lex_state = 45}, + [1358] = {.lex_state = 282, .external_lex_state = 41}, + [1359] = {.lex_state = 282, .external_lex_state = 41}, + [1360] = {.lex_state = 532, .external_lex_state = 42}, + [1361] = {.lex_state = 288, .external_lex_state = 41}, + [1362] = {.lex_state = 284, .external_lex_state = 42}, + [1363] = {.lex_state = 286, .external_lex_state = 45}, + [1364] = {.lex_state = 280, .external_lex_state = 41}, + [1365] = {.lex_state = 266, .external_lex_state = 24}, + [1366] = {.lex_state = 284, .external_lex_state = 45}, + [1367] = {.lex_state = 280, .external_lex_state = 41}, + [1368] = {.lex_state = 521, .external_lex_state = 16}, + [1369] = {.lex_state = 266, .external_lex_state = 24}, + [1370] = {.lex_state = 284, .external_lex_state = 45}, + [1371] = {.lex_state = 521, .external_lex_state = 16}, + [1372] = {.lex_state = 521, .external_lex_state = 16}, + [1373] = {.lex_state = 286, .external_lex_state = 42}, + [1374] = {.lex_state = 282, .external_lex_state = 41}, + [1375] = {.lex_state = 266, .external_lex_state = 24}, + [1376] = {.lex_state = 521, .external_lex_state = 16}, + [1377] = {.lex_state = 286, .external_lex_state = 45}, + [1378] = {.lex_state = 282, .external_lex_state = 41}, + [1379] = {.lex_state = 286, .external_lex_state = 42}, + [1380] = {.lex_state = 286, .external_lex_state = 42}, + [1381] = {.lex_state = 532, .external_lex_state = 42}, + [1382] = {.lex_state = 284, .external_lex_state = 42}, + [1383] = {.lex_state = 239, .external_lex_state = 16}, + [1384] = {.lex_state = 532, .external_lex_state = 42}, + [1385] = {.lex_state = 286, .external_lex_state = 45}, + [1386] = {.lex_state = 286, .external_lex_state = 42}, + [1387] = {.lex_state = 282, .external_lex_state = 41}, + [1388] = {.lex_state = 284, .external_lex_state = 42}, + [1389] = {.lex_state = 282, .external_lex_state = 41}, + [1390] = {.lex_state = 429, .external_lex_state = 46}, + [1391] = {.lex_state = 280, .external_lex_state = 41}, + [1392] = {.lex_state = 251, .external_lex_state = 15}, + [1393] = {.lex_state = 532, .external_lex_state = 42}, + [1394] = {.lex_state = 282, .external_lex_state = 41}, + [1395] = {.lex_state = 532, .external_lex_state = 42}, + [1396] = {.lex_state = 251, .external_lex_state = 15}, + [1397] = {.lex_state = 286, .external_lex_state = 42}, + [1398] = {.lex_state = 284, .external_lex_state = 42}, + [1399] = {.lex_state = 282, .external_lex_state = 41}, + [1400] = {.lex_state = 286, .external_lex_state = 42}, + [1401] = {.lex_state = 251, .external_lex_state = 15}, + [1402] = {.lex_state = 532, .external_lex_state = 42}, + [1403] = {.lex_state = 282, .external_lex_state = 41}, + [1404] = {.lex_state = 532, .external_lex_state = 42}, + [1405] = {.lex_state = 532, .external_lex_state = 42}, + [1406] = {.lex_state = 532, .external_lex_state = 42}, [1407] = {.lex_state = 280, .external_lex_state = 41}, - [1408] = {.lex_state = 239, .external_lex_state = 16}, - [1409] = {.lex_state = 280, .external_lex_state = 41}, - [1410] = {.lex_state = 245, .external_lex_state = 15}, - [1411] = {.lex_state = 254, .external_lex_state = 15}, - [1412] = {.lex_state = 521, .external_lex_state = 16}, - [1413] = {.lex_state = 282, .external_lex_state = 41}, - [1414] = {.lex_state = 280, .external_lex_state = 41}, - [1415] = {.lex_state = 282, .external_lex_state = 41}, - [1416] = {.lex_state = 532, .external_lex_state = 43}, - [1417] = {.lex_state = 286, .external_lex_state = 43}, - [1418] = {.lex_state = 532, .external_lex_state = 43}, - [1419] = {.lex_state = 286, .external_lex_state = 43}, - [1420] = {.lex_state = 532, .external_lex_state = 43}, - [1421] = {.lex_state = 288, .external_lex_state = 41}, - [1422] = {.lex_state = 532, .external_lex_state = 43}, - [1423] = {.lex_state = 254, .external_lex_state = 15}, - [1424] = {.lex_state = 521, .external_lex_state = 16}, - [1425] = {.lex_state = 245, .external_lex_state = 15}, - [1426] = {.lex_state = 282, .external_lex_state = 41}, - [1427] = {.lex_state = 245, .external_lex_state = 15}, - [1428] = {.lex_state = 284, .external_lex_state = 43}, - [1429] = {.lex_state = 269, .external_lex_state = 24}, - [1430] = {.lex_state = 532, .external_lex_state = 43}, - [1431] = {.lex_state = 521, .external_lex_state = 11}, - [1432] = {.lex_state = 282, .external_lex_state = 41}, - [1433] = {.lex_state = 280, .external_lex_state = 41}, - [1434] = {.lex_state = 280, .external_lex_state = 41}, - [1435] = {.lex_state = 280, .external_lex_state = 41}, - [1436] = {.lex_state = 521, .external_lex_state = 16}, - [1437] = {.lex_state = 533, .external_lex_state = 43}, - [1438] = {.lex_state = 239, .external_lex_state = 16}, - [1439] = {.lex_state = 284, .external_lex_state = 43}, - [1440] = {.lex_state = 284, .external_lex_state = 43}, - [1441] = {.lex_state = 284, .external_lex_state = 43}, - [1442] = {.lex_state = 282, .external_lex_state = 41}, - [1443] = {.lex_state = 533, .external_lex_state = 43}, - [1444] = {.lex_state = 533, .external_lex_state = 43}, - [1445] = {.lex_state = 533, .external_lex_state = 43}, - [1446] = {.lex_state = 533, .external_lex_state = 43}, - [1447] = {.lex_state = 533, .external_lex_state = 43}, - [1448] = {.lex_state = 254, .external_lex_state = 15}, - [1449] = {.lex_state = 284, .external_lex_state = 43}, - [1450] = {.lex_state = 532, .external_lex_state = 43}, - [1451] = {.lex_state = 282, .external_lex_state = 41}, - [1452] = {.lex_state = 284, .external_lex_state = 43}, - [1453] = {.lex_state = 284, .external_lex_state = 43}, - [1454] = {.lex_state = 533, .external_lex_state = 43}, - [1455] = {.lex_state = 284, .external_lex_state = 43}, - [1456] = {.lex_state = 532, .external_lex_state = 43}, - [1457] = {.lex_state = 254, .external_lex_state = 15}, - [1458] = {.lex_state = 282, .external_lex_state = 41}, - [1459] = {.lex_state = 280, .external_lex_state = 41}, - [1460] = {.lex_state = 282, .external_lex_state = 41}, - [1461] = {.lex_state = 533, .external_lex_state = 43}, - [1462] = {.lex_state = 284, .external_lex_state = 45}, - [1463] = {.lex_state = 521, .external_lex_state = 16}, - [1464] = {.lex_state = 245, .external_lex_state = 21}, - [1465] = {.lex_state = 245, .external_lex_state = 15}, - [1466] = {.lex_state = 288, .external_lex_state = 41}, - [1467] = {.lex_state = 288, .external_lex_state = 41}, - [1468] = {.lex_state = 245, .external_lex_state = 15}, - [1469] = {.lex_state = 285, .external_lex_state = 47}, - [1470] = {.lex_state = 285, .external_lex_state = 47}, - [1471] = {.lex_state = 248, .external_lex_state = 19}, - [1472] = {.lex_state = 532, .external_lex_state = 43}, - [1473] = {.lex_state = 288, .external_lex_state = 41}, - [1474] = {.lex_state = 245, .external_lex_state = 21}, - [1475] = {.lex_state = 288, .external_lex_state = 41}, - [1476] = {.lex_state = 288, .external_lex_state = 41}, - [1477] = {.lex_state = 533, .external_lex_state = 43}, - [1478] = {.lex_state = 532, .external_lex_state = 43}, - [1479] = {.lex_state = 254, .external_lex_state = 15}, - [1480] = {.lex_state = 257, .external_lex_state = 19}, - [1481] = {.lex_state = 288, .external_lex_state = 41}, - [1482] = {.lex_state = 288, .external_lex_state = 41}, - [1483] = {.lex_state = 521, .external_lex_state = 16}, - [1484] = {.lex_state = 254, .external_lex_state = 21}, - [1485] = {.lex_state = 533, .external_lex_state = 43}, - [1486] = {.lex_state = 533, .external_lex_state = 43}, - [1487] = {.lex_state = 533, .external_lex_state = 43}, - [1488] = {.lex_state = 533, .external_lex_state = 45}, - [1489] = {.lex_state = 288, .external_lex_state = 41}, - [1490] = {.lex_state = 532, .external_lex_state = 43}, - [1491] = {.lex_state = 254, .external_lex_state = 21}, - [1492] = {.lex_state = 533, .external_lex_state = 43}, - [1493] = {.lex_state = 288, .external_lex_state = 41}, - [1494] = {.lex_state = 532, .external_lex_state = 43}, - [1495] = {.lex_state = 532, .external_lex_state = 43}, - [1496] = {.lex_state = 533, .external_lex_state = 45}, - [1497] = {.lex_state = 286, .external_lex_state = 45}, - [1498] = {.lex_state = 286, .external_lex_state = 45}, - [1499] = {.lex_state = 532, .external_lex_state = 43}, - [1500] = {.lex_state = 532, .external_lex_state = 43}, - [1501] = {.lex_state = 257, .external_lex_state = 19}, - [1502] = {.lex_state = 257, .external_lex_state = 19}, - [1503] = {.lex_state = 286, .external_lex_state = 45}, - [1504] = {.lex_state = 257, .external_lex_state = 19}, - [1505] = {.lex_state = 532, .external_lex_state = 43}, - [1506] = {.lex_state = 286, .external_lex_state = 45}, - [1507] = {.lex_state = 532, .external_lex_state = 43}, - [1508] = {.lex_state = 257, .external_lex_state = 19}, - [1509] = {.lex_state = 286, .external_lex_state = 45}, - [1510] = {.lex_state = 292, .external_lex_state = 45}, - [1511] = {.lex_state = 288, .external_lex_state = 41}, - [1512] = {.lex_state = 288, .external_lex_state = 41}, - [1513] = {.lex_state = 292, .external_lex_state = 45}, - [1514] = {.lex_state = 248, .external_lex_state = 19}, - [1515] = {.lex_state = 292, .external_lex_state = 45}, - [1516] = {.lex_state = 286, .external_lex_state = 45}, - [1517] = {.lex_state = 286, .external_lex_state = 45}, - [1518] = {.lex_state = 533, .external_lex_state = 43}, - [1519] = {.lex_state = 419, .external_lex_state = 48}, - [1520] = {.lex_state = 533, .external_lex_state = 43}, - [1521] = {.lex_state = 532, .external_lex_state = 43}, - [1522] = {.lex_state = 292, .external_lex_state = 45}, - [1523] = {.lex_state = 292, .external_lex_state = 45}, - [1524] = {.lex_state = 292, .external_lex_state = 45}, + [1408] = {.lex_state = 280, .external_lex_state = 41}, + [1409] = {.lex_state = 532, .external_lex_state = 42}, + [1410] = {.lex_state = 532, .external_lex_state = 42}, + [1411] = {.lex_state = 282, .external_lex_state = 41}, + [1412] = {.lex_state = 533, .external_lex_state = 42}, + [1413] = {.lex_state = 251, .external_lex_state = 15}, + [1414] = {.lex_state = 532, .external_lex_state = 42}, + [1415] = {.lex_state = 533, .external_lex_state = 42}, + [1416] = {.lex_state = 286, .external_lex_state = 45}, + [1417] = {.lex_state = 532, .external_lex_state = 42}, + [1418] = {.lex_state = 284, .external_lex_state = 42}, + [1419] = {.lex_state = 288, .external_lex_state = 41}, + [1420] = {.lex_state = 532, .external_lex_state = 42}, + [1421] = {.lex_state = 284, .external_lex_state = 42}, + [1422] = {.lex_state = 245, .external_lex_state = 15}, + [1423] = {.lex_state = 521, .external_lex_state = 16}, + [1424] = {.lex_state = 284, .external_lex_state = 45}, + [1425] = {.lex_state = 284, .external_lex_state = 42}, + [1426] = {.lex_state = 288, .external_lex_state = 41}, + [1427] = {.lex_state = 288, .external_lex_state = 41}, + [1428] = {.lex_state = 282, .external_lex_state = 41}, + [1429] = {.lex_state = 282, .external_lex_state = 41}, + [1430] = {.lex_state = 521, .external_lex_state = 16}, + [1431] = {.lex_state = 282, .external_lex_state = 41}, + [1432] = {.lex_state = 284, .external_lex_state = 42}, + [1433] = {.lex_state = 521, .external_lex_state = 11}, + [1434] = {.lex_state = 284, .external_lex_state = 42}, + [1435] = {.lex_state = 282, .external_lex_state = 41}, + [1436] = {.lex_state = 284, .external_lex_state = 42}, + [1437] = {.lex_state = 521, .external_lex_state = 11}, + [1438] = {.lex_state = 284, .external_lex_state = 42}, + [1439] = {.lex_state = 280, .external_lex_state = 41}, + [1440] = {.lex_state = 286, .external_lex_state = 42}, + [1441] = {.lex_state = 284, .external_lex_state = 42}, + [1442] = {.lex_state = 521, .external_lex_state = 11}, + [1443] = {.lex_state = 284, .external_lex_state = 42}, + [1444] = {.lex_state = 280, .external_lex_state = 41}, + [1445] = {.lex_state = 257, .external_lex_state = 18}, + [1446] = {.lex_state = 284, .external_lex_state = 42}, + [1447] = {.lex_state = 286, .external_lex_state = 42}, + [1448] = {.lex_state = 286, .external_lex_state = 42}, + [1449] = {.lex_state = 284, .external_lex_state = 45}, + [1450] = {.lex_state = 532, .external_lex_state = 42}, + [1451] = {.lex_state = 284, .external_lex_state = 45}, + [1452] = {.lex_state = 251, .external_lex_state = 15}, + [1453] = {.lex_state = 284, .external_lex_state = 42}, + [1454] = {.lex_state = 532, .external_lex_state = 42}, + [1455] = {.lex_state = 532, .external_lex_state = 42}, + [1456] = {.lex_state = 257, .external_lex_state = 18}, + [1457] = {.lex_state = 286, .external_lex_state = 42}, + [1458] = {.lex_state = 280, .external_lex_state = 41}, + [1459] = {.lex_state = 533, .external_lex_state = 42}, + [1460] = {.lex_state = 533, .external_lex_state = 42}, + [1461] = {.lex_state = 521, .external_lex_state = 16}, + [1462] = {.lex_state = 282, .external_lex_state = 41}, + [1463] = {.lex_state = 282, .external_lex_state = 41}, + [1464] = {.lex_state = 280, .external_lex_state = 41}, + [1465] = {.lex_state = 533, .external_lex_state = 42}, + [1466] = {.lex_state = 280, .external_lex_state = 41}, + [1467] = {.lex_state = 280, .external_lex_state = 41}, + [1468] = {.lex_state = 532, .external_lex_state = 42}, + [1469] = {.lex_state = 532, .external_lex_state = 42}, + [1470] = {.lex_state = 286, .external_lex_state = 42}, + [1471] = {.lex_state = 532, .external_lex_state = 42}, + [1472] = {.lex_state = 521, .external_lex_state = 16}, + [1473] = {.lex_state = 532, .external_lex_state = 42}, + [1474] = {.lex_state = 286, .external_lex_state = 42}, + [1475] = {.lex_state = 521, .external_lex_state = 16}, + [1476] = {.lex_state = 532, .external_lex_state = 42}, + [1477] = {.lex_state = 282, .external_lex_state = 41}, + [1478] = {.lex_state = 532, .external_lex_state = 42}, + [1479] = {.lex_state = 280, .external_lex_state = 41}, + [1480] = {.lex_state = 245, .external_lex_state = 15}, + [1481] = {.lex_state = 284, .external_lex_state = 42}, + [1482] = {.lex_state = 284, .external_lex_state = 42}, + [1483] = {.lex_state = 280, .external_lex_state = 41}, + [1484] = {.lex_state = 532, .external_lex_state = 42}, + [1485] = {.lex_state = 280, .external_lex_state = 41}, + [1486] = {.lex_state = 533, .external_lex_state = 42}, + [1487] = {.lex_state = 284, .external_lex_state = 42}, + [1488] = {.lex_state = 532, .external_lex_state = 42}, + [1489] = {.lex_state = 533, .external_lex_state = 42}, + [1490] = {.lex_state = 533, .external_lex_state = 42}, + [1491] = {.lex_state = 280, .external_lex_state = 41}, + [1492] = {.lex_state = 280, .external_lex_state = 41}, + [1493] = {.lex_state = 280, .external_lex_state = 41}, + [1494] = {.lex_state = 280, .external_lex_state = 41}, + [1495] = {.lex_state = 239, .external_lex_state = 16}, + [1496] = {.lex_state = 266, .external_lex_state = 24}, + [1497] = {.lex_state = 288, .external_lex_state = 41}, + [1498] = {.lex_state = 533, .external_lex_state = 42}, + [1499] = {.lex_state = 521, .external_lex_state = 11}, + [1500] = {.lex_state = 266, .external_lex_state = 24}, + [1501] = {.lex_state = 257, .external_lex_state = 18}, + [1502] = {.lex_state = 286, .external_lex_state = 45}, + [1503] = {.lex_state = 257, .external_lex_state = 18}, + [1504] = {.lex_state = 239, .external_lex_state = 16}, + [1505] = {.lex_state = 286, .external_lex_state = 42}, + [1506] = {.lex_state = 286, .external_lex_state = 42}, + [1507] = {.lex_state = 286, .external_lex_state = 42}, + [1508] = {.lex_state = 286, .external_lex_state = 45}, + [1509] = {.lex_state = 286, .external_lex_state = 42}, + [1510] = {.lex_state = 533, .external_lex_state = 42}, + [1511] = {.lex_state = 533, .external_lex_state = 42}, + [1512] = {.lex_state = 284, .external_lex_state = 42}, + [1513] = {.lex_state = 533, .external_lex_state = 42}, + [1514] = {.lex_state = 533, .external_lex_state = 42}, + [1515] = {.lex_state = 533, .external_lex_state = 42}, + [1516] = {.lex_state = 533, .external_lex_state = 42}, + [1517] = {.lex_state = 533, .external_lex_state = 42}, + [1518] = {.lex_state = 286, .external_lex_state = 42}, + [1519] = {.lex_state = 286, .external_lex_state = 42}, + [1520] = {.lex_state = 239, .external_lex_state = 16}, + [1521] = {.lex_state = 282, .external_lex_state = 41}, + [1522] = {.lex_state = 533, .external_lex_state = 42}, + [1523] = {.lex_state = 276, .external_lex_state = 4}, + [1524] = {.lex_state = 276, .external_lex_state = 4}, [1525] = {.lex_state = 284, .external_lex_state = 45}, [1526] = {.lex_state = 284, .external_lex_state = 45}, - [1527] = {.lex_state = 532, .external_lex_state = 43}, - [1528] = {.lex_state = 284, .external_lex_state = 45}, - [1529] = {.lex_state = 532, .external_lex_state = 43}, - [1530] = {.lex_state = 284, .external_lex_state = 45}, - [1531] = {.lex_state = 284, .external_lex_state = 45}, - [1532] = {.lex_state = 288, .external_lex_state = 41}, - [1533] = {.lex_state = 288, .external_lex_state = 41}, - [1534] = {.lex_state = 284, .external_lex_state = 45}, - [1535] = {.lex_state = 288, .external_lex_state = 41}, + [1527] = {.lex_state = 285, .external_lex_state = 47}, + [1528] = {.lex_state = 532, .external_lex_state = 42}, + [1529] = {.lex_state = 533, .external_lex_state = 45}, + [1530] = {.lex_state = 288, .external_lex_state = 41}, + [1531] = {.lex_state = 245, .external_lex_state = 21}, + [1532] = {.lex_state = 284, .external_lex_state = 45}, + [1533] = {.lex_state = 284, .external_lex_state = 45}, + [1534] = {.lex_state = 533, .external_lex_state = 45}, + [1535] = {.lex_state = 521, .external_lex_state = 16}, [1536] = {.lex_state = 288, .external_lex_state = 41}, - [1537] = {.lex_state = 284, .external_lex_state = 45}, + [1537] = {.lex_state = 288, .external_lex_state = 41}, [1538] = {.lex_state = 288, .external_lex_state = 41}, - [1539] = {.lex_state = 286, .external_lex_state = 45}, - [1540] = {.lex_state = 286, .external_lex_state = 45}, - [1541] = {.lex_state = 269, .external_lex_state = 24}, - [1542] = {.lex_state = 257, .external_lex_state = 19}, - [1543] = {.lex_state = 269, .external_lex_state = 24}, - [1544] = {.lex_state = 288, .external_lex_state = 41}, - [1545] = {.lex_state = 288, .external_lex_state = 41}, - [1546] = {.lex_state = 288, .external_lex_state = 41}, - [1547] = {.lex_state = 254, .external_lex_state = 15}, - [1548] = {.lex_state = 533, .external_lex_state = 45}, - [1549] = {.lex_state = 286, .external_lex_state = 45}, - [1550] = {.lex_state = 286, .external_lex_state = 45}, - [1551] = {.lex_state = 532, .external_lex_state = 43}, - [1552] = {.lex_state = 532, .external_lex_state = 43}, - [1553] = {.lex_state = 284, .external_lex_state = 45}, - [1554] = {.lex_state = 284, .external_lex_state = 45}, - [1555] = {.lex_state = 533, .external_lex_state = 43}, - [1556] = {.lex_state = 532, .external_lex_state = 43}, + [1539] = {.lex_state = 288, .external_lex_state = 41}, + [1540] = {.lex_state = 288, .external_lex_state = 41}, + [1541] = {.lex_state = 284, .external_lex_state = 45}, + [1542] = {.lex_state = 284, .external_lex_state = 45}, + [1543] = {.lex_state = 532, .external_lex_state = 45}, + [1544] = {.lex_state = 532, .external_lex_state = 45}, + [1545] = {.lex_state = 251, .external_lex_state = 15}, + [1546] = {.lex_state = 251, .external_lex_state = 15}, + [1547] = {.lex_state = 284, .external_lex_state = 45}, + [1548] = {.lex_state = 288, .external_lex_state = 41}, + [1549] = {.lex_state = 257, .external_lex_state = 18}, + [1550] = {.lex_state = 532, .external_lex_state = 45}, + [1551] = {.lex_state = 286, .external_lex_state = 45}, + [1552] = {.lex_state = 288, .external_lex_state = 41}, + [1553] = {.lex_state = 286, .external_lex_state = 45}, + [1554] = {.lex_state = 419, .external_lex_state = 48}, + [1555] = {.lex_state = 532, .external_lex_state = 42}, + [1556] = {.lex_state = 532, .external_lex_state = 45}, [1557] = {.lex_state = 284, .external_lex_state = 45}, - [1558] = {.lex_state = 284, .external_lex_state = 45}, - [1559] = {.lex_state = 286, .external_lex_state = 45}, - [1560] = {.lex_state = 286, .external_lex_state = 45}, - [1561] = {.lex_state = 286, .external_lex_state = 45}, - [1562] = {.lex_state = 286, .external_lex_state = 45}, - [1563] = {.lex_state = 533, .external_lex_state = 43}, - [1564] = {.lex_state = 419, .external_lex_state = 48}, - [1565] = {.lex_state = 532, .external_lex_state = 43}, - [1566] = {.lex_state = 286, .external_lex_state = 45}, - [1567] = {.lex_state = 532, .external_lex_state = 43}, - [1568] = {.lex_state = 532, .external_lex_state = 45}, - [1569] = {.lex_state = 286, .external_lex_state = 45}, + [1558] = {.lex_state = 245, .external_lex_state = 15}, + [1559] = {.lex_state = 284, .external_lex_state = 45}, + [1560] = {.lex_state = 532, .external_lex_state = 42}, + [1561] = {.lex_state = 532, .external_lex_state = 42}, + [1562] = {.lex_state = 292, .external_lex_state = 45}, + [1563] = {.lex_state = 288, .external_lex_state = 41}, + [1564] = {.lex_state = 532, .external_lex_state = 42}, + [1565] = {.lex_state = 251, .external_lex_state = 15}, + [1566] = {.lex_state = 288, .external_lex_state = 41}, + [1567] = {.lex_state = 251, .external_lex_state = 15}, + [1568] = {.lex_state = 532, .external_lex_state = 42}, + [1569] = {.lex_state = 292, .external_lex_state = 45}, [1570] = {.lex_state = 286, .external_lex_state = 45}, - [1571] = {.lex_state = 286, .external_lex_state = 45}, - [1572] = {.lex_state = 532, .external_lex_state = 45}, - [1573] = {.lex_state = 532, .external_lex_state = 43}, - [1574] = {.lex_state = 532, .external_lex_state = 43}, + [1571] = {.lex_state = 532, .external_lex_state = 42}, + [1572] = {.lex_state = 286, .external_lex_state = 45}, + [1573] = {.lex_state = 532, .external_lex_state = 42}, + [1574] = {.lex_state = 284, .external_lex_state = 45}, [1575] = {.lex_state = 284, .external_lex_state = 45}, - [1576] = {.lex_state = 284, .external_lex_state = 45}, + [1576] = {.lex_state = 533, .external_lex_state = 42}, [1577] = {.lex_state = 284, .external_lex_state = 45}, [1578] = {.lex_state = 284, .external_lex_state = 45}, - [1579] = {.lex_state = 284, .external_lex_state = 45}, - [1580] = {.lex_state = 284, .external_lex_state = 45}, - [1581] = {.lex_state = 284, .external_lex_state = 45}, - [1582] = {.lex_state = 284, .external_lex_state = 45}, - [1583] = {.lex_state = 532, .external_lex_state = 45}, - [1584] = {.lex_state = 532, .external_lex_state = 43}, - [1585] = {.lex_state = 419, .external_lex_state = 48}, - [1586] = {.lex_state = 521, .external_lex_state = 16}, - [1587] = {.lex_state = 532, .external_lex_state = 43}, - [1588] = {.lex_state = 532, .external_lex_state = 45}, - [1589] = {.lex_state = 419, .external_lex_state = 48}, - [1590] = {.lex_state = 532, .external_lex_state = 43}, - [1591] = {.lex_state = 532, .external_lex_state = 43}, - [1592] = {.lex_state = 533, .external_lex_state = 43}, - [1593] = {.lex_state = 533, .external_lex_state = 43}, - [1594] = {.lex_state = 533, .external_lex_state = 45}, - [1595] = {.lex_state = 276, .external_lex_state = 4}, - [1596] = {.lex_state = 532, .external_lex_state = 43}, - [1597] = {.lex_state = 532, .external_lex_state = 45}, - [1598] = {.lex_state = 533, .external_lex_state = 45}, - [1599] = {.lex_state = 532, .external_lex_state = 45}, + [1579] = {.lex_state = 532, .external_lex_state = 42}, + [1580] = {.lex_state = 533, .external_lex_state = 42}, + [1581] = {.lex_state = 533, .external_lex_state = 42}, + [1582] = {.lex_state = 248, .external_lex_state = 18}, + [1583] = {.lex_state = 532, .external_lex_state = 42}, + [1584] = {.lex_state = 532, .external_lex_state = 42}, + [1585] = {.lex_state = 533, .external_lex_state = 42}, + [1586] = {.lex_state = 245, .external_lex_state = 15}, + [1587] = {.lex_state = 532, .external_lex_state = 42}, + [1588] = {.lex_state = 532, .external_lex_state = 42}, + [1589] = {.lex_state = 245, .external_lex_state = 15}, + [1590] = {.lex_state = 533, .external_lex_state = 42}, + [1591] = {.lex_state = 292, .external_lex_state = 45}, + [1592] = {.lex_state = 284, .external_lex_state = 45}, + [1593] = {.lex_state = 533, .external_lex_state = 45}, + [1594] = {.lex_state = 419, .external_lex_state = 48}, + [1595] = {.lex_state = 284, .external_lex_state = 45}, + [1596] = {.lex_state = 533, .external_lex_state = 45}, + [1597] = {.lex_state = 454, .external_lex_state = 27}, + [1598] = {.lex_state = 251, .external_lex_state = 15}, + [1599] = {.lex_state = 533, .external_lex_state = 45}, [1600] = {.lex_state = 532, .external_lex_state = 45}, - [1601] = {.lex_state = 257, .external_lex_state = 19}, - [1602] = {.lex_state = 257, .external_lex_state = 19}, - [1603] = {.lex_state = 532, .external_lex_state = 45}, - [1604] = {.lex_state = 254, .external_lex_state = 15}, - [1605] = {.lex_state = 248, .external_lex_state = 19}, - [1606] = {.lex_state = 521, .external_lex_state = 16}, - [1607] = {.lex_state = 521, .external_lex_state = 16}, - [1608] = {.lex_state = 254, .external_lex_state = 15}, - [1609] = {.lex_state = 254, .external_lex_state = 15}, - [1610] = {.lex_state = 532, .external_lex_state = 45}, - [1611] = {.lex_state = 532, .external_lex_state = 45}, + [1601] = {.lex_state = 251, .external_lex_state = 15}, + [1602] = {.lex_state = 284, .external_lex_state = 45}, + [1603] = {.lex_state = 257, .external_lex_state = 18}, + [1604] = {.lex_state = 533, .external_lex_state = 45}, + [1605] = {.lex_state = 533, .external_lex_state = 42}, + [1606] = {.lex_state = 533, .external_lex_state = 42}, + [1607] = {.lex_state = 284, .external_lex_state = 45}, + [1608] = {.lex_state = 284, .external_lex_state = 45}, + [1609] = {.lex_state = 266, .external_lex_state = 24}, + [1610] = {.lex_state = 284, .external_lex_state = 45}, + [1611] = {.lex_state = 266, .external_lex_state = 24}, [1612] = {.lex_state = 521, .external_lex_state = 16}, - [1613] = {.lex_state = 521, .external_lex_state = 16}, - [1614] = {.lex_state = 533, .external_lex_state = 45}, - [1615] = {.lex_state = 533, .external_lex_state = 45}, - [1616] = {.lex_state = 533, .external_lex_state = 43}, - [1617] = {.lex_state = 533, .external_lex_state = 43}, - [1618] = {.lex_state = 533, .external_lex_state = 43}, - [1619] = {.lex_state = 533, .external_lex_state = 43}, - [1620] = {.lex_state = 533, .external_lex_state = 43}, - [1621] = {.lex_state = 533, .external_lex_state = 43}, - [1622] = {.lex_state = 533, .external_lex_state = 43}, - [1623] = {.lex_state = 533, .external_lex_state = 45}, - [1624] = {.lex_state = 533, .external_lex_state = 43}, - [1625] = {.lex_state = 532, .external_lex_state = 43}, - [1626] = {.lex_state = 533, .external_lex_state = 45}, - [1627] = {.lex_state = 257, .external_lex_state = 19}, - [1628] = {.lex_state = 521, .external_lex_state = 16}, - [1629] = {.lex_state = 533, .external_lex_state = 43}, - [1630] = {.lex_state = 533, .external_lex_state = 43}, - [1631] = {.lex_state = 533, .external_lex_state = 43}, - [1632] = {.lex_state = 533, .external_lex_state = 45}, - [1633] = {.lex_state = 533, .external_lex_state = 43}, - [1634] = {.lex_state = 533, .external_lex_state = 43}, - [1635] = {.lex_state = 521, .external_lex_state = 16}, - [1636] = {.lex_state = 533, .external_lex_state = 45}, - [1637] = {.lex_state = 533, .external_lex_state = 43}, - [1638] = {.lex_state = 533, .external_lex_state = 43}, - [1639] = {.lex_state = 533, .external_lex_state = 43}, - [1640] = {.lex_state = 533, .external_lex_state = 43}, - [1641] = {.lex_state = 533, .external_lex_state = 43}, - [1642] = {.lex_state = 533, .external_lex_state = 43}, - [1643] = {.lex_state = 521, .external_lex_state = 16}, - [1644] = {.lex_state = 254, .external_lex_state = 15}, - [1645] = {.lex_state = 532, .external_lex_state = 43}, - [1646] = {.lex_state = 521, .external_lex_state = 16}, - [1647] = {.lex_state = 532, .external_lex_state = 43}, - [1648] = {.lex_state = 532, .external_lex_state = 43}, - [1649] = {.lex_state = 521, .external_lex_state = 16}, - [1650] = {.lex_state = 532, .external_lex_state = 43}, - [1651] = {.lex_state = 532, .external_lex_state = 43}, - [1652] = {.lex_state = 532, .external_lex_state = 45}, - [1653] = {.lex_state = 532, .external_lex_state = 45}, - [1654] = {.lex_state = 521, .external_lex_state = 16}, - [1655] = {.lex_state = 254, .external_lex_state = 15}, - [1656] = {.lex_state = 533, .external_lex_state = 43}, - [1657] = {.lex_state = 532, .external_lex_state = 43}, - [1658] = {.lex_state = 532, .external_lex_state = 43}, - [1659] = {.lex_state = 533, .external_lex_state = 43}, - [1660] = {.lex_state = 245, .external_lex_state = 15}, - [1661] = {.lex_state = 532, .external_lex_state = 43}, - [1662] = {.lex_state = 532, .external_lex_state = 43}, - [1663] = {.lex_state = 532, .external_lex_state = 43}, - [1664] = {.lex_state = 532, .external_lex_state = 43}, - [1665] = {.lex_state = 533, .external_lex_state = 43}, - [1666] = {.lex_state = 533, .external_lex_state = 43}, - [1667] = {.lex_state = 532, .external_lex_state = 43}, - [1668] = {.lex_state = 532, .external_lex_state = 43}, - [1669] = {.lex_state = 532, .external_lex_state = 43}, - [1670] = {.lex_state = 254, .external_lex_state = 15}, - [1671] = {.lex_state = 533, .external_lex_state = 45}, - [1672] = {.lex_state = 532, .external_lex_state = 43}, - [1673] = {.lex_state = 254, .external_lex_state = 15}, - [1674] = {.lex_state = 532, .external_lex_state = 43}, - [1675] = {.lex_state = 532, .external_lex_state = 43}, - [1676] = {.lex_state = 532, .external_lex_state = 43}, - [1677] = {.lex_state = 532, .external_lex_state = 43}, - [1678] = {.lex_state = 532, .external_lex_state = 43}, - [1679] = {.lex_state = 533, .external_lex_state = 43}, - [1680] = {.lex_state = 533, .external_lex_state = 43}, - [1681] = {.lex_state = 254, .external_lex_state = 15}, - [1682] = {.lex_state = 532, .external_lex_state = 43}, - [1683] = {.lex_state = 533, .external_lex_state = 43}, - [1684] = {.lex_state = 419, .external_lex_state = 48}, - [1685] = {.lex_state = 533, .external_lex_state = 43}, - [1686] = {.lex_state = 533, .external_lex_state = 43}, - [1687] = {.lex_state = 254, .external_lex_state = 15}, - [1688] = {.lex_state = 532, .external_lex_state = 43}, - [1689] = {.lex_state = 533, .external_lex_state = 43}, - [1690] = {.lex_state = 419, .external_lex_state = 48}, - [1691] = {.lex_state = 276, .external_lex_state = 4}, - [1692] = {.lex_state = 276, .external_lex_state = 4}, - [1693] = {.lex_state = 276, .external_lex_state = 4}, - [1694] = {.lex_state = 533, .external_lex_state = 43}, - [1695] = {.lex_state = 257, .external_lex_state = 19}, - [1696] = {.lex_state = 533, .external_lex_state = 43}, - [1697] = {.lex_state = 276, .external_lex_state = 4}, - [1698] = {.lex_state = 257, .external_lex_state = 19}, - [1699] = {.lex_state = 532, .external_lex_state = 43}, - [1700] = {.lex_state = 532, .external_lex_state = 43}, - [1701] = {.lex_state = 532, .external_lex_state = 43}, - [1702] = {.lex_state = 533, .external_lex_state = 43}, - [1703] = {.lex_state = 533, .external_lex_state = 43}, - [1704] = {.lex_state = 532, .external_lex_state = 43}, - [1705] = {.lex_state = 533, .external_lex_state = 43}, - [1706] = {.lex_state = 245, .external_lex_state = 15}, - [1707] = {.lex_state = 276, .external_lex_state = 4}, - [1708] = {.lex_state = 419, .external_lex_state = 49}, - [1709] = {.lex_state = 257, .external_lex_state = 19}, + [1613] = {.lex_state = 532, .external_lex_state = 45}, + [1614] = {.lex_state = 521, .external_lex_state = 16}, + [1615] = {.lex_state = 286, .external_lex_state = 45}, + [1616] = {.lex_state = 286, .external_lex_state = 45}, + [1617] = {.lex_state = 286, .external_lex_state = 45}, + [1618] = {.lex_state = 248, .external_lex_state = 18}, + [1619] = {.lex_state = 286, .external_lex_state = 45}, + [1620] = {.lex_state = 286, .external_lex_state = 45}, + [1621] = {.lex_state = 532, .external_lex_state = 42}, + [1622] = {.lex_state = 532, .external_lex_state = 42}, + [1623] = {.lex_state = 532, .external_lex_state = 42}, + [1624] = {.lex_state = 532, .external_lex_state = 42}, + [1625] = {.lex_state = 286, .external_lex_state = 45}, + [1626] = {.lex_state = 286, .external_lex_state = 45}, + [1627] = {.lex_state = 286, .external_lex_state = 45}, + [1628] = {.lex_state = 532, .external_lex_state = 42}, + [1629] = {.lex_state = 532, .external_lex_state = 42}, + [1630] = {.lex_state = 251, .external_lex_state = 15}, + [1631] = {.lex_state = 251, .external_lex_state = 15}, + [1632] = {.lex_state = 532, .external_lex_state = 42}, + [1633] = {.lex_state = 521, .external_lex_state = 16}, + [1634] = {.lex_state = 532, .external_lex_state = 42}, + [1635] = {.lex_state = 454, .external_lex_state = 27}, + [1636] = {.lex_state = 532, .external_lex_state = 45}, + [1637] = {.lex_state = 533, .external_lex_state = 42}, + [1638] = {.lex_state = 532, .external_lex_state = 45}, + [1639] = {.lex_state = 532, .external_lex_state = 45}, + [1640] = {.lex_state = 257, .external_lex_state = 18}, + [1641] = {.lex_state = 251, .external_lex_state = 15}, + [1642] = {.lex_state = 532, .external_lex_state = 42}, + [1643] = {.lex_state = 532, .external_lex_state = 42}, + [1644] = {.lex_state = 533, .external_lex_state = 42}, + [1645] = {.lex_state = 533, .external_lex_state = 42}, + [1646] = {.lex_state = 532, .external_lex_state = 42}, + [1647] = {.lex_state = 257, .external_lex_state = 18}, + [1648] = {.lex_state = 419, .external_lex_state = 48}, + [1649] = {.lex_state = 251, .external_lex_state = 15}, + [1650] = {.lex_state = 521, .external_lex_state = 16}, + [1651] = {.lex_state = 532, .external_lex_state = 42}, + [1652] = {.lex_state = 533, .external_lex_state = 42}, + [1653] = {.lex_state = 532, .external_lex_state = 42}, + [1654] = {.lex_state = 288, .external_lex_state = 41}, + [1655] = {.lex_state = 292, .external_lex_state = 45}, + [1656] = {.lex_state = 532, .external_lex_state = 42}, + [1657] = {.lex_state = 251, .external_lex_state = 21}, + [1658] = {.lex_state = 532, .external_lex_state = 42}, + [1659] = {.lex_state = 521, .external_lex_state = 16}, + [1660] = {.lex_state = 533, .external_lex_state = 42}, + [1661] = {.lex_state = 533, .external_lex_state = 42}, + [1662] = {.lex_state = 521, .external_lex_state = 16}, + [1663] = {.lex_state = 533, .external_lex_state = 42}, + [1664] = {.lex_state = 419, .external_lex_state = 48}, + [1665] = {.lex_state = 533, .external_lex_state = 42}, + [1666] = {.lex_state = 532, .external_lex_state = 42}, + [1667] = {.lex_state = 532, .external_lex_state = 42}, + [1668] = {.lex_state = 532, .external_lex_state = 42}, + [1669] = {.lex_state = 454, .external_lex_state = 27}, + [1670] = {.lex_state = 286, .external_lex_state = 45}, + [1671] = {.lex_state = 286, .external_lex_state = 45}, + [1672] = {.lex_state = 532, .external_lex_state = 45}, + [1673] = {.lex_state = 251, .external_lex_state = 15}, + [1674] = {.lex_state = 245, .external_lex_state = 21}, + [1675] = {.lex_state = 532, .external_lex_state = 42}, + [1676] = {.lex_state = 248, .external_lex_state = 18}, + [1677] = {.lex_state = 532, .external_lex_state = 42}, + [1678] = {.lex_state = 521, .external_lex_state = 16}, + [1679] = {.lex_state = 533, .external_lex_state = 45}, + [1680] = {.lex_state = 533, .external_lex_state = 42}, + [1681] = {.lex_state = 533, .external_lex_state = 42}, + [1682] = {.lex_state = 533, .external_lex_state = 42}, + [1683] = {.lex_state = 286, .external_lex_state = 45}, + [1684] = {.lex_state = 532, .external_lex_state = 42}, + [1685] = {.lex_state = 533, .external_lex_state = 42}, + [1686] = {.lex_state = 251, .external_lex_state = 21}, + [1687] = {.lex_state = 532, .external_lex_state = 42}, + [1688] = {.lex_state = 288, .external_lex_state = 41}, + [1689] = {.lex_state = 533, .external_lex_state = 42}, + [1690] = {.lex_state = 521, .external_lex_state = 16}, + [1691] = {.lex_state = 533, .external_lex_state = 42}, + [1692] = {.lex_state = 533, .external_lex_state = 42}, + [1693] = {.lex_state = 286, .external_lex_state = 45}, + [1694] = {.lex_state = 533, .external_lex_state = 42}, + [1695] = {.lex_state = 419, .external_lex_state = 48}, + [1696] = {.lex_state = 257, .external_lex_state = 18}, + [1697] = {.lex_state = 533, .external_lex_state = 42}, + [1698] = {.lex_state = 532, .external_lex_state = 42}, + [1699] = {.lex_state = 533, .external_lex_state = 45}, + [1700] = {.lex_state = 533, .external_lex_state = 42}, + [1701] = {.lex_state = 532, .external_lex_state = 42}, + [1702] = {.lex_state = 532, .external_lex_state = 42}, + [1703] = {.lex_state = 533, .external_lex_state = 42}, + [1704] = {.lex_state = 533, .external_lex_state = 42}, + [1705] = {.lex_state = 257, .external_lex_state = 18}, + [1706] = {.lex_state = 532, .external_lex_state = 42}, + [1707] = {.lex_state = 532, .external_lex_state = 42}, + [1708] = {.lex_state = 532, .external_lex_state = 42}, + [1709] = {.lex_state = 532, .external_lex_state = 42}, [1710] = {.lex_state = 533, .external_lex_state = 45}, - [1711] = {.lex_state = 534, .external_lex_state = 45}, - [1712] = {.lex_state = 292, .external_lex_state = 45}, - [1713] = {.lex_state = 257, .external_lex_state = 19}, - [1714] = {.lex_state = 292, .external_lex_state = 45}, - [1715] = {.lex_state = 534, .external_lex_state = 45}, - [1716] = {.lex_state = 452, .external_lex_state = 35}, - [1717] = {.lex_state = 292, .external_lex_state = 45}, - [1718] = {.lex_state = 292, .external_lex_state = 45}, - [1719] = {.lex_state = 533, .external_lex_state = 45}, - [1720] = {.lex_state = 527, .external_lex_state = 19}, - [1721] = {.lex_state = 257, .external_lex_state = 22}, - [1722] = {.lex_state = 263, .external_lex_state = 21}, - [1723] = {.lex_state = 534, .external_lex_state = 45}, - [1724] = {.lex_state = 532, .external_lex_state = 45}, - [1725] = {.lex_state = 292, .external_lex_state = 45}, - [1726] = {.lex_state = 292, .external_lex_state = 45}, - [1727] = {.lex_state = 292, .external_lex_state = 45}, - [1728] = {.lex_state = 292, .external_lex_state = 45}, - [1729] = {.lex_state = 292, .external_lex_state = 45}, - [1730] = {.lex_state = 533, .external_lex_state = 45}, - [1731] = {.lex_state = 533, .external_lex_state = 45}, - [1732] = {.lex_state = 533, .external_lex_state = 45}, - [1733] = {.lex_state = 533, .external_lex_state = 45}, - [1734] = {.lex_state = 292, .external_lex_state = 45}, - [1735] = {.lex_state = 292, .external_lex_state = 45}, - [1736] = {.lex_state = 292, .external_lex_state = 45}, - [1737] = {.lex_state = 454, .external_lex_state = 26}, - [1738] = {.lex_state = 533, .external_lex_state = 45}, - [1739] = {.lex_state = 532, .external_lex_state = 45}, - [1740] = {.lex_state = 532, .external_lex_state = 45}, - [1741] = {.lex_state = 532, .external_lex_state = 45}, - [1742] = {.lex_state = 419, .external_lex_state = 49}, - [1743] = {.lex_state = 532, .external_lex_state = 45}, - [1744] = {.lex_state = 454, .external_lex_state = 26}, - [1745] = {.lex_state = 532, .external_lex_state = 45}, - [1746] = {.lex_state = 452, .external_lex_state = 35}, - [1747] = {.lex_state = 532, .external_lex_state = 45}, - [1748] = {.lex_state = 532, .external_lex_state = 45}, - [1749] = {.lex_state = 532, .external_lex_state = 45}, - [1750] = {.lex_state = 532, .external_lex_state = 45}, - [1751] = {.lex_state = 454, .external_lex_state = 26}, - [1752] = {.lex_state = 532, .external_lex_state = 45}, - [1753] = {.lex_state = 534, .external_lex_state = 45}, - [1754] = {.lex_state = 419, .external_lex_state = 42}, - [1755] = {.lex_state = 532, .external_lex_state = 45}, - [1756] = {.lex_state = 525, .external_lex_state = 19}, - [1757] = {.lex_state = 534, .external_lex_state = 45}, - [1758] = {.lex_state = 532, .external_lex_state = 45}, - [1759] = {.lex_state = 534, .external_lex_state = 45}, - [1760] = {.lex_state = 532, .external_lex_state = 45}, + [1711] = {.lex_state = 532, .external_lex_state = 42}, + [1712] = {.lex_state = 257, .external_lex_state = 18}, + [1713] = {.lex_state = 532, .external_lex_state = 42}, + [1714] = {.lex_state = 532, .external_lex_state = 42}, + [1715] = {.lex_state = 532, .external_lex_state = 42}, + [1716] = {.lex_state = 532, .external_lex_state = 42}, + [1717] = {.lex_state = 532, .external_lex_state = 42}, + [1718] = {.lex_state = 286, .external_lex_state = 45}, + [1719] = {.lex_state = 288, .external_lex_state = 41}, + [1720] = {.lex_state = 521, .external_lex_state = 16}, + [1721] = {.lex_state = 245, .external_lex_state = 15}, + [1722] = {.lex_state = 533, .external_lex_state = 42}, + [1723] = {.lex_state = 533, .external_lex_state = 42}, + [1724] = {.lex_state = 533, .external_lex_state = 42}, + [1725] = {.lex_state = 533, .external_lex_state = 45}, + [1726] = {.lex_state = 533, .external_lex_state = 42}, + [1727] = {.lex_state = 419, .external_lex_state = 48}, + [1728] = {.lex_state = 532, .external_lex_state = 45}, + [1729] = {.lex_state = 533, .external_lex_state = 42}, + [1730] = {.lex_state = 533, .external_lex_state = 42}, + [1731] = {.lex_state = 533, .external_lex_state = 42}, + [1732] = {.lex_state = 292, .external_lex_state = 45}, + [1733] = {.lex_state = 288, .external_lex_state = 41}, + [1734] = {.lex_state = 288, .external_lex_state = 41}, + [1735] = {.lex_state = 288, .external_lex_state = 41}, + [1736] = {.lex_state = 521, .external_lex_state = 16}, + [1737] = {.lex_state = 532, .external_lex_state = 42}, + [1738] = {.lex_state = 533, .external_lex_state = 42}, + [1739] = {.lex_state = 288, .external_lex_state = 41}, + [1740] = {.lex_state = 292, .external_lex_state = 45}, + [1741] = {.lex_state = 286, .external_lex_state = 45}, + [1742] = {.lex_state = 276, .external_lex_state = 4}, + [1743] = {.lex_state = 288, .external_lex_state = 41}, + [1744] = {.lex_state = 276, .external_lex_state = 4}, + [1745] = {.lex_state = 276, .external_lex_state = 4}, + [1746] = {.lex_state = 288, .external_lex_state = 41}, + [1747] = {.lex_state = 533, .external_lex_state = 45}, + [1748] = {.lex_state = 533, .external_lex_state = 42}, + [1749] = {.lex_state = 533, .external_lex_state = 45}, + [1750] = {.lex_state = 533, .external_lex_state = 42}, + [1751] = {.lex_state = 533, .external_lex_state = 42}, + [1752] = {.lex_state = 533, .external_lex_state = 42}, + [1753] = {.lex_state = 276, .external_lex_state = 4}, + [1754] = {.lex_state = 533, .external_lex_state = 42}, + [1755] = {.lex_state = 532, .external_lex_state = 42}, + [1756] = {.lex_state = 532, .external_lex_state = 42}, + [1757] = {.lex_state = 533, .external_lex_state = 42}, + [1758] = {.lex_state = 533, .external_lex_state = 42}, + [1759] = {.lex_state = 521, .external_lex_state = 16}, + [1760] = {.lex_state = 533, .external_lex_state = 42}, [1761] = {.lex_state = 532, .external_lex_state = 45}, - [1762] = {.lex_state = 245, .external_lex_state = 21}, - [1763] = {.lex_state = 248, .external_lex_state = 19}, - [1764] = {.lex_state = 533, .external_lex_state = 45}, - [1765] = {.lex_state = 257, .external_lex_state = 19}, - [1766] = {.lex_state = 533, .external_lex_state = 45}, - [1767] = {.lex_state = 533, .external_lex_state = 45}, - [1768] = {.lex_state = 532, .external_lex_state = 45}, - [1769] = {.lex_state = 419, .external_lex_state = 42}, - [1770] = {.lex_state = 419, .external_lex_state = 49}, - [1771] = {.lex_state = 525, .external_lex_state = 19}, - [1772] = {.lex_state = 532, .external_lex_state = 45}, + [1762] = {.lex_state = 285, .external_lex_state = 47}, + [1763] = {.lex_state = 286, .external_lex_state = 45}, + [1764] = {.lex_state = 533, .external_lex_state = 42}, + [1765] = {.lex_state = 532, .external_lex_state = 45}, + [1766] = {.lex_state = 534, .external_lex_state = 45}, + [1767] = {.lex_state = 532, .external_lex_state = 45}, + [1768] = {.lex_state = 527, .external_lex_state = 18}, + [1769] = {.lex_state = 532, .external_lex_state = 45}, + [1770] = {.lex_state = 532, .external_lex_state = 45}, + [1771] = {.lex_state = 533, .external_lex_state = 45}, + [1772] = {.lex_state = 257, .external_lex_state = 18}, [1773] = {.lex_state = 533, .external_lex_state = 45}, [1774] = {.lex_state = 532, .external_lex_state = 45}, - [1775] = {.lex_state = 532, .external_lex_state = 45}, - [1776] = {.lex_state = 257, .external_lex_state = 19}, + [1775] = {.lex_state = 527, .external_lex_state = 18}, + [1776] = {.lex_state = 532, .external_lex_state = 45}, [1777] = {.lex_state = 532, .external_lex_state = 45}, - [1778] = {.lex_state = 276, .external_lex_state = 34}, - [1779] = {.lex_state = 276, .external_lex_state = 34}, - [1780] = {.lex_state = 532, .external_lex_state = 45}, - [1781] = {.lex_state = 419, .external_lex_state = 42}, - [1782] = {.lex_state = 532, .external_lex_state = 45}, - [1783] = {.lex_state = 532, .external_lex_state = 45}, - [1784] = {.lex_state = 532, .external_lex_state = 45}, - [1785] = {.lex_state = 419, .external_lex_state = 42}, + [1778] = {.lex_state = 532, .external_lex_state = 45}, + [1779] = {.lex_state = 456, .external_lex_state = 49}, + [1780] = {.lex_state = 533, .external_lex_state = 45}, + [1781] = {.lex_state = 533, .external_lex_state = 45}, + [1782] = {.lex_state = 533, .external_lex_state = 45}, + [1783] = {.lex_state = 533, .external_lex_state = 45}, + [1784] = {.lex_state = 534, .external_lex_state = 45}, + [1785] = {.lex_state = 292, .external_lex_state = 45}, [1786] = {.lex_state = 532, .external_lex_state = 45}, - [1787] = {.lex_state = 527, .external_lex_state = 19}, - [1788] = {.lex_state = 532, .external_lex_state = 45}, - [1789] = {.lex_state = 419, .external_lex_state = 42}, - [1790] = {.lex_state = 527, .external_lex_state = 19}, - [1791] = {.lex_state = 534, .external_lex_state = 45}, + [1787] = {.lex_state = 533, .external_lex_state = 45}, + [1788] = {.lex_state = 263, .external_lex_state = 21}, + [1789] = {.lex_state = 292, .external_lex_state = 45}, + [1790] = {.lex_state = 419, .external_lex_state = 50}, + [1791] = {.lex_state = 292, .external_lex_state = 45}, [1792] = {.lex_state = 532, .external_lex_state = 45}, - [1793] = {.lex_state = 419, .external_lex_state = 42}, + [1793] = {.lex_state = 532, .external_lex_state = 45}, [1794] = {.lex_state = 532, .external_lex_state = 45}, - [1795] = {.lex_state = 532, .external_lex_state = 45}, - [1796] = {.lex_state = 532, .external_lex_state = 45}, - [1797] = {.lex_state = 532, .external_lex_state = 45}, - [1798] = {.lex_state = 419, .external_lex_state = 42}, - [1799] = {.lex_state = 534, .external_lex_state = 45}, - [1800] = {.lex_state = 534, .external_lex_state = 45}, - [1801] = {.lex_state = 248, .external_lex_state = 22}, - [1802] = {.lex_state = 257, .external_lex_state = 19}, - [1803] = {.lex_state = 527, .external_lex_state = 19}, - [1804] = {.lex_state = 532, .external_lex_state = 45}, - [1805] = {.lex_state = 419, .external_lex_state = 42}, + [1795] = {.lex_state = 419, .external_lex_state = 50}, + [1796] = {.lex_state = 292, .external_lex_state = 45}, + [1797] = {.lex_state = 292, .external_lex_state = 45}, + [1798] = {.lex_state = 533, .external_lex_state = 45}, + [1799] = {.lex_state = 263, .external_lex_state = 21}, + [1800] = {.lex_state = 527, .external_lex_state = 18}, + [1801] = {.lex_state = 456, .external_lex_state = 49}, + [1802] = {.lex_state = 532, .external_lex_state = 45}, + [1803] = {.lex_state = 532, .external_lex_state = 45}, + [1804] = {.lex_state = 533, .external_lex_state = 45}, + [1805] = {.lex_state = 533, .external_lex_state = 45}, [1806] = {.lex_state = 532, .external_lex_state = 45}, - [1807] = {.lex_state = 532, .external_lex_state = 45}, - [1808] = {.lex_state = 532, .external_lex_state = 45}, - [1809] = {.lex_state = 527, .external_lex_state = 19}, - [1810] = {.lex_state = 532, .external_lex_state = 45}, - [1811] = {.lex_state = 263, .external_lex_state = 21}, - [1812] = {.lex_state = 532, .external_lex_state = 45}, - [1813] = {.lex_state = 257, .external_lex_state = 19}, - [1814] = {.lex_state = 527, .external_lex_state = 19}, + [1807] = {.lex_state = 533, .external_lex_state = 45}, + [1808] = {.lex_state = 533, .external_lex_state = 45}, + [1809] = {.lex_state = 533, .external_lex_state = 45}, + [1810] = {.lex_state = 452, .external_lex_state = 32}, + [1811] = {.lex_state = 292, .external_lex_state = 45}, + [1812] = {.lex_state = 452, .external_lex_state = 32}, + [1813] = {.lex_state = 526, .external_lex_state = 18}, + [1814] = {.lex_state = 533, .external_lex_state = 45}, [1815] = {.lex_state = 532, .external_lex_state = 45}, - [1816] = {.lex_state = 532, .external_lex_state = 45}, - [1817] = {.lex_state = 532, .external_lex_state = 45}, - [1818] = {.lex_state = 527, .external_lex_state = 19}, - [1819] = {.lex_state = 527, .external_lex_state = 19}, - [1820] = {.lex_state = 525, .external_lex_state = 19}, - [1821] = {.lex_state = 532, .external_lex_state = 45}, - [1822] = {.lex_state = 532, .external_lex_state = 45}, - [1823] = {.lex_state = 257, .external_lex_state = 19}, - [1824] = {.lex_state = 257, .external_lex_state = 19}, - [1825] = {.lex_state = 527, .external_lex_state = 19}, - [1826] = {.lex_state = 532, .external_lex_state = 45}, - [1827] = {.lex_state = 525, .external_lex_state = 19}, - [1828] = {.lex_state = 525, .external_lex_state = 19}, - [1829] = {.lex_state = 248, .external_lex_state = 19}, - [1830] = {.lex_state = 292, .external_lex_state = 45}, - [1831] = {.lex_state = 292, .external_lex_state = 45}, - [1832] = {.lex_state = 533, .external_lex_state = 45}, - [1833] = {.lex_state = 257, .external_lex_state = 19}, - [1834] = {.lex_state = 527, .external_lex_state = 19}, - [1835] = {.lex_state = 248, .external_lex_state = 19}, + [1816] = {.lex_state = 533, .external_lex_state = 45}, + [1817] = {.lex_state = 257, .external_lex_state = 18}, + [1818] = {.lex_state = 257, .external_lex_state = 18}, + [1819] = {.lex_state = 533, .external_lex_state = 45}, + [1820] = {.lex_state = 532, .external_lex_state = 45}, + [1821] = {.lex_state = 419, .external_lex_state = 43}, + [1822] = {.lex_state = 292, .external_lex_state = 45}, + [1823] = {.lex_state = 532, .external_lex_state = 45}, + [1824] = {.lex_state = 532, .external_lex_state = 45}, + [1825] = {.lex_state = 533, .external_lex_state = 45}, + [1826] = {.lex_state = 527, .external_lex_state = 18}, + [1827] = {.lex_state = 532, .external_lex_state = 45}, + [1828] = {.lex_state = 532, .external_lex_state = 45}, + [1829] = {.lex_state = 532, .external_lex_state = 45}, + [1830] = {.lex_state = 527, .external_lex_state = 18}, + [1831] = {.lex_state = 532, .external_lex_state = 45}, + [1832] = {.lex_state = 292, .external_lex_state = 45}, + [1833] = {.lex_state = 526, .external_lex_state = 18}, + [1834] = {.lex_state = 419, .external_lex_state = 50}, + [1835] = {.lex_state = 532, .external_lex_state = 45}, [1836] = {.lex_state = 533, .external_lex_state = 45}, - [1837] = {.lex_state = 257, .external_lex_state = 19}, - [1838] = {.lex_state = 533, .external_lex_state = 45}, - [1839] = {.lex_state = 292, .external_lex_state = 45}, + [1837] = {.lex_state = 526, .external_lex_state = 18}, + [1838] = {.lex_state = 292, .external_lex_state = 45}, + [1839] = {.lex_state = 533, .external_lex_state = 45}, [1840] = {.lex_state = 533, .external_lex_state = 45}, [1841] = {.lex_state = 533, .external_lex_state = 45}, - [1842] = {.lex_state = 533, .external_lex_state = 45}, - [1843] = {.lex_state = 248, .external_lex_state = 22}, - [1844] = {.lex_state = 533, .external_lex_state = 45}, - [1845] = {.lex_state = 533, .external_lex_state = 45}, - [1846] = {.lex_state = 292, .external_lex_state = 45}, - [1847] = {.lex_state = 533, .external_lex_state = 45}, - [1848] = {.lex_state = 533, .external_lex_state = 45}, - [1849] = {.lex_state = 456, .external_lex_state = 50}, - [1850] = {.lex_state = 534, .external_lex_state = 45}, - [1851] = {.lex_state = 534, .external_lex_state = 45}, - [1852] = {.lex_state = 533, .external_lex_state = 45}, - [1853] = {.lex_state = 533, .external_lex_state = 45}, - [1854] = {.lex_state = 533, .external_lex_state = 45}, + [1842] = {.lex_state = 532, .external_lex_state = 45}, + [1843] = {.lex_state = 534, .external_lex_state = 45}, + [1844] = {.lex_state = 248, .external_lex_state = 18}, + [1845] = {.lex_state = 532, .external_lex_state = 45}, + [1846] = {.lex_state = 526, .external_lex_state = 18}, + [1847] = {.lex_state = 532, .external_lex_state = 45}, + [1848] = {.lex_state = 534, .external_lex_state = 45}, + [1849] = {.lex_state = 248, .external_lex_state = 22}, + [1850] = {.lex_state = 419, .external_lex_state = 43}, + [1851] = {.lex_state = 292, .external_lex_state = 45}, + [1852] = {.lex_state = 292, .external_lex_state = 45}, + [1853] = {.lex_state = 532, .external_lex_state = 45}, + [1854] = {.lex_state = 292, .external_lex_state = 45}, [1855] = {.lex_state = 533, .external_lex_state = 45}, - [1856] = {.lex_state = 533, .external_lex_state = 45}, - [1857] = {.lex_state = 533, .external_lex_state = 45}, - [1858] = {.lex_state = 292, .external_lex_state = 45}, - [1859] = {.lex_state = 533, .external_lex_state = 45}, + [1856] = {.lex_state = 532, .external_lex_state = 45}, + [1857] = {.lex_state = 257, .external_lex_state = 18}, + [1858] = {.lex_state = 534, .external_lex_state = 45}, + [1859] = {.lex_state = 257, .external_lex_state = 18}, [1860] = {.lex_state = 533, .external_lex_state = 45}, - [1861] = {.lex_state = 533, .external_lex_state = 45}, - [1862] = {.lex_state = 533, .external_lex_state = 45}, + [1861] = {.lex_state = 248, .external_lex_state = 18}, + [1862] = {.lex_state = 257, .external_lex_state = 18}, [1863] = {.lex_state = 533, .external_lex_state = 45}, [1864] = {.lex_state = 533, .external_lex_state = 45}, - [1865] = {.lex_state = 452, .external_lex_state = 35}, - [1866] = {.lex_state = 533, .external_lex_state = 45}, - [1867] = {.lex_state = 456, .external_lex_state = 50}, - [1868] = {.lex_state = 527, .external_lex_state = 19}, - [1869] = {.lex_state = 456, .external_lex_state = 50}, - [1870] = {.lex_state = 527, .external_lex_state = 19}, - [1871] = {.lex_state = 292, .external_lex_state = 45}, - [1872] = {.lex_state = 533, .external_lex_state = 45}, - [1873] = {.lex_state = 419, .external_lex_state = 49}, - [1874] = {.lex_state = 248, .external_lex_state = 19}, - [1875] = {.lex_state = 533, .external_lex_state = 45}, - [1876] = {.lex_state = 533, .external_lex_state = 45}, - [1877] = {.lex_state = 292, .external_lex_state = 45}, - [1878] = {.lex_state = 456, .external_lex_state = 50}, - [1879] = {.lex_state = 456, .external_lex_state = 50}, - [1880] = {.lex_state = 533, .external_lex_state = 45}, - [1881] = {.lex_state = 533, .external_lex_state = 45}, - [1882] = {.lex_state = 456, .external_lex_state = 50}, - [1883] = {.lex_state = 419, .external_lex_state = 49}, - [1884] = {.lex_state = 419, .external_lex_state = 49}, - [1885] = {.lex_state = 527, .external_lex_state = 19}, - [1886] = {.lex_state = 456, .external_lex_state = 50}, - [1887] = {.lex_state = 533, .external_lex_state = 45}, - [1888] = {.lex_state = 254, .external_lex_state = 21}, - [1889] = {.lex_state = 276, .external_lex_state = 34}, - [1890] = {.lex_state = 276, .external_lex_state = 34}, - [1891] = {.lex_state = 533, .external_lex_state = 45}, - [1892] = {.lex_state = 525, .external_lex_state = 19}, - [1893] = {.lex_state = 276, .external_lex_state = 34}, - [1894] = {.lex_state = 276, .external_lex_state = 34}, - [1895] = {.lex_state = 534, .external_lex_state = 45}, - [1896] = {.lex_state = 533, .external_lex_state = 45}, - [1897] = {.lex_state = 419, .external_lex_state = 49}, - [1898] = {.lex_state = 276, .external_lex_state = 34}, - [1899] = {.lex_state = 276, .external_lex_state = 34}, - [1900] = {.lex_state = 276, .external_lex_state = 34}, - [1901] = {.lex_state = 276, .external_lex_state = 34}, - [1902] = {.lex_state = 276, .external_lex_state = 34}, - [1903] = {.lex_state = 257, .external_lex_state = 22}, - [1904] = {.lex_state = 533, .external_lex_state = 45}, - [1905] = {.lex_state = 527, .external_lex_state = 19}, - [1906] = {.lex_state = 257, .external_lex_state = 19}, - [1907] = {.lex_state = 527, .external_lex_state = 19}, - [1908] = {.lex_state = 527, .external_lex_state = 19}, - [1909] = {.lex_state = 527, .external_lex_state = 19}, - [1910] = {.lex_state = 534, .external_lex_state = 45}, - [1911] = {.lex_state = 525, .external_lex_state = 19}, - [1912] = {.lex_state = 534, .external_lex_state = 45}, - [1913] = {.lex_state = 419, .external_lex_state = 42}, - [1914] = {.lex_state = 456, .external_lex_state = 51}, - [1915] = {.lex_state = 419, .external_lex_state = 42}, - [1916] = {.lex_state = 456, .external_lex_state = 51}, - [1917] = {.lex_state = 419, .external_lex_state = 42}, - [1918] = {.lex_state = 419, .external_lex_state = 42}, - [1919] = {.lex_state = 419, .external_lex_state = 42}, - [1920] = {.lex_state = 419, .external_lex_state = 42}, - [1921] = {.lex_state = 419, .external_lex_state = 42}, - [1922] = {.lex_state = 419, .external_lex_state = 42}, - [1923] = {.lex_state = 534, .external_lex_state = 45}, - [1924] = {.lex_state = 534, .external_lex_state = 45}, - [1925] = {.lex_state = 452, .external_lex_state = 35}, - [1926] = {.lex_state = 419, .external_lex_state = 42}, - [1927] = {.lex_state = 419, .external_lex_state = 42}, - [1928] = {.lex_state = 419, .external_lex_state = 42}, - [1929] = {.lex_state = 419, .external_lex_state = 42}, - [1930] = {.lex_state = 534, .external_lex_state = 45}, + [1865] = {.lex_state = 419, .external_lex_state = 50}, + [1866] = {.lex_state = 292, .external_lex_state = 45}, + [1867] = {.lex_state = 419, .external_lex_state = 43}, + [1868] = {.lex_state = 532, .external_lex_state = 45}, + [1869] = {.lex_state = 532, .external_lex_state = 45}, + [1870] = {.lex_state = 533, .external_lex_state = 45}, + [1871] = {.lex_state = 534, .external_lex_state = 45}, + [1872] = {.lex_state = 527, .external_lex_state = 18}, + [1873] = {.lex_state = 527, .external_lex_state = 18}, + [1874] = {.lex_state = 419, .external_lex_state = 43}, + [1875] = {.lex_state = 527, .external_lex_state = 18}, + [1876] = {.lex_state = 257, .external_lex_state = 22}, + [1877] = {.lex_state = 533, .external_lex_state = 45}, + [1878] = {.lex_state = 532, .external_lex_state = 45}, + [1879] = {.lex_state = 452, .external_lex_state = 32}, + [1880] = {.lex_state = 526, .external_lex_state = 18}, + [1881] = {.lex_state = 532, .external_lex_state = 45}, + [1882] = {.lex_state = 248, .external_lex_state = 18}, + [1883] = {.lex_state = 534, .external_lex_state = 45}, + [1884] = {.lex_state = 248, .external_lex_state = 22}, + [1885] = {.lex_state = 532, .external_lex_state = 45}, + [1886] = {.lex_state = 527, .external_lex_state = 18}, + [1887] = {.lex_state = 419, .external_lex_state = 43}, + [1888] = {.lex_state = 533, .external_lex_state = 45}, + [1889] = {.lex_state = 248, .external_lex_state = 18}, + [1890] = {.lex_state = 533, .external_lex_state = 45}, + [1891] = {.lex_state = 534, .external_lex_state = 45}, + [1892] = {.lex_state = 533, .external_lex_state = 45}, + [1893] = {.lex_state = 419, .external_lex_state = 50}, + [1894] = {.lex_state = 292, .external_lex_state = 45}, + [1895] = {.lex_state = 527, .external_lex_state = 18}, + [1896] = {.lex_state = 257, .external_lex_state = 18}, + [1897] = {.lex_state = 257, .external_lex_state = 18}, + [1898] = {.lex_state = 456, .external_lex_state = 49}, + [1899] = {.lex_state = 257, .external_lex_state = 18}, + [1900] = {.lex_state = 245, .external_lex_state = 21}, + [1901] = {.lex_state = 532, .external_lex_state = 45}, + [1902] = {.lex_state = 292, .external_lex_state = 45}, + [1903] = {.lex_state = 534, .external_lex_state = 45}, + [1904] = {.lex_state = 527, .external_lex_state = 18}, + [1905] = {.lex_state = 452, .external_lex_state = 32}, + [1906] = {.lex_state = 533, .external_lex_state = 45}, + [1907] = {.lex_state = 292, .external_lex_state = 45}, + [1908] = {.lex_state = 532, .external_lex_state = 45}, + [1909] = {.lex_state = 419, .external_lex_state = 43}, + [1910] = {.lex_state = 527, .external_lex_state = 18}, + [1911] = {.lex_state = 532, .external_lex_state = 45}, + [1912] = {.lex_state = 251, .external_lex_state = 21}, + [1913] = {.lex_state = 257, .external_lex_state = 18}, + [1914] = {.lex_state = 456, .external_lex_state = 49}, + [1915] = {.lex_state = 276, .external_lex_state = 34}, + [1916] = {.lex_state = 533, .external_lex_state = 45}, + [1917] = {.lex_state = 456, .external_lex_state = 49}, + [1918] = {.lex_state = 533, .external_lex_state = 45}, + [1919] = {.lex_state = 276, .external_lex_state = 34}, + [1920] = {.lex_state = 276, .external_lex_state = 34}, + [1921] = {.lex_state = 276, .external_lex_state = 34}, + [1922] = {.lex_state = 533, .external_lex_state = 45}, + [1923] = {.lex_state = 419, .external_lex_state = 50}, + [1924] = {.lex_state = 419, .external_lex_state = 50}, + [1925] = {.lex_state = 292, .external_lex_state = 45}, + [1926] = {.lex_state = 456, .external_lex_state = 49}, + [1927] = {.lex_state = 527, .external_lex_state = 18}, + [1928] = {.lex_state = 533, .external_lex_state = 45}, + [1929] = {.lex_state = 276, .external_lex_state = 34}, + [1930] = {.lex_state = 276, .external_lex_state = 34}, [1931] = {.lex_state = 534, .external_lex_state = 45}, - [1932] = {.lex_state = 419, .external_lex_state = 42}, - [1933] = {.lex_state = 534, .external_lex_state = 45}, - [1934] = {.lex_state = 456, .external_lex_state = 51}, - [1935] = {.lex_state = 419, .external_lex_state = 42}, - [1936] = {.lex_state = 456, .external_lex_state = 50}, - [1937] = {.lex_state = 419, .external_lex_state = 42}, - [1938] = {.lex_state = 419, .external_lex_state = 42}, - [1939] = {.lex_state = 527, .external_lex_state = 19}, - [1940] = {.lex_state = 419, .external_lex_state = 42}, - [1941] = {.lex_state = 419, .external_lex_state = 42}, - [1942] = {.lex_state = 419, .external_lex_state = 42}, - [1943] = {.lex_state = 534, .external_lex_state = 45}, - [1944] = {.lex_state = 419, .external_lex_state = 42}, - [1945] = {.lex_state = 419, .external_lex_state = 42}, - [1946] = {.lex_state = 419, .external_lex_state = 42}, - [1947] = {.lex_state = 419, .external_lex_state = 42}, - [1948] = {.lex_state = 419, .external_lex_state = 42}, - [1949] = {.lex_state = 419, .external_lex_state = 42}, - [1950] = {.lex_state = 534, .external_lex_state = 45}, - [1951] = {.lex_state = 534, .external_lex_state = 45}, - [1952] = {.lex_state = 419, .external_lex_state = 42}, + [1932] = {.lex_state = 532, .external_lex_state = 45}, + [1933] = {.lex_state = 527, .external_lex_state = 18}, + [1934] = {.lex_state = 532, .external_lex_state = 45}, + [1935] = {.lex_state = 292, .external_lex_state = 45}, + [1936] = {.lex_state = 292, .external_lex_state = 45}, + [1937] = {.lex_state = 532, .external_lex_state = 45}, + [1938] = {.lex_state = 533, .external_lex_state = 45}, + [1939] = {.lex_state = 276, .external_lex_state = 34}, + [1940] = {.lex_state = 276, .external_lex_state = 34}, + [1941] = {.lex_state = 276, .external_lex_state = 34}, + [1942] = {.lex_state = 276, .external_lex_state = 34}, + [1943] = {.lex_state = 276, .external_lex_state = 34}, + [1944] = {.lex_state = 533, .external_lex_state = 45}, + [1945] = {.lex_state = 533, .external_lex_state = 45}, + [1946] = {.lex_state = 257, .external_lex_state = 22}, + [1947] = {.lex_state = 533, .external_lex_state = 45}, + [1948] = {.lex_state = 533, .external_lex_state = 45}, + [1949] = {.lex_state = 526, .external_lex_state = 18}, + [1950] = {.lex_state = 532, .external_lex_state = 45}, + [1951] = {.lex_state = 533, .external_lex_state = 45}, + [1952] = {.lex_state = 419, .external_lex_state = 43}, [1953] = {.lex_state = 534, .external_lex_state = 45}, - [1954] = {.lex_state = 419, .external_lex_state = 42}, - [1955] = {.lex_state = 419, .external_lex_state = 42}, - [1956] = {.lex_state = 534, .external_lex_state = 45}, - [1957] = {.lex_state = 419, .external_lex_state = 42}, - [1958] = {.lex_state = 419, .external_lex_state = 42}, - [1959] = {.lex_state = 419, .external_lex_state = 42}, - [1960] = {.lex_state = 419, .external_lex_state = 42}, - [1961] = {.lex_state = 419, .external_lex_state = 42}, - [1962] = {.lex_state = 527, .external_lex_state = 19}, - [1963] = {.lex_state = 419, .external_lex_state = 42}, - [1964] = {.lex_state = 419, .external_lex_state = 42}, - [1965] = {.lex_state = 419, .external_lex_state = 42}, - [1966] = {.lex_state = 419, .external_lex_state = 42}, - [1967] = {.lex_state = 419, .external_lex_state = 42}, - [1968] = {.lex_state = 525, .external_lex_state = 22}, - [1969] = {.lex_state = 456, .external_lex_state = 50}, - [1970] = {.lex_state = 456, .external_lex_state = 51}, - [1971] = {.lex_state = 525, .external_lex_state = 19}, - [1972] = {.lex_state = 419, .external_lex_state = 42}, - [1973] = {.lex_state = 527, .external_lex_state = 19}, - [1974] = {.lex_state = 419, .external_lex_state = 42}, - [1975] = {.lex_state = 534, .external_lex_state = 45}, - [1976] = {.lex_state = 419, .external_lex_state = 42}, - [1977] = {.lex_state = 419, .external_lex_state = 42}, - [1978] = {.lex_state = 419, .external_lex_state = 42}, - [1979] = {.lex_state = 525, .external_lex_state = 19}, - [1980] = {.lex_state = 419, .external_lex_state = 42}, - [1981] = {.lex_state = 456, .external_lex_state = 50}, - [1982] = {.lex_state = 527, .external_lex_state = 19}, - [1983] = {.lex_state = 419, .external_lex_state = 42}, - [1984] = {.lex_state = 534, .external_lex_state = 45}, - [1985] = {.lex_state = 456, .external_lex_state = 50}, - [1986] = {.lex_state = 534, .external_lex_state = 45}, - [1987] = {.lex_state = 527, .external_lex_state = 19}, - [1988] = {.lex_state = 456, .external_lex_state = 50}, - [1989] = {.lex_state = 419, .external_lex_state = 42}, + [1954] = {.lex_state = 419, .external_lex_state = 43}, + [1955] = {.lex_state = 533, .external_lex_state = 45}, + [1956] = {.lex_state = 532, .external_lex_state = 45}, + [1957] = {.lex_state = 456, .external_lex_state = 49}, + [1958] = {.lex_state = 533, .external_lex_state = 45}, + [1959] = {.lex_state = 452, .external_lex_state = 32}, + [1960] = {.lex_state = 532, .external_lex_state = 45}, + [1961] = {.lex_state = 534, .external_lex_state = 45}, + [1962] = {.lex_state = 257, .external_lex_state = 18}, + [1963] = {.lex_state = 527, .external_lex_state = 18}, + [1964] = {.lex_state = 419, .external_lex_state = 43}, + [1965] = {.lex_state = 419, .external_lex_state = 43}, + [1966] = {.lex_state = 419, .external_lex_state = 43}, + [1967] = {.lex_state = 419, .external_lex_state = 43}, + [1968] = {.lex_state = 419, .external_lex_state = 43}, + [1969] = {.lex_state = 419, .external_lex_state = 43}, + [1970] = {.lex_state = 419, .external_lex_state = 43}, + [1971] = {.lex_state = 419, .external_lex_state = 43}, + [1972] = {.lex_state = 419, .external_lex_state = 43}, + [1973] = {.lex_state = 419, .external_lex_state = 43}, + [1974] = {.lex_state = 419, .external_lex_state = 43}, + [1975] = {.lex_state = 419, .external_lex_state = 43}, + [1976] = {.lex_state = 419, .external_lex_state = 43}, + [1977] = {.lex_state = 456, .external_lex_state = 51}, + [1978] = {.lex_state = 456, .external_lex_state = 51}, + [1979] = {.lex_state = 456, .external_lex_state = 51}, + [1980] = {.lex_state = 456, .external_lex_state = 51}, + [1981] = {.lex_state = 456, .external_lex_state = 51}, + [1982] = {.lex_state = 456, .external_lex_state = 51}, + [1983] = {.lex_state = 269, .external_lex_state = 22}, + [1984] = {.lex_state = 456, .external_lex_state = 49}, + [1985] = {.lex_state = 456, .external_lex_state = 49}, + [1986] = {.lex_state = 456, .external_lex_state = 49}, + [1987] = {.lex_state = 456, .external_lex_state = 49}, + [1988] = {.lex_state = 456, .external_lex_state = 49}, + [1989] = {.lex_state = 534, .external_lex_state = 45}, [1990] = {.lex_state = 534, .external_lex_state = 45}, [1991] = {.lex_state = 534, .external_lex_state = 45}, - [1992] = {.lex_state = 534, .external_lex_state = 45}, - [1993] = {.lex_state = 419, .external_lex_state = 42}, - [1994] = {.lex_state = 456, .external_lex_state = 50}, + [1992] = {.lex_state = 456, .external_lex_state = 49}, + [1993] = {.lex_state = 534, .external_lex_state = 45}, + [1994] = {.lex_state = 456, .external_lex_state = 49}, [1995] = {.lex_state = 534, .external_lex_state = 45}, [1996] = {.lex_state = 534, .external_lex_state = 45}, - [1997] = {.lex_state = 456, .external_lex_state = 50}, - [1998] = {.lex_state = 419, .external_lex_state = 42}, - [1999] = {.lex_state = 527, .external_lex_state = 19}, - [2000] = {.lex_state = 419, .external_lex_state = 42}, - [2001] = {.lex_state = 527, .external_lex_state = 22}, - [2002] = {.lex_state = 534, .external_lex_state = 45}, - [2003] = {.lex_state = 456, .external_lex_state = 50}, - [2004] = {.lex_state = 263, .external_lex_state = 21}, - [2005] = {.lex_state = 534, .external_lex_state = 45}, - [2006] = {.lex_state = 456, .external_lex_state = 50}, + [1997] = {.lex_state = 534, .external_lex_state = 45}, + [1998] = {.lex_state = 456, .external_lex_state = 49}, + [1999] = {.lex_state = 456, .external_lex_state = 49}, + [2000] = {.lex_state = 456, .external_lex_state = 49}, + [2001] = {.lex_state = 456, .external_lex_state = 49}, + [2002] = {.lex_state = 456, .external_lex_state = 49}, + [2003] = {.lex_state = 534, .external_lex_state = 45}, + [2004] = {.lex_state = 456, .external_lex_state = 49}, + [2005] = {.lex_state = 456, .external_lex_state = 49}, + [2006] = {.lex_state = 534, .external_lex_state = 45}, [2007] = {.lex_state = 534, .external_lex_state = 45}, - [2008] = {.lex_state = 534, .external_lex_state = 45}, - [2009] = {.lex_state = 534, .external_lex_state = 45}, + [2008] = {.lex_state = 456, .external_lex_state = 49}, + [2009] = {.lex_state = 527, .external_lex_state = 22}, [2010] = {.lex_state = 534, .external_lex_state = 45}, - [2011] = {.lex_state = 534, .external_lex_state = 45}, - [2012] = {.lex_state = 419, .external_lex_state = 42}, + [2011] = {.lex_state = 456, .external_lex_state = 49}, + [2012] = {.lex_state = 534, .external_lex_state = 45}, [2013] = {.lex_state = 534, .external_lex_state = 45}, [2014] = {.lex_state = 534, .external_lex_state = 45}, - [2015] = {.lex_state = 419, .external_lex_state = 42}, - [2016] = {.lex_state = 527, .external_lex_state = 19}, - [2017] = {.lex_state = 534, .external_lex_state = 45}, - [2018] = {.lex_state = 527, .external_lex_state = 19}, - [2019] = {.lex_state = 527, .external_lex_state = 19}, - [2020] = {.lex_state = 527, .external_lex_state = 19}, + [2015] = {.lex_state = 534, .external_lex_state = 45}, + [2016] = {.lex_state = 534, .external_lex_state = 45}, + [2017] = {.lex_state = 456, .external_lex_state = 49}, + [2018] = {.lex_state = 456, .external_lex_state = 49}, + [2019] = {.lex_state = 456, .external_lex_state = 49}, + [2020] = {.lex_state = 419, .external_lex_state = 43}, [2021] = {.lex_state = 534, .external_lex_state = 45}, [2022] = {.lex_state = 534, .external_lex_state = 45}, [2023] = {.lex_state = 534, .external_lex_state = 45}, - [2024] = {.lex_state = 456, .external_lex_state = 50}, - [2025] = {.lex_state = 419, .external_lex_state = 42}, - [2026] = {.lex_state = 527, .external_lex_state = 22}, - [2027] = {.lex_state = 527, .external_lex_state = 22}, + [2024] = {.lex_state = 534, .external_lex_state = 45}, + [2025] = {.lex_state = 534, .external_lex_state = 45}, + [2026] = {.lex_state = 534, .external_lex_state = 45}, + [2027] = {.lex_state = 534, .external_lex_state = 45}, [2028] = {.lex_state = 534, .external_lex_state = 45}, - [2029] = {.lex_state = 456, .external_lex_state = 50}, - [2030] = {.lex_state = 527, .external_lex_state = 19}, - [2031] = {.lex_state = 527, .external_lex_state = 19}, - [2032] = {.lex_state = 419, .external_lex_state = 42}, - [2033] = {.lex_state = 419, .external_lex_state = 42}, - [2034] = {.lex_state = 527, .external_lex_state = 19}, - [2035] = {.lex_state = 527, .external_lex_state = 19}, - [2036] = {.lex_state = 527, .external_lex_state = 19}, + [2029] = {.lex_state = 534, .external_lex_state = 45}, + [2030] = {.lex_state = 534, .external_lex_state = 45}, + [2031] = {.lex_state = 527, .external_lex_state = 22}, + [2032] = {.lex_state = 534, .external_lex_state = 45}, + [2033] = {.lex_state = 534, .external_lex_state = 45}, + [2034] = {.lex_state = 534, .external_lex_state = 45}, + [2035] = {.lex_state = 534, .external_lex_state = 45}, + [2036] = {.lex_state = 534, .external_lex_state = 45}, [2037] = {.lex_state = 534, .external_lex_state = 45}, [2038] = {.lex_state = 534, .external_lex_state = 45}, [2039] = {.lex_state = 534, .external_lex_state = 45}, - [2040] = {.lex_state = 419, .external_lex_state = 42}, - [2041] = {.lex_state = 419, .external_lex_state = 42}, - [2042] = {.lex_state = 431, .external_lex_state = 52}, - [2043] = {.lex_state = 527, .external_lex_state = 19}, - [2044] = {.lex_state = 456, .external_lex_state = 51}, - [2045] = {.lex_state = 525, .external_lex_state = 22}, - [2046] = {.lex_state = 419, .external_lex_state = 42}, - [2047] = {.lex_state = 527, .external_lex_state = 19}, - [2048] = {.lex_state = 419, .external_lex_state = 42}, - [2049] = {.lex_state = 527, .external_lex_state = 19}, - [2050] = {.lex_state = 419, .external_lex_state = 42}, - [2051] = {.lex_state = 534, .external_lex_state = 45}, - [2052] = {.lex_state = 534, .external_lex_state = 45}, - [2053] = {.lex_state = 525, .external_lex_state = 19}, - [2054] = {.lex_state = 534, .external_lex_state = 45}, - [2055] = {.lex_state = 527, .external_lex_state = 19}, - [2056] = {.lex_state = 525, .external_lex_state = 19}, - [2057] = {.lex_state = 527, .external_lex_state = 19}, - [2058] = {.lex_state = 419, .external_lex_state = 42}, - [2059] = {.lex_state = 534, .external_lex_state = 45}, - [2060] = {.lex_state = 534, .external_lex_state = 45}, - [2061] = {.lex_state = 527, .external_lex_state = 19}, - [2062] = {.lex_state = 456, .external_lex_state = 50}, - [2063] = {.lex_state = 456, .external_lex_state = 50}, - [2064] = {.lex_state = 419, .external_lex_state = 42}, - [2065] = {.lex_state = 456, .external_lex_state = 50}, - [2066] = {.lex_state = 419, .external_lex_state = 42}, - [2067] = {.lex_state = 419, .external_lex_state = 42}, - [2068] = {.lex_state = 527, .external_lex_state = 19}, - [2069] = {.lex_state = 534, .external_lex_state = 45}, - [2070] = {.lex_state = 527, .external_lex_state = 19}, - [2071] = {.lex_state = 419, .external_lex_state = 42}, - [2072] = {.lex_state = 525, .external_lex_state = 22}, - [2073] = {.lex_state = 527, .external_lex_state = 19}, - [2074] = {.lex_state = 527, .external_lex_state = 19}, - [2075] = {.lex_state = 527, .external_lex_state = 19}, - [2076] = {.lex_state = 248, .external_lex_state = 22}, - [2077] = {.lex_state = 527, .external_lex_state = 19}, - [2078] = {.lex_state = 456, .external_lex_state = 51}, - [2079] = {.lex_state = 419, .external_lex_state = 42}, - [2080] = {.lex_state = 419, .external_lex_state = 42}, - [2081] = {.lex_state = 527, .external_lex_state = 19}, - [2082] = {.lex_state = 525, .external_lex_state = 19}, - [2083] = {.lex_state = 527, .external_lex_state = 19}, - [2084] = {.lex_state = 527, .external_lex_state = 19}, - [2085] = {.lex_state = 525, .external_lex_state = 19}, - [2086] = {.lex_state = 527, .external_lex_state = 19}, - [2087] = {.lex_state = 525, .external_lex_state = 22}, - [2088] = {.lex_state = 527, .external_lex_state = 19}, - [2089] = {.lex_state = 419, .external_lex_state = 42}, - [2090] = {.lex_state = 527, .external_lex_state = 19}, - [2091] = {.lex_state = 527, .external_lex_state = 19}, - [2092] = {.lex_state = 527, .external_lex_state = 19}, - [2093] = {.lex_state = 527, .external_lex_state = 19}, - [2094] = {.lex_state = 527, .external_lex_state = 19}, - [2095] = {.lex_state = 527, .external_lex_state = 19}, - [2096] = {.lex_state = 527, .external_lex_state = 19}, - [2097] = {.lex_state = 527, .external_lex_state = 19}, - [2098] = {.lex_state = 527, .external_lex_state = 19}, - [2099] = {.lex_state = 419, .external_lex_state = 42}, - [2100] = {.lex_state = 527, .external_lex_state = 19}, - [2101] = {.lex_state = 527, .external_lex_state = 19}, - [2102] = {.lex_state = 527, .external_lex_state = 19}, - [2103] = {.lex_state = 527, .external_lex_state = 19}, - [2104] = {.lex_state = 527, .external_lex_state = 19}, - [2105] = {.lex_state = 527, .external_lex_state = 19}, - [2106] = {.lex_state = 527, .external_lex_state = 19}, - [2107] = {.lex_state = 527, .external_lex_state = 19}, - [2108] = {.lex_state = 527, .external_lex_state = 19}, - [2109] = {.lex_state = 527, .external_lex_state = 19}, - [2110] = {.lex_state = 266, .external_lex_state = 22}, - [2111] = {.lex_state = 456, .external_lex_state = 50}, - [2112] = {.lex_state = 527, .external_lex_state = 22}, - [2113] = {.lex_state = 456, .external_lex_state = 51}, - [2114] = {.lex_state = 456, .external_lex_state = 51}, - [2115] = {.lex_state = 419, .external_lex_state = 42}, - [2116] = {.lex_state = 456, .external_lex_state = 51}, - [2117] = {.lex_state = 456, .external_lex_state = 51}, - [2118] = {.lex_state = 419, .external_lex_state = 42}, - [2119] = {.lex_state = 419, .external_lex_state = 42}, - [2120] = {.lex_state = 419, .external_lex_state = 42}, - [2121] = {.lex_state = 527, .external_lex_state = 19}, - [2122] = {.lex_state = 527, .external_lex_state = 19}, - [2123] = {.lex_state = 527, .external_lex_state = 19}, - [2124] = {.lex_state = 527, .external_lex_state = 19}, - [2125] = {.lex_state = 527, .external_lex_state = 19}, - [2126] = {.lex_state = 419, .external_lex_state = 42}, - [2127] = {.lex_state = 527, .external_lex_state = 19}, - [2128] = {.lex_state = 527, .external_lex_state = 19}, - [2129] = {.lex_state = 419, .external_lex_state = 42}, - [2130] = {.lex_state = 527, .external_lex_state = 19}, - [2131] = {.lex_state = 419, .external_lex_state = 42}, - [2132] = {.lex_state = 419, .external_lex_state = 42}, - [2133] = {.lex_state = 419, .external_lex_state = 42}, - [2134] = {.lex_state = 527, .external_lex_state = 19}, - [2135] = {.lex_state = 419, .external_lex_state = 42}, - [2136] = {.lex_state = 527, .external_lex_state = 19}, - [2137] = {.lex_state = 456, .external_lex_state = 50}, - [2138] = {.lex_state = 419, .external_lex_state = 42}, - [2139] = {.lex_state = 527, .external_lex_state = 19}, - [2140] = {.lex_state = 527, .external_lex_state = 19}, - [2141] = {.lex_state = 527, .external_lex_state = 19}, - [2142] = {.lex_state = 456, .external_lex_state = 51}, - [2143] = {.lex_state = 527, .external_lex_state = 19}, - [2144] = {.lex_state = 456, .external_lex_state = 50}, - [2145] = {.lex_state = 419, .external_lex_state = 42}, - [2146] = {.lex_state = 527, .external_lex_state = 19}, - [2147] = {.lex_state = 419, .external_lex_state = 42}, - [2148] = {.lex_state = 452, .external_lex_state = 35}, - [2149] = {.lex_state = 266, .external_lex_state = 22}, - [2150] = {.lex_state = 456, .external_lex_state = 50}, - [2151] = {.lex_state = 527, .external_lex_state = 19}, - [2152] = {.lex_state = 419, .external_lex_state = 42}, - [2153] = {.lex_state = 527, .external_lex_state = 19}, - [2154] = {.lex_state = 419, .external_lex_state = 42}, - [2155] = {.lex_state = 419, .external_lex_state = 42}, - [2156] = {.lex_state = 527, .external_lex_state = 19}, - [2157] = {.lex_state = 419, .external_lex_state = 42}, - [2158] = {.lex_state = 527, .external_lex_state = 19}, - [2159] = {.lex_state = 419, .external_lex_state = 42}, - [2160] = {.lex_state = 419, .external_lex_state = 42}, - [2161] = {.lex_state = 419, .external_lex_state = 42}, - [2162] = {.lex_state = 419, .external_lex_state = 42}, - [2163] = {.lex_state = 419, .external_lex_state = 42}, - [2164] = {.lex_state = 419, .external_lex_state = 42}, - [2165] = {.lex_state = 527, .external_lex_state = 19}, - [2166] = {.lex_state = 419, .external_lex_state = 42}, - [2167] = {.lex_state = 419, .external_lex_state = 42}, - [2168] = {.lex_state = 419, .external_lex_state = 42}, - [2169] = {.lex_state = 419, .external_lex_state = 42}, - [2170] = {.lex_state = 419, .external_lex_state = 42}, - [2171] = {.lex_state = 527, .external_lex_state = 19}, - [2172] = {.lex_state = 419, .external_lex_state = 42}, - [2173] = {.lex_state = 419, .external_lex_state = 42}, - [2174] = {.lex_state = 527, .external_lex_state = 19}, - [2175] = {.lex_state = 419, .external_lex_state = 42}, - [2176] = {.lex_state = 527, .external_lex_state = 19}, - [2177] = {.lex_state = 456, .external_lex_state = 51}, - [2178] = {.lex_state = 419, .external_lex_state = 42}, - [2179] = {.lex_state = 456, .external_lex_state = 50}, - [2180] = {.lex_state = 419, .external_lex_state = 42}, - [2181] = {.lex_state = 419, .external_lex_state = 42}, - [2182] = {.lex_state = 527, .external_lex_state = 19}, - [2183] = {.lex_state = 527, .external_lex_state = 19}, - [2184] = {.lex_state = 419, .external_lex_state = 42}, - [2185] = {.lex_state = 419, .external_lex_state = 42}, - [2186] = {.lex_state = 419, .external_lex_state = 42}, - [2187] = {.lex_state = 527, .external_lex_state = 19}, - [2188] = {.lex_state = 419, .external_lex_state = 42}, - [2189] = {.lex_state = 527, .external_lex_state = 19}, - [2190] = {.lex_state = 419, .external_lex_state = 42}, - [2191] = {.lex_state = 419, .external_lex_state = 42}, - [2192] = {.lex_state = 527, .external_lex_state = 19}, - [2193] = {.lex_state = 527, .external_lex_state = 19}, - [2194] = {.lex_state = 527, .external_lex_state = 19}, - [2195] = {.lex_state = 525, .external_lex_state = 19}, - [2196] = {.lex_state = 527, .external_lex_state = 19}, - [2197] = {.lex_state = 527, .external_lex_state = 19}, - [2198] = {.lex_state = 527, .external_lex_state = 19}, - [2199] = {.lex_state = 527, .external_lex_state = 19}, - [2200] = {.lex_state = 527, .external_lex_state = 19}, - [2201] = {.lex_state = 527, .external_lex_state = 19}, - [2202] = {.lex_state = 527, .external_lex_state = 19}, - [2203] = {.lex_state = 527, .external_lex_state = 19}, - [2204] = {.lex_state = 527, .external_lex_state = 19}, - [2205] = {.lex_state = 527, .external_lex_state = 19}, - [2206] = {.lex_state = 527, .external_lex_state = 19}, - [2207] = {.lex_state = 527, .external_lex_state = 19}, - [2208] = {.lex_state = 527, .external_lex_state = 19}, - [2209] = {.lex_state = 419, .external_lex_state = 42}, - [2210] = {.lex_state = 527, .external_lex_state = 19}, - [2211] = {.lex_state = 527, .external_lex_state = 19}, - [2212] = {.lex_state = 419, .external_lex_state = 42}, - [2213] = {.lex_state = 419, .external_lex_state = 42}, - [2214] = {.lex_state = 257, .external_lex_state = 22}, - [2215] = {.lex_state = 527, .external_lex_state = 19}, - [2216] = {.lex_state = 527, .external_lex_state = 19}, - [2217] = {.lex_state = 529, .external_lex_state = 22}, - [2218] = {.lex_state = 456, .external_lex_state = 51}, - [2219] = {.lex_state = 431, .external_lex_state = 52}, - [2220] = {.lex_state = 456, .external_lex_state = 51}, - [2221] = {.lex_state = 456, .external_lex_state = 51}, - [2222] = {.lex_state = 456, .external_lex_state = 51}, - [2223] = {.lex_state = 431, .external_lex_state = 52}, - [2224] = {.lex_state = 431, .external_lex_state = 52}, - [2225] = {.lex_state = 431, .external_lex_state = 52}, - [2226] = {.lex_state = 431, .external_lex_state = 52}, - [2227] = {.lex_state = 431, .external_lex_state = 52}, - [2228] = {.lex_state = 459, .external_lex_state = 53}, - [2229] = {.lex_state = 431, .external_lex_state = 52}, - [2230] = {.lex_state = 431, .external_lex_state = 52}, - [2231] = {.lex_state = 459, .external_lex_state = 53}, - [2232] = {.lex_state = 431, .external_lex_state = 52}, - [2233] = {.lex_state = 431, .external_lex_state = 52}, - [2234] = {.lex_state = 431, .external_lex_state = 52}, - [2235] = {.lex_state = 525, .external_lex_state = 22}, - [2236] = {.lex_state = 431, .external_lex_state = 52}, - [2237] = {.lex_state = 431, .external_lex_state = 52}, - [2238] = {.lex_state = 459, .external_lex_state = 53}, - [2239] = {.lex_state = 431, .external_lex_state = 52}, - [2240] = {.lex_state = 431, .external_lex_state = 52}, - [2241] = {.lex_state = 431, .external_lex_state = 52}, - [2242] = {.lex_state = 431, .external_lex_state = 52}, - [2243] = {.lex_state = 431, .external_lex_state = 52}, - [2244] = {.lex_state = 431, .external_lex_state = 52}, - [2245] = {.lex_state = 456, .external_lex_state = 51}, - [2246] = {.lex_state = 437, .external_lex_state = 44}, - [2247] = {.lex_state = 525, .external_lex_state = 22}, - [2248] = {.lex_state = 456, .external_lex_state = 51}, - [2249] = {.lex_state = 455, .external_lex_state = 23}, - [2250] = {.lex_state = 459, .external_lex_state = 53}, - [2251] = {.lex_state = 456, .external_lex_state = 51}, - [2252] = {.lex_state = 459, .external_lex_state = 53}, - [2253] = {.lex_state = 529, .external_lex_state = 22}, - [2254] = {.lex_state = 284, .external_lex_state = 43}, - [2255] = {.lex_state = 284, .external_lex_state = 43}, - [2256] = {.lex_state = 286, .external_lex_state = 43}, - [2257] = {.lex_state = 286, .external_lex_state = 43}, - [2258] = {.lex_state = 456, .external_lex_state = 51}, - [2259] = {.lex_state = 437, .external_lex_state = 44}, - [2260] = {.lex_state = 456, .external_lex_state = 51}, - [2261] = {.lex_state = 456, .external_lex_state = 51}, - [2262] = {.lex_state = 404, .external_lex_state = 35}, - [2263] = {.lex_state = 456, .external_lex_state = 51}, - [2264] = {.lex_state = 459, .external_lex_state = 53}, - [2265] = {.lex_state = 456, .external_lex_state = 51}, - [2266] = {.lex_state = 456, .external_lex_state = 51}, - [2267] = {.lex_state = 456, .external_lex_state = 51}, - [2268] = {.lex_state = 527, .external_lex_state = 19}, - [2269] = {.lex_state = 527, .external_lex_state = 19}, - [2270] = {.lex_state = 459, .external_lex_state = 53}, - [2271] = {.lex_state = 456, .external_lex_state = 51}, - [2272] = {.lex_state = 456, .external_lex_state = 51}, - [2273] = {.lex_state = 459, .external_lex_state = 53}, - [2274] = {.lex_state = 456, .external_lex_state = 51}, - [2275] = {.lex_state = 459, .external_lex_state = 53}, - [2276] = {.lex_state = 266, .external_lex_state = 22}, - [2277] = {.lex_state = 432, .external_lex_state = 52}, + [2040] = {.lex_state = 534, .external_lex_state = 45}, + [2041] = {.lex_state = 534, .external_lex_state = 45}, + [2042] = {.lex_state = 534, .external_lex_state = 45}, + [2043] = {.lex_state = 534, .external_lex_state = 45}, + [2044] = {.lex_state = 419, .external_lex_state = 43}, + [2045] = {.lex_state = 527, .external_lex_state = 18}, + [2046] = {.lex_state = 527, .external_lex_state = 18}, + [2047] = {.lex_state = 526, .external_lex_state = 18}, + [2048] = {.lex_state = 419, .external_lex_state = 43}, + [2049] = {.lex_state = 419, .external_lex_state = 43}, + [2050] = {.lex_state = 419, .external_lex_state = 43}, + [2051] = {.lex_state = 419, .external_lex_state = 43}, + [2052] = {.lex_state = 419, .external_lex_state = 43}, + [2053] = {.lex_state = 419, .external_lex_state = 43}, + [2054] = {.lex_state = 419, .external_lex_state = 43}, + [2055] = {.lex_state = 419, .external_lex_state = 43}, + [2056] = {.lex_state = 419, .external_lex_state = 43}, + [2057] = {.lex_state = 419, .external_lex_state = 43}, + [2058] = {.lex_state = 419, .external_lex_state = 43}, + [2059] = {.lex_state = 419, .external_lex_state = 43}, + [2060] = {.lex_state = 263, .external_lex_state = 21}, + [2061] = {.lex_state = 419, .external_lex_state = 43}, + [2062] = {.lex_state = 526, .external_lex_state = 18}, + [2063] = {.lex_state = 526, .external_lex_state = 18}, + [2064] = {.lex_state = 419, .external_lex_state = 43}, + [2065] = {.lex_state = 419, .external_lex_state = 43}, + [2066] = {.lex_state = 419, .external_lex_state = 43}, + [2067] = {.lex_state = 419, .external_lex_state = 43}, + [2068] = {.lex_state = 248, .external_lex_state = 22}, + [2069] = {.lex_state = 527, .external_lex_state = 18}, + [2070] = {.lex_state = 527, .external_lex_state = 18}, + [2071] = {.lex_state = 269, .external_lex_state = 22}, + [2072] = {.lex_state = 527, .external_lex_state = 18}, + [2073] = {.lex_state = 257, .external_lex_state = 22}, + [2074] = {.lex_state = 419, .external_lex_state = 43}, + [2075] = {.lex_state = 419, .external_lex_state = 43}, + [2076] = {.lex_state = 527, .external_lex_state = 22}, + [2077] = {.lex_state = 527, .external_lex_state = 18}, + [2078] = {.lex_state = 527, .external_lex_state = 18}, + [2079] = {.lex_state = 431, .external_lex_state = 52}, + [2080] = {.lex_state = 419, .external_lex_state = 43}, + [2081] = {.lex_state = 419, .external_lex_state = 43}, + [2082] = {.lex_state = 527, .external_lex_state = 18}, + [2083] = {.lex_state = 419, .external_lex_state = 43}, + [2084] = {.lex_state = 419, .external_lex_state = 43}, + [2085] = {.lex_state = 419, .external_lex_state = 43}, + [2086] = {.lex_state = 419, .external_lex_state = 43}, + [2087] = {.lex_state = 419, .external_lex_state = 43}, + [2088] = {.lex_state = 419, .external_lex_state = 43}, + [2089] = {.lex_state = 419, .external_lex_state = 43}, + [2090] = {.lex_state = 419, .external_lex_state = 43}, + [2091] = {.lex_state = 419, .external_lex_state = 43}, + [2092] = {.lex_state = 419, .external_lex_state = 43}, + [2093] = {.lex_state = 419, .external_lex_state = 43}, + [2094] = {.lex_state = 419, .external_lex_state = 43}, + [2095] = {.lex_state = 419, .external_lex_state = 43}, + [2096] = {.lex_state = 419, .external_lex_state = 43}, + [2097] = {.lex_state = 419, .external_lex_state = 43}, + [2098] = {.lex_state = 527, .external_lex_state = 18}, + [2099] = {.lex_state = 534, .external_lex_state = 45}, + [2100] = {.lex_state = 534, .external_lex_state = 45}, + [2101] = {.lex_state = 534, .external_lex_state = 45}, + [2102] = {.lex_state = 419, .external_lex_state = 43}, + [2103] = {.lex_state = 419, .external_lex_state = 43}, + [2104] = {.lex_state = 527, .external_lex_state = 18}, + [2105] = {.lex_state = 419, .external_lex_state = 43}, + [2106] = {.lex_state = 526, .external_lex_state = 18}, + [2107] = {.lex_state = 419, .external_lex_state = 43}, + [2108] = {.lex_state = 419, .external_lex_state = 43}, + [2109] = {.lex_state = 527, .external_lex_state = 18}, + [2110] = {.lex_state = 526, .external_lex_state = 18}, + [2111] = {.lex_state = 419, .external_lex_state = 43}, + [2112] = {.lex_state = 419, .external_lex_state = 43}, + [2113] = {.lex_state = 527, .external_lex_state = 18}, + [2114] = {.lex_state = 527, .external_lex_state = 18}, + [2115] = {.lex_state = 527, .external_lex_state = 18}, + [2116] = {.lex_state = 526, .external_lex_state = 22}, + [2117] = {.lex_state = 527, .external_lex_state = 18}, + [2118] = {.lex_state = 527, .external_lex_state = 18}, + [2119] = {.lex_state = 527, .external_lex_state = 18}, + [2120] = {.lex_state = 527, .external_lex_state = 18}, + [2121] = {.lex_state = 527, .external_lex_state = 18}, + [2122] = {.lex_state = 527, .external_lex_state = 18}, + [2123] = {.lex_state = 527, .external_lex_state = 18}, + [2124] = {.lex_state = 527, .external_lex_state = 18}, + [2125] = {.lex_state = 527, .external_lex_state = 18}, + [2126] = {.lex_state = 527, .external_lex_state = 18}, + [2127] = {.lex_state = 527, .external_lex_state = 18}, + [2128] = {.lex_state = 527, .external_lex_state = 18}, + [2129] = {.lex_state = 527, .external_lex_state = 18}, + [2130] = {.lex_state = 527, .external_lex_state = 18}, + [2131] = {.lex_state = 456, .external_lex_state = 51}, + [2132] = {.lex_state = 527, .external_lex_state = 18}, + [2133] = {.lex_state = 527, .external_lex_state = 18}, + [2134] = {.lex_state = 527, .external_lex_state = 18}, + [2135] = {.lex_state = 527, .external_lex_state = 18}, + [2136] = {.lex_state = 527, .external_lex_state = 18}, + [2137] = {.lex_state = 527, .external_lex_state = 18}, + [2138] = {.lex_state = 527, .external_lex_state = 18}, + [2139] = {.lex_state = 527, .external_lex_state = 18}, + [2140] = {.lex_state = 527, .external_lex_state = 18}, + [2141] = {.lex_state = 527, .external_lex_state = 18}, + [2142] = {.lex_state = 527, .external_lex_state = 18}, + [2143] = {.lex_state = 527, .external_lex_state = 18}, + [2144] = {.lex_state = 527, .external_lex_state = 18}, + [2145] = {.lex_state = 527, .external_lex_state = 18}, + [2146] = {.lex_state = 527, .external_lex_state = 18}, + [2147] = {.lex_state = 527, .external_lex_state = 18}, + [2148] = {.lex_state = 527, .external_lex_state = 18}, + [2149] = {.lex_state = 527, .external_lex_state = 18}, + [2150] = {.lex_state = 527, .external_lex_state = 18}, + [2151] = {.lex_state = 527, .external_lex_state = 18}, + [2152] = {.lex_state = 527, .external_lex_state = 18}, + [2153] = {.lex_state = 527, .external_lex_state = 18}, + [2154] = {.lex_state = 527, .external_lex_state = 18}, + [2155] = {.lex_state = 527, .external_lex_state = 18}, + [2156] = {.lex_state = 527, .external_lex_state = 18}, + [2157] = {.lex_state = 527, .external_lex_state = 18}, + [2158] = {.lex_state = 527, .external_lex_state = 18}, + [2159] = {.lex_state = 527, .external_lex_state = 18}, + [2160] = {.lex_state = 527, .external_lex_state = 18}, + [2161] = {.lex_state = 527, .external_lex_state = 18}, + [2162] = {.lex_state = 527, .external_lex_state = 18}, + [2163] = {.lex_state = 527, .external_lex_state = 18}, + [2164] = {.lex_state = 527, .external_lex_state = 18}, + [2165] = {.lex_state = 527, .external_lex_state = 18}, + [2166] = {.lex_state = 527, .external_lex_state = 18}, + [2167] = {.lex_state = 527, .external_lex_state = 18}, + [2168] = {.lex_state = 527, .external_lex_state = 18}, + [2169] = {.lex_state = 527, .external_lex_state = 18}, + [2170] = {.lex_state = 527, .external_lex_state = 18}, + [2171] = {.lex_state = 527, .external_lex_state = 18}, + [2172] = {.lex_state = 527, .external_lex_state = 18}, + [2173] = {.lex_state = 527, .external_lex_state = 18}, + [2174] = {.lex_state = 527, .external_lex_state = 18}, + [2175] = {.lex_state = 527, .external_lex_state = 18}, + [2176] = {.lex_state = 527, .external_lex_state = 18}, + [2177] = {.lex_state = 527, .external_lex_state = 18}, + [2178] = {.lex_state = 527, .external_lex_state = 18}, + [2179] = {.lex_state = 527, .external_lex_state = 18}, + [2180] = {.lex_state = 527, .external_lex_state = 18}, + [2181] = {.lex_state = 527, .external_lex_state = 18}, + [2182] = {.lex_state = 527, .external_lex_state = 18}, + [2183] = {.lex_state = 527, .external_lex_state = 18}, + [2184] = {.lex_state = 527, .external_lex_state = 18}, + [2185] = {.lex_state = 527, .external_lex_state = 18}, + [2186] = {.lex_state = 527, .external_lex_state = 18}, + [2187] = {.lex_state = 527, .external_lex_state = 18}, + [2188] = {.lex_state = 527, .external_lex_state = 18}, + [2189] = {.lex_state = 527, .external_lex_state = 18}, + [2190] = {.lex_state = 527, .external_lex_state = 18}, + [2191] = {.lex_state = 419, .external_lex_state = 43}, + [2192] = {.lex_state = 419, .external_lex_state = 43}, + [2193] = {.lex_state = 534, .external_lex_state = 45}, + [2194] = {.lex_state = 534, .external_lex_state = 45}, + [2195] = {.lex_state = 419, .external_lex_state = 43}, + [2196] = {.lex_state = 526, .external_lex_state = 22}, + [2197] = {.lex_state = 419, .external_lex_state = 43}, + [2198] = {.lex_state = 419, .external_lex_state = 43}, + [2199] = {.lex_state = 419, .external_lex_state = 43}, + [2200] = {.lex_state = 419, .external_lex_state = 43}, + [2201] = {.lex_state = 419, .external_lex_state = 43}, + [2202] = {.lex_state = 419, .external_lex_state = 43}, + [2203] = {.lex_state = 419, .external_lex_state = 43}, + [2204] = {.lex_state = 419, .external_lex_state = 43}, + [2205] = {.lex_state = 527, .external_lex_state = 18}, + [2206] = {.lex_state = 419, .external_lex_state = 43}, + [2207] = {.lex_state = 419, .external_lex_state = 43}, + [2208] = {.lex_state = 526, .external_lex_state = 18}, + [2209] = {.lex_state = 527, .external_lex_state = 18}, + [2210] = {.lex_state = 419, .external_lex_state = 43}, + [2211] = {.lex_state = 527, .external_lex_state = 18}, + [2212] = {.lex_state = 419, .external_lex_state = 43}, + [2213] = {.lex_state = 526, .external_lex_state = 18}, + [2214] = {.lex_state = 419, .external_lex_state = 43}, + [2215] = {.lex_state = 419, .external_lex_state = 43}, + [2216] = {.lex_state = 526, .external_lex_state = 22}, + [2217] = {.lex_state = 419, .external_lex_state = 43}, + [2218] = {.lex_state = 419, .external_lex_state = 43}, + [2219] = {.lex_state = 419, .external_lex_state = 43}, + [2220] = {.lex_state = 527, .external_lex_state = 18}, + [2221] = {.lex_state = 419, .external_lex_state = 43}, + [2222] = {.lex_state = 419, .external_lex_state = 43}, + [2223] = {.lex_state = 419, .external_lex_state = 43}, + [2224] = {.lex_state = 419, .external_lex_state = 43}, + [2225] = {.lex_state = 419, .external_lex_state = 43}, + [2226] = {.lex_state = 419, .external_lex_state = 43}, + [2227] = {.lex_state = 527, .external_lex_state = 22}, + [2228] = {.lex_state = 456, .external_lex_state = 51}, + [2229] = {.lex_state = 456, .external_lex_state = 51}, + [2230] = {.lex_state = 419, .external_lex_state = 43}, + [2231] = {.lex_state = 456, .external_lex_state = 51}, + [2232] = {.lex_state = 456, .external_lex_state = 51}, + [2233] = {.lex_state = 419, .external_lex_state = 43}, + [2234] = {.lex_state = 419, .external_lex_state = 43}, + [2235] = {.lex_state = 419, .external_lex_state = 43}, + [2236] = {.lex_state = 419, .external_lex_state = 43}, + [2237] = {.lex_state = 419, .external_lex_state = 43}, + [2238] = {.lex_state = 419, .external_lex_state = 43}, + [2239] = {.lex_state = 527, .external_lex_state = 18}, + [2240] = {.lex_state = 527, .external_lex_state = 18}, + [2241] = {.lex_state = 527, .external_lex_state = 18}, + [2242] = {.lex_state = 527, .external_lex_state = 18}, + [2243] = {.lex_state = 527, .external_lex_state = 18}, + [2244] = {.lex_state = 526, .external_lex_state = 18}, + [2245] = {.lex_state = 527, .external_lex_state = 18}, + [2246] = {.lex_state = 526, .external_lex_state = 22}, + [2247] = {.lex_state = 419, .external_lex_state = 43}, + [2248] = {.lex_state = 452, .external_lex_state = 32}, + [2249] = {.lex_state = 452, .external_lex_state = 32}, + [2250] = {.lex_state = 527, .external_lex_state = 18}, + [2251] = {.lex_state = 419, .external_lex_state = 43}, + [2252] = {.lex_state = 527, .external_lex_state = 18}, + [2253] = {.lex_state = 419, .external_lex_state = 43}, + [2254] = {.lex_state = 419, .external_lex_state = 43}, + [2255] = {.lex_state = 419, .external_lex_state = 43}, + [2256] = {.lex_state = 419, .external_lex_state = 43}, + [2257] = {.lex_state = 419, .external_lex_state = 43}, + [2258] = {.lex_state = 419, .external_lex_state = 43}, + [2259] = {.lex_state = 419, .external_lex_state = 43}, + [2260] = {.lex_state = 419, .external_lex_state = 43}, + [2261] = {.lex_state = 419, .external_lex_state = 43}, + [2262] = {.lex_state = 419, .external_lex_state = 43}, + [2263] = {.lex_state = 419, .external_lex_state = 43}, + [2264] = {.lex_state = 419, .external_lex_state = 43}, + [2265] = {.lex_state = 419, .external_lex_state = 43}, + [2266] = {.lex_state = 419, .external_lex_state = 43}, + [2267] = {.lex_state = 419, .external_lex_state = 43}, + [2268] = {.lex_state = 419, .external_lex_state = 43}, + [2269] = {.lex_state = 419, .external_lex_state = 43}, + [2270] = {.lex_state = 456, .external_lex_state = 51}, + [2271] = {.lex_state = 419, .external_lex_state = 43}, + [2272] = {.lex_state = 527, .external_lex_state = 18}, + [2273] = {.lex_state = 284, .external_lex_state = 42}, + [2274] = {.lex_state = 527, .external_lex_state = 22}, + [2275] = {.lex_state = 456, .external_lex_state = 51}, + [2276] = {.lex_state = 456, .external_lex_state = 51}, + [2277] = {.lex_state = 456, .external_lex_state = 51}, [2278] = {.lex_state = 456, .external_lex_state = 51}, [2279] = {.lex_state = 529, .external_lex_state = 22}, - [2280] = {.lex_state = 529, .external_lex_state = 22}, - [2281] = {.lex_state = 527, .external_lex_state = 22}, - [2282] = {.lex_state = 459, .external_lex_state = 53}, - [2283] = {.lex_state = 459, .external_lex_state = 53}, - [2284] = {.lex_state = 432, .external_lex_state = 52}, - [2285] = {.lex_state = 527, .external_lex_state = 19}, - [2286] = {.lex_state = 284, .external_lex_state = 43}, - [2287] = {.lex_state = 284, .external_lex_state = 43}, - [2288] = {.lex_state = 286, .external_lex_state = 43}, - [2289] = {.lex_state = 286, .external_lex_state = 43}, - [2290] = {.lex_state = 284, .external_lex_state = 43}, - [2291] = {.lex_state = 284, .external_lex_state = 43}, - [2292] = {.lex_state = 284, .external_lex_state = 43}, - [2293] = {.lex_state = 284, .external_lex_state = 43}, - [2294] = {.lex_state = 284, .external_lex_state = 43}, - [2295] = {.lex_state = 284, .external_lex_state = 43}, - [2296] = {.lex_state = 284, .external_lex_state = 43}, - [2297] = {.lex_state = 284, .external_lex_state = 43}, - [2298] = {.lex_state = 527, .external_lex_state = 22}, + [2280] = {.lex_state = 456, .external_lex_state = 51}, + [2281] = {.lex_state = 404, .external_lex_state = 32}, + [2282] = {.lex_state = 269, .external_lex_state = 22}, + [2283] = {.lex_state = 455, .external_lex_state = 23}, + [2284] = {.lex_state = 456, .external_lex_state = 51}, + [2285] = {.lex_state = 431, .external_lex_state = 52}, + [2286] = {.lex_state = 431, .external_lex_state = 52}, + [2287] = {.lex_state = 431, .external_lex_state = 52}, + [2288] = {.lex_state = 431, .external_lex_state = 52}, + [2289] = {.lex_state = 432, .external_lex_state = 52}, + [2290] = {.lex_state = 431, .external_lex_state = 52}, + [2291] = {.lex_state = 529, .external_lex_state = 22}, + [2292] = {.lex_state = 527, .external_lex_state = 22}, + [2293] = {.lex_state = 456, .external_lex_state = 51}, + [2294] = {.lex_state = 456, .external_lex_state = 51}, + [2295] = {.lex_state = 456, .external_lex_state = 51}, + [2296] = {.lex_state = 456, .external_lex_state = 51}, + [2297] = {.lex_state = 456, .external_lex_state = 51}, + [2298] = {.lex_state = 526, .external_lex_state = 22}, [2299] = {.lex_state = 431, .external_lex_state = 52}, - [2300] = {.lex_state = 286, .external_lex_state = 43}, - [2301] = {.lex_state = 286, .external_lex_state = 43}, - [2302] = {.lex_state = 456, .external_lex_state = 51}, - [2303] = {.lex_state = 284, .external_lex_state = 43}, - [2304] = {.lex_state = 286, .external_lex_state = 43}, - [2305] = {.lex_state = 404, .external_lex_state = 35}, - [2306] = {.lex_state = 459, .external_lex_state = 53}, - [2307] = {.lex_state = 455, .external_lex_state = 23}, - [2308] = {.lex_state = 286, .external_lex_state = 45}, - [2309] = {.lex_state = 437, .external_lex_state = 44}, - [2310] = {.lex_state = 286, .external_lex_state = 45}, - [2311] = {.lex_state = 286, .external_lex_state = 45}, - [2312] = {.lex_state = 432, .external_lex_state = 39}, - [2313] = {.lex_state = 427, .external_lex_state = 54}, + [2300] = {.lex_state = 431, .external_lex_state = 52}, + [2301] = {.lex_state = 431, .external_lex_state = 52}, + [2302] = {.lex_state = 529, .external_lex_state = 22}, + [2303] = {.lex_state = 431, .external_lex_state = 52}, + [2304] = {.lex_state = 456, .external_lex_state = 51}, + [2305] = {.lex_state = 456, .external_lex_state = 51}, + [2306] = {.lex_state = 527, .external_lex_state = 18}, + [2307] = {.lex_state = 527, .external_lex_state = 18}, + [2308] = {.lex_state = 286, .external_lex_state = 42}, + [2309] = {.lex_state = 286, .external_lex_state = 42}, + [2310] = {.lex_state = 284, .external_lex_state = 42}, + [2311] = {.lex_state = 284, .external_lex_state = 42}, + [2312] = {.lex_state = 431, .external_lex_state = 52}, + [2313] = {.lex_state = 431, .external_lex_state = 52}, [2314] = {.lex_state = 431, .external_lex_state = 52}, - [2315] = {.lex_state = 431, .external_lex_state = 52}, - [2316] = {.lex_state = 459, .external_lex_state = 53}, - [2317] = {.lex_state = 437, .external_lex_state = 44}, - [2318] = {.lex_state = 459, .external_lex_state = 53}, - [2319] = {.lex_state = 459, .external_lex_state = 53}, - [2320] = {.lex_state = 294, .external_lex_state = 55}, - [2321] = {.lex_state = 465, .external_lex_state = 56}, - [2322] = {.lex_state = 294, .external_lex_state = 55}, - [2323] = {.lex_state = 455, .external_lex_state = 25}, - [2324] = {.lex_state = 437, .external_lex_state = 44}, - [2325] = {.lex_state = 429, .external_lex_state = 44}, - [2326] = {.lex_state = 294, .external_lex_state = 55}, - [2327] = {.lex_state = 429, .external_lex_state = 44}, - [2328] = {.lex_state = 459, .external_lex_state = 53}, - [2329] = {.lex_state = 455, .external_lex_state = 25}, - [2330] = {.lex_state = 437, .external_lex_state = 44}, - [2331] = {.lex_state = 294, .external_lex_state = 55}, - [2332] = {.lex_state = 437, .external_lex_state = 44}, + [2315] = {.lex_state = 529, .external_lex_state = 22}, + [2316] = {.lex_state = 431, .external_lex_state = 52}, + [2317] = {.lex_state = 431, .external_lex_state = 52}, + [2318] = {.lex_state = 456, .external_lex_state = 51}, + [2319] = {.lex_state = 437, .external_lex_state = 44}, + [2320] = {.lex_state = 456, .external_lex_state = 51}, + [2321] = {.lex_state = 459, .external_lex_state = 53}, + [2322] = {.lex_state = 459, .external_lex_state = 53}, + [2323] = {.lex_state = 527, .external_lex_state = 18}, + [2324] = {.lex_state = 456, .external_lex_state = 51}, + [2325] = {.lex_state = 431, .external_lex_state = 52}, + [2326] = {.lex_state = 526, .external_lex_state = 22}, + [2327] = {.lex_state = 431, .external_lex_state = 52}, + [2328] = {.lex_state = 431, .external_lex_state = 52}, + [2329] = {.lex_state = 431, .external_lex_state = 52}, + [2330] = {.lex_state = 455, .external_lex_state = 23}, + [2331] = {.lex_state = 431, .external_lex_state = 52}, + [2332] = {.lex_state = 456, .external_lex_state = 51}, [2333] = {.lex_state = 459, .external_lex_state = 53}, - [2334] = {.lex_state = 294, .external_lex_state = 55}, - [2335] = {.lex_state = 457, .external_lex_state = 56}, - [2336] = {.lex_state = 294, .external_lex_state = 55}, - [2337] = {.lex_state = 427, .external_lex_state = 54}, + [2334] = {.lex_state = 459, .external_lex_state = 53}, + [2335] = {.lex_state = 459, .external_lex_state = 53}, + [2336] = {.lex_state = 437, .external_lex_state = 44}, + [2337] = {.lex_state = 431, .external_lex_state = 52}, [2338] = {.lex_state = 459, .external_lex_state = 53}, [2339] = {.lex_state = 459, .external_lex_state = 53}, - [2340] = {.lex_state = 427, .external_lex_state = 54}, - [2341] = {.lex_state = 459, .external_lex_state = 53}, - [2342] = {.lex_state = 437, .external_lex_state = 44}, + [2340] = {.lex_state = 459, .external_lex_state = 53}, + [2341] = {.lex_state = 456, .external_lex_state = 51}, + [2342] = {.lex_state = 456, .external_lex_state = 51}, [2343] = {.lex_state = 459, .external_lex_state = 53}, - [2344] = {.lex_state = 431, .external_lex_state = 52}, - [2345] = {.lex_state = 429, .external_lex_state = 44}, - [2346] = {.lex_state = 457, .external_lex_state = 56}, - [2347] = {.lex_state = 459, .external_lex_state = 53}, - [2348] = {.lex_state = 427, .external_lex_state = 54}, - [2349] = {.lex_state = 455, .external_lex_state = 25}, - [2350] = {.lex_state = 459, .external_lex_state = 57}, - [2351] = {.lex_state = 529, .external_lex_state = 22}, - [2352] = {.lex_state = 529, .external_lex_state = 22}, - [2353] = {.lex_state = 459, .external_lex_state = 53}, - [2354] = {.lex_state = 465, .external_lex_state = 56}, - [2355] = {.lex_state = 437, .external_lex_state = 44}, - [2356] = {.lex_state = 457, .external_lex_state = 56}, - [2357] = {.lex_state = 437, .external_lex_state = 44}, + [2344] = {.lex_state = 432, .external_lex_state = 52}, + [2345] = {.lex_state = 459, .external_lex_state = 53}, + [2346] = {.lex_state = 286, .external_lex_state = 42}, + [2347] = {.lex_state = 286, .external_lex_state = 42}, + [2348] = {.lex_state = 284, .external_lex_state = 42}, + [2349] = {.lex_state = 284, .external_lex_state = 42}, + [2350] = {.lex_state = 286, .external_lex_state = 42}, + [2351] = {.lex_state = 286, .external_lex_state = 42}, + [2352] = {.lex_state = 286, .external_lex_state = 42}, + [2353] = {.lex_state = 286, .external_lex_state = 42}, + [2354] = {.lex_state = 286, .external_lex_state = 42}, + [2355] = {.lex_state = 286, .external_lex_state = 42}, + [2356] = {.lex_state = 286, .external_lex_state = 42}, + [2357] = {.lex_state = 286, .external_lex_state = 42}, [2358] = {.lex_state = 459, .external_lex_state = 53}, - [2359] = {.lex_state = 429, .external_lex_state = 44}, - [2360] = {.lex_state = 459, .external_lex_state = 53}, - [2361] = {.lex_state = 431, .external_lex_state = 52}, - [2362] = {.lex_state = 437, .external_lex_state = 44}, - [2363] = {.lex_state = 429, .external_lex_state = 44}, - [2364] = {.lex_state = 457, .external_lex_state = 56}, - [2365] = {.lex_state = 465, .external_lex_state = 56}, - [2366] = {.lex_state = 429, .external_lex_state = 44}, - [2367] = {.lex_state = 465, .external_lex_state = 56}, - [2368] = {.lex_state = 457, .external_lex_state = 56}, - [2369] = {.lex_state = 457, .external_lex_state = 56}, - [2370] = {.lex_state = 459, .external_lex_state = 53}, - [2371] = {.lex_state = 465, .external_lex_state = 56}, - [2372] = {.lex_state = 459, .external_lex_state = 53}, - [2373] = {.lex_state = 429, .external_lex_state = 44}, + [2359] = {.lex_state = 284, .external_lex_state = 42}, + [2360] = {.lex_state = 404, .external_lex_state = 32}, + [2361] = {.lex_state = 286, .external_lex_state = 42}, + [2362] = {.lex_state = 284, .external_lex_state = 42}, + [2363] = {.lex_state = 459, .external_lex_state = 53}, + [2364] = {.lex_state = 459, .external_lex_state = 54}, + [2365] = {.lex_state = 459, .external_lex_state = 53}, + [2366] = {.lex_state = 284, .external_lex_state = 45}, + [2367] = {.lex_state = 284, .external_lex_state = 45}, + [2368] = {.lex_state = 459, .external_lex_state = 53}, + [2369] = {.lex_state = 437, .external_lex_state = 44}, + [2370] = {.lex_state = 294, .external_lex_state = 55}, + [2371] = {.lex_state = 294, .external_lex_state = 55}, + [2372] = {.lex_state = 429, .external_lex_state = 44}, + [2373] = {.lex_state = 294, .external_lex_state = 55}, [2374] = {.lex_state = 294, .external_lex_state = 55}, - [2375] = {.lex_state = 294, .external_lex_state = 55}, - [2376] = {.lex_state = 459, .external_lex_state = 57}, - [2377] = {.lex_state = 294, .external_lex_state = 55}, - [2378] = {.lex_state = 294, .external_lex_state = 55}, + [2375] = {.lex_state = 459, .external_lex_state = 53}, + [2376] = {.lex_state = 455, .external_lex_state = 23}, + [2377] = {.lex_state = 457, .external_lex_state = 56}, + [2378] = {.lex_state = 457, .external_lex_state = 56}, [2379] = {.lex_state = 294, .external_lex_state = 55}, - [2380] = {.lex_state = 459, .external_lex_state = 57}, - [2381] = {.lex_state = 431, .external_lex_state = 52}, - [2382] = {.lex_state = 459, .external_lex_state = 57}, - [2383] = {.lex_state = 294, .external_lex_state = 55}, - [2384] = {.lex_state = 459, .external_lex_state = 57}, - [2385] = {.lex_state = 294, .external_lex_state = 55}, - [2386] = {.lex_state = 431, .external_lex_state = 52}, - [2387] = {.lex_state = 457, .external_lex_state = 56}, + [2380] = {.lex_state = 294, .external_lex_state = 55}, + [2381] = {.lex_state = 529, .external_lex_state = 22}, + [2382] = {.lex_state = 455, .external_lex_state = 25}, + [2383] = {.lex_state = 437, .external_lex_state = 44}, + [2384] = {.lex_state = 437, .external_lex_state = 44}, + [2385] = {.lex_state = 286, .external_lex_state = 45}, + [2386] = {.lex_state = 286, .external_lex_state = 45}, + [2387] = {.lex_state = 286, .external_lex_state = 45}, [2388] = {.lex_state = 457, .external_lex_state = 56}, - [2389] = {.lex_state = 294, .external_lex_state = 55}, - [2390] = {.lex_state = 427, .external_lex_state = 54}, - [2391] = {.lex_state = 457, .external_lex_state = 56}, - [2392] = {.lex_state = 286, .external_lex_state = 45}, - [2393] = {.lex_state = 286, .external_lex_state = 45}, - [2394] = {.lex_state = 294, .external_lex_state = 55}, - [2395] = {.lex_state = 465, .external_lex_state = 56}, - [2396] = {.lex_state = 431, .external_lex_state = 52}, - [2397] = {.lex_state = 459, .external_lex_state = 53}, - [2398] = {.lex_state = 465, .external_lex_state = 56}, - [2399] = {.lex_state = 455, .external_lex_state = 25}, - [2400] = {.lex_state = 431, .external_lex_state = 52}, - [2401] = {.lex_state = 459, .external_lex_state = 53}, - [2402] = {.lex_state = 455, .external_lex_state = 23}, - [2403] = {.lex_state = 437, .external_lex_state = 44}, + [2389] = {.lex_state = 457, .external_lex_state = 56}, + [2390] = {.lex_state = 457, .external_lex_state = 56}, + [2391] = {.lex_state = 455, .external_lex_state = 25}, + [2392] = {.lex_state = 437, .external_lex_state = 44}, + [2393] = {.lex_state = 429, .external_lex_state = 44}, + [2394] = {.lex_state = 465, .external_lex_state = 56}, + [2395] = {.lex_state = 437, .external_lex_state = 44}, + [2396] = {.lex_state = 429, .external_lex_state = 44}, + [2397] = {.lex_state = 455, .external_lex_state = 25}, + [2398] = {.lex_state = 294, .external_lex_state = 55}, + [2399] = {.lex_state = 294, .external_lex_state = 55}, + [2400] = {.lex_state = 294, .external_lex_state = 55}, + [2401] = {.lex_state = 437, .external_lex_state = 44}, + [2402] = {.lex_state = 294, .external_lex_state = 55}, + [2403] = {.lex_state = 432, .external_lex_state = 40}, [2404] = {.lex_state = 459, .external_lex_state = 53}, - [2405] = {.lex_state = 455, .external_lex_state = 25}, - [2406] = {.lex_state = 459, .external_lex_state = 57}, + [2405] = {.lex_state = 429, .external_lex_state = 44}, + [2406] = {.lex_state = 437, .external_lex_state = 44}, [2407] = {.lex_state = 429, .external_lex_state = 44}, [2408] = {.lex_state = 457, .external_lex_state = 56}, - [2409] = {.lex_state = 432, .external_lex_state = 39}, - [2410] = {.lex_state = 457, .external_lex_state = 56}, - [2411] = {.lex_state = 284, .external_lex_state = 45}, - [2412] = {.lex_state = 455, .external_lex_state = 23}, - [2413] = {.lex_state = 284, .external_lex_state = 45}, - [2414] = {.lex_state = 459, .external_lex_state = 53}, - [2415] = {.lex_state = 427, .external_lex_state = 54}, - [2416] = {.lex_state = 284, .external_lex_state = 45}, - [2417] = {.lex_state = 437, .external_lex_state = 44}, - [2418] = {.lex_state = 437, .external_lex_state = 44}, - [2419] = {.lex_state = 457, .external_lex_state = 56}, - [2420] = {.lex_state = 465, .external_lex_state = 56}, - [2421] = {.lex_state = 431, .external_lex_state = 52}, - [2422] = {.lex_state = 432, .external_lex_state = 52}, - [2423] = {.lex_state = 457, .external_lex_state = 56}, - [2424] = {.lex_state = 284, .external_lex_state = 45}, - [2425] = {.lex_state = 284, .external_lex_state = 45}, - [2426] = {.lex_state = 457, .external_lex_state = 56}, - [2427] = {.lex_state = 427, .external_lex_state = 54}, - [2428] = {.lex_state = 427, .external_lex_state = 54}, - [2429] = {.lex_state = 427, .external_lex_state = 54}, - [2430] = {.lex_state = 294, .external_lex_state = 55}, + [2409] = {.lex_state = 457, .external_lex_state = 56}, + [2410] = {.lex_state = 459, .external_lex_state = 54}, + [2411] = {.lex_state = 459, .external_lex_state = 54}, + [2412] = {.lex_state = 457, .external_lex_state = 56}, + [2413] = {.lex_state = 457, .external_lex_state = 56}, + [2414] = {.lex_state = 437, .external_lex_state = 44}, + [2415] = {.lex_state = 457, .external_lex_state = 56}, + [2416] = {.lex_state = 457, .external_lex_state = 56}, + [2417] = {.lex_state = 457, .external_lex_state = 56}, + [2418] = {.lex_state = 457, .external_lex_state = 56}, + [2419] = {.lex_state = 429, .external_lex_state = 44}, + [2420] = {.lex_state = 294, .external_lex_state = 55}, + [2421] = {.lex_state = 294, .external_lex_state = 55}, + [2422] = {.lex_state = 294, .external_lex_state = 55}, + [2423] = {.lex_state = 455, .external_lex_state = 25}, + [2424] = {.lex_state = 455, .external_lex_state = 23}, + [2425] = {.lex_state = 294, .external_lex_state = 55}, + [2426] = {.lex_state = 431, .external_lex_state = 52}, + [2427] = {.lex_state = 431, .external_lex_state = 52}, + [2428] = {.lex_state = 427, .external_lex_state = 57}, + [2429] = {.lex_state = 459, .external_lex_state = 53}, + [2430] = {.lex_state = 437, .external_lex_state = 44}, [2431] = {.lex_state = 437, .external_lex_state = 44}, - [2432] = {.lex_state = 429, .external_lex_state = 58}, - [2433] = {.lex_state = 457, .external_lex_state = 56}, - [2434] = {.lex_state = 457, .external_lex_state = 56}, - [2435] = {.lex_state = 459, .external_lex_state = 57}, - [2436] = {.lex_state = 458, .external_lex_state = 29}, - [2437] = {.lex_state = 457, .external_lex_state = 56}, - [2438] = {.lex_state = 465, .external_lex_state = 56}, - [2439] = {.lex_state = 437, .external_lex_state = 44}, - [2440] = {.lex_state = 465, .external_lex_state = 56}, - [2441] = {.lex_state = 437, .external_lex_state = 44}, - [2442] = {.lex_state = 427, .external_lex_state = 39}, - [2443] = {.lex_state = 437, .external_lex_state = 44}, - [2444] = {.lex_state = 429, .external_lex_state = 58}, - [2445] = {.lex_state = 465, .external_lex_state = 56}, + [2432] = {.lex_state = 437, .external_lex_state = 44}, + [2433] = {.lex_state = 294, .external_lex_state = 55}, + [2434] = {.lex_state = 432, .external_lex_state = 40}, + [2435] = {.lex_state = 465, .external_lex_state = 56}, + [2436] = {.lex_state = 457, .external_lex_state = 56}, + [2437] = {.lex_state = 437, .external_lex_state = 44}, + [2438] = {.lex_state = 294, .external_lex_state = 55}, + [2439] = {.lex_state = 459, .external_lex_state = 54}, + [2440] = {.lex_state = 459, .external_lex_state = 53}, + [2441] = {.lex_state = 427, .external_lex_state = 57}, + [2442] = {.lex_state = 465, .external_lex_state = 56}, + [2443] = {.lex_state = 427, .external_lex_state = 57}, + [2444] = {.lex_state = 427, .external_lex_state = 57}, + [2445] = {.lex_state = 427, .external_lex_state = 57}, [2446] = {.lex_state = 465, .external_lex_state = 56}, - [2447] = {.lex_state = 457, .external_lex_state = 56}, - [2448] = {.lex_state = 459, .external_lex_state = 57}, - [2449] = {.lex_state = 455, .external_lex_state = 25}, - [2450] = {.lex_state = 457, .external_lex_state = 56}, - [2451] = {.lex_state = 427, .external_lex_state = 39}, - [2452] = {.lex_state = 429, .external_lex_state = 46}, - [2453] = {.lex_state = 457, .external_lex_state = 56}, - [2454] = {.lex_state = 459, .external_lex_state = 57}, - [2455] = {.lex_state = 437, .external_lex_state = 44}, - [2456] = {.lex_state = 457, .external_lex_state = 56}, - [2457] = {.lex_state = 459, .external_lex_state = 57}, - [2458] = {.lex_state = 458, .external_lex_state = 29}, - [2459] = {.lex_state = 437, .external_lex_state = 44}, - [2460] = {.lex_state = 459, .external_lex_state = 57}, - [2461] = {.lex_state = 465, .external_lex_state = 56}, - [2462] = {.lex_state = 465, .external_lex_state = 56}, - [2463] = {.lex_state = 459, .external_lex_state = 57}, - [2464] = {.lex_state = 459, .external_lex_state = 57}, - [2465] = {.lex_state = 465, .external_lex_state = 59}, - [2466] = {.lex_state = 457, .external_lex_state = 56}, - [2467] = {.lex_state = 429, .external_lex_state = 58}, - [2468] = {.lex_state = 457, .external_lex_state = 56}, - [2469] = {.lex_state = 459, .external_lex_state = 57}, - [2470] = {.lex_state = 457, .external_lex_state = 56}, - [2471] = {.lex_state = 465, .external_lex_state = 56}, - [2472] = {.lex_state = 457, .external_lex_state = 56}, - [2473] = {.lex_state = 461, .external_lex_state = 57}, - [2474] = {.lex_state = 465, .external_lex_state = 59}, - [2475] = {.lex_state = 461, .external_lex_state = 57}, - [2476] = {.lex_state = 461, .external_lex_state = 57}, - [2477] = {.lex_state = 457, .external_lex_state = 56}, - [2478] = {.lex_state = 457, .external_lex_state = 56}, - [2479] = {.lex_state = 465, .external_lex_state = 59}, - [2480] = {.lex_state = 455, .external_lex_state = 25}, - [2481] = {.lex_state = 458, .external_lex_state = 29}, - [2482] = {.lex_state = 437, .external_lex_state = 44}, - [2483] = {.lex_state = 459, .external_lex_state = 57}, - [2484] = {.lex_state = 437, .external_lex_state = 44}, - [2485] = {.lex_state = 457, .external_lex_state = 56}, - [2486] = {.lex_state = 465, .external_lex_state = 56}, - [2487] = {.lex_state = 429, .external_lex_state = 60}, - [2488] = {.lex_state = 455, .external_lex_state = 25}, - [2489] = {.lex_state = 437, .external_lex_state = 44}, - [2490] = {.lex_state = 461, .external_lex_state = 57}, - [2491] = {.lex_state = 434, .external_lex_state = 61}, + [2447] = {.lex_state = 465, .external_lex_state = 56}, + [2448] = {.lex_state = 429, .external_lex_state = 44}, + [2449] = {.lex_state = 427, .external_lex_state = 57}, + [2450] = {.lex_state = 427, .external_lex_state = 57}, + [2451] = {.lex_state = 459, .external_lex_state = 53}, + [2452] = {.lex_state = 529, .external_lex_state = 22}, + [2453] = {.lex_state = 465, .external_lex_state = 56}, + [2454] = {.lex_state = 465, .external_lex_state = 56}, + [2455] = {.lex_state = 459, .external_lex_state = 53}, + [2456] = {.lex_state = 431, .external_lex_state = 52}, + [2457] = {.lex_state = 431, .external_lex_state = 52}, + [2458] = {.lex_state = 431, .external_lex_state = 52}, + [2459] = {.lex_state = 459, .external_lex_state = 53}, + [2460] = {.lex_state = 459, .external_lex_state = 53}, + [2461] = {.lex_state = 459, .external_lex_state = 54}, + [2462] = {.lex_state = 284, .external_lex_state = 45}, + [2463] = {.lex_state = 284, .external_lex_state = 45}, + [2464] = {.lex_state = 431, .external_lex_state = 52}, + [2465] = {.lex_state = 431, .external_lex_state = 52}, + [2466] = {.lex_state = 459, .external_lex_state = 53}, + [2467] = {.lex_state = 459, .external_lex_state = 53}, + [2468] = {.lex_state = 459, .external_lex_state = 53}, + [2469] = {.lex_state = 459, .external_lex_state = 54}, + [2470] = {.lex_state = 459, .external_lex_state = 53}, + [2471] = {.lex_state = 431, .external_lex_state = 52}, + [2472] = {.lex_state = 427, .external_lex_state = 57}, + [2473] = {.lex_state = 437, .external_lex_state = 44}, + [2474] = {.lex_state = 286, .external_lex_state = 45}, + [2475] = {.lex_state = 459, .external_lex_state = 53}, + [2476] = {.lex_state = 459, .external_lex_state = 53}, + [2477] = {.lex_state = 286, .external_lex_state = 45}, + [2478] = {.lex_state = 429, .external_lex_state = 44}, + [2479] = {.lex_state = 459, .external_lex_state = 53}, + [2480] = {.lex_state = 459, .external_lex_state = 53}, + [2481] = {.lex_state = 427, .external_lex_state = 57}, + [2482] = {.lex_state = 459, .external_lex_state = 53}, + [2483] = {.lex_state = 284, .external_lex_state = 45}, + [2484] = {.lex_state = 432, .external_lex_state = 52}, + [2485] = {.lex_state = 465, .external_lex_state = 56}, + [2486] = {.lex_state = 455, .external_lex_state = 25}, + [2487] = {.lex_state = 431, .external_lex_state = 52}, + [2488] = {.lex_state = 465, .external_lex_state = 56}, + [2489] = {.lex_state = 427, .external_lex_state = 40}, + [2490] = {.lex_state = 427, .external_lex_state = 40}, + [2491] = {.lex_state = 455, .external_lex_state = 25}, [2492] = {.lex_state = 457, .external_lex_state = 56}, [2493] = {.lex_state = 465, .external_lex_state = 56}, - [2494] = {.lex_state = 465, .external_lex_state = 56}, - [2495] = {.lex_state = 429, .external_lex_state = 60}, - [2496] = {.lex_state = 458, .external_lex_state = 29}, - [2497] = {.lex_state = 455, .external_lex_state = 25}, - [2498] = {.lex_state = 459, .external_lex_state = 57}, - [2499] = {.lex_state = 437, .external_lex_state = 44}, - [2500] = {.lex_state = 437, .external_lex_state = 44}, - [2501] = {.lex_state = 429, .external_lex_state = 58}, - [2502] = {.lex_state = 429, .external_lex_state = 44}, - [2503] = {.lex_state = 465, .external_lex_state = 59}, - [2504] = {.lex_state = 457, .external_lex_state = 59}, + [2494] = {.lex_state = 457, .external_lex_state = 56}, + [2495] = {.lex_state = 457, .external_lex_state = 56}, + [2496] = {.lex_state = 457, .external_lex_state = 56}, + [2497] = {.lex_state = 457, .external_lex_state = 56}, + [2498] = {.lex_state = 461, .external_lex_state = 54}, + [2499] = {.lex_state = 461, .external_lex_state = 54}, + [2500] = {.lex_state = 461, .external_lex_state = 54}, + [2501] = {.lex_state = 457, .external_lex_state = 56}, + [2502] = {.lex_state = 457, .external_lex_state = 56}, + [2503] = {.lex_state = 458, .external_lex_state = 29}, + [2504] = {.lex_state = 465, .external_lex_state = 56}, [2505] = {.lex_state = 465, .external_lex_state = 56}, - [2506] = {.lex_state = 465, .external_lex_state = 56}, - [2507] = {.lex_state = 465, .external_lex_state = 56}, - [2508] = {.lex_state = 427, .external_lex_state = 39}, - [2509] = {.lex_state = 455, .external_lex_state = 25}, - [2510] = {.lex_state = 457, .external_lex_state = 56}, - [2511] = {.lex_state = 465, .external_lex_state = 56}, - [2512] = {.lex_state = 427, .external_lex_state = 39}, - [2513] = {.lex_state = 465, .external_lex_state = 59}, - [2514] = {.lex_state = 457, .external_lex_state = 59}, - [2515] = {.lex_state = 459, .external_lex_state = 57}, - [2516] = {.lex_state = 437, .external_lex_state = 44}, - [2517] = {.lex_state = 437, .external_lex_state = 44}, - [2518] = {.lex_state = 427, .external_lex_state = 39}, - [2519] = {.lex_state = 457, .external_lex_state = 59}, - [2520] = {.lex_state = 429, .external_lex_state = 60}, - [2521] = {.lex_state = 459, .external_lex_state = 57}, - [2522] = {.lex_state = 432, .external_lex_state = 39}, - [2523] = {.lex_state = 437, .external_lex_state = 44}, - [2524] = {.lex_state = 437, .external_lex_state = 44}, - [2525] = {.lex_state = 437, .external_lex_state = 44}, - [2526] = {.lex_state = 465, .external_lex_state = 59}, - [2527] = {.lex_state = 457, .external_lex_state = 59}, - [2528] = {.lex_state = 431, .external_lex_state = 52}, - [2529] = {.lex_state = 437, .external_lex_state = 44}, - [2530] = {.lex_state = 431, .external_lex_state = 52}, - [2531] = {.lex_state = 457, .external_lex_state = 59}, - [2532] = {.lex_state = 459, .external_lex_state = 57}, - [2533] = {.lex_state = 427, .external_lex_state = 39}, - [2534] = {.lex_state = 429, .external_lex_state = 58}, - [2535] = {.lex_state = 465, .external_lex_state = 56}, - [2536] = {.lex_state = 461, .external_lex_state = 57}, - [2537] = {.lex_state = 429, .external_lex_state = 58}, - [2538] = {.lex_state = 461, .external_lex_state = 57}, - [2539] = {.lex_state = 292, .external_lex_state = 45}, - [2540] = {.lex_state = 457, .external_lex_state = 59}, - [2541] = {.lex_state = 427, .external_lex_state = 39}, - [2542] = {.lex_state = 465, .external_lex_state = 56}, - [2543] = {.lex_state = 429, .external_lex_state = 58}, - [2544] = {.lex_state = 458, .external_lex_state = 29}, - [2545] = {.lex_state = 427, .external_lex_state = 39}, - [2546] = {.lex_state = 459, .external_lex_state = 57}, - [2547] = {.lex_state = 292, .external_lex_state = 45}, - [2548] = {.lex_state = 465, .external_lex_state = 56}, - [2549] = {.lex_state = 429, .external_lex_state = 46}, - [2550] = {.lex_state = 459, .external_lex_state = 57}, - [2551] = {.lex_state = 457, .external_lex_state = 56}, - [2552] = {.lex_state = 459, .external_lex_state = 57}, - [2553] = {.lex_state = 457, .external_lex_state = 56}, - [2554] = {.lex_state = 465, .external_lex_state = 56}, - [2555] = {.lex_state = 292, .external_lex_state = 45}, - [2556] = {.lex_state = 292, .external_lex_state = 45}, - [2557] = {.lex_state = 431, .external_lex_state = 52}, - [2558] = {.lex_state = 429, .external_lex_state = 58}, - [2559] = {.lex_state = 429, .external_lex_state = 58}, + [2506] = {.lex_state = 427, .external_lex_state = 40}, + [2507] = {.lex_state = 461, .external_lex_state = 54}, + [2508] = {.lex_state = 465, .external_lex_state = 56}, + [2509] = {.lex_state = 459, .external_lex_state = 54}, + [2510] = {.lex_state = 465, .external_lex_state = 56}, + [2511] = {.lex_state = 459, .external_lex_state = 54}, + [2512] = {.lex_state = 459, .external_lex_state = 54}, + [2513] = {.lex_state = 429, .external_lex_state = 46}, + [2514] = {.lex_state = 292, .external_lex_state = 45}, + [2515] = {.lex_state = 292, .external_lex_state = 45}, + [2516] = {.lex_state = 292, .external_lex_state = 45}, + [2517] = {.lex_state = 465, .external_lex_state = 56}, + [2518] = {.lex_state = 459, .external_lex_state = 54}, + [2519] = {.lex_state = 459, .external_lex_state = 54}, + [2520] = {.lex_state = 432, .external_lex_state = 40}, + [2521] = {.lex_state = 459, .external_lex_state = 54}, + [2522] = {.lex_state = 465, .external_lex_state = 56}, + [2523] = {.lex_state = 459, .external_lex_state = 54}, + [2524] = {.lex_state = 457, .external_lex_state = 56}, + [2525] = {.lex_state = 457, .external_lex_state = 56}, + [2526] = {.lex_state = 457, .external_lex_state = 56}, + [2527] = {.lex_state = 457, .external_lex_state = 56}, + [2528] = {.lex_state = 457, .external_lex_state = 56}, + [2529] = {.lex_state = 457, .external_lex_state = 56}, + [2530] = {.lex_state = 457, .external_lex_state = 56}, + [2531] = {.lex_state = 457, .external_lex_state = 56}, + [2532] = {.lex_state = 457, .external_lex_state = 56}, + [2533] = {.lex_state = 457, .external_lex_state = 56}, + [2534] = {.lex_state = 457, .external_lex_state = 56}, + [2535] = {.lex_state = 457, .external_lex_state = 56}, + [2536] = {.lex_state = 459, .external_lex_state = 54}, + [2537] = {.lex_state = 459, .external_lex_state = 54}, + [2538] = {.lex_state = 459, .external_lex_state = 54}, + [2539] = {.lex_state = 459, .external_lex_state = 54}, + [2540] = {.lex_state = 459, .external_lex_state = 54}, + [2541] = {.lex_state = 458, .external_lex_state = 29}, + [2542] = {.lex_state = 459, .external_lex_state = 54}, + [2543] = {.lex_state = 459, .external_lex_state = 54}, + [2544] = {.lex_state = 459, .external_lex_state = 54}, + [2545] = {.lex_state = 459, .external_lex_state = 54}, + [2546] = {.lex_state = 459, .external_lex_state = 54}, + [2547] = {.lex_state = 459, .external_lex_state = 54}, + [2548] = {.lex_state = 459, .external_lex_state = 54}, + [2549] = {.lex_state = 457, .external_lex_state = 58}, + [2550] = {.lex_state = 457, .external_lex_state = 58}, + [2551] = {.lex_state = 457, .external_lex_state = 58}, + [2552] = {.lex_state = 457, .external_lex_state = 58}, + [2553] = {.lex_state = 465, .external_lex_state = 56}, + [2554] = {.lex_state = 458, .external_lex_state = 29}, + [2555] = {.lex_state = 458, .external_lex_state = 29}, + [2556] = {.lex_state = 458, .external_lex_state = 29}, + [2557] = {.lex_state = 458, .external_lex_state = 29}, + [2558] = {.lex_state = 465, .external_lex_state = 56}, + [2559] = {.lex_state = 465, .external_lex_state = 56}, [2560] = {.lex_state = 465, .external_lex_state = 56}, - [2561] = {.lex_state = 292, .external_lex_state = 45}, - [2562] = {.lex_state = 459, .external_lex_state = 57}, - [2563] = {.lex_state = 437, .external_lex_state = 44}, - [2564] = {.lex_state = 437, .external_lex_state = 44}, - [2565] = {.lex_state = 429, .external_lex_state = 60}, - [2566] = {.lex_state = 427, .external_lex_state = 39}, - [2567] = {.lex_state = 457, .external_lex_state = 56}, - [2568] = {.lex_state = 455, .external_lex_state = 25}, - [2569] = {.lex_state = 458, .external_lex_state = 29}, - [2570] = {.lex_state = 459, .external_lex_state = 57}, - [2571] = {.lex_state = 437, .external_lex_state = 44}, - [2572] = {.lex_state = 459, .external_lex_state = 57}, - [2573] = {.lex_state = 461, .external_lex_state = 57}, - [2574] = {.lex_state = 461, .external_lex_state = 57}, - [2575] = {.lex_state = 462, .external_lex_state = 59}, - [2576] = {.lex_state = 462, .external_lex_state = 59}, - [2577] = {.lex_state = 462, .external_lex_state = 59}, - [2578] = {.lex_state = 462, .external_lex_state = 59}, - [2579] = {.lex_state = 457, .external_lex_state = 59}, - [2580] = {.lex_state = 457, .external_lex_state = 59}, - [2581] = {.lex_state = 457, .external_lex_state = 59}, - [2582] = {.lex_state = 457, .external_lex_state = 59}, - [2583] = {.lex_state = 457, .external_lex_state = 59}, - [2584] = {.lex_state = 429, .external_lex_state = 61}, - [2585] = {.lex_state = 457, .external_lex_state = 59}, - [2586] = {.lex_state = 457, .external_lex_state = 59}, - [2587] = {.lex_state = 429, .external_lex_state = 61}, - [2588] = {.lex_state = 429, .external_lex_state = 61}, - [2589] = {.lex_state = 429, .external_lex_state = 62}, - [2590] = {.lex_state = 429, .external_lex_state = 62}, - [2591] = {.lex_state = 429, .external_lex_state = 62}, - [2592] = {.lex_state = 429, .external_lex_state = 62}, - [2593] = {.lex_state = 429, .external_lex_state = 62}, - [2594] = {.lex_state = 429, .external_lex_state = 62}, - [2595] = {.lex_state = 429, .external_lex_state = 61}, - [2596] = {.lex_state = 429, .external_lex_state = 61}, - [2597] = {.lex_state = 429, .external_lex_state = 62}, - [2598] = {.lex_state = 429, .external_lex_state = 62}, - [2599] = {.lex_state = 429, .external_lex_state = 62}, - [2600] = {.lex_state = 457, .external_lex_state = 59}, - [2601] = {.lex_state = 457, .external_lex_state = 59}, - [2602] = {.lex_state = 92, .external_lex_state = 63}, - [2603] = {.lex_state = 458, .external_lex_state = 29}, - [2604] = {.lex_state = 458, .external_lex_state = 29}, - [2605] = {.lex_state = 464, .external_lex_state = 26}, - [2606] = {.lex_state = 457, .external_lex_state = 59}, - [2607] = {.lex_state = 457, .external_lex_state = 59}, - [2608] = {.lex_state = 429, .external_lex_state = 44}, - [2609] = {.lex_state = 454, .external_lex_state = 26}, - [2610] = {.lex_state = 464, .external_lex_state = 26}, - [2611] = {.lex_state = 454, .external_lex_state = 26}, - [2612] = {.lex_state = 457, .external_lex_state = 59}, - [2613] = {.lex_state = 457, .external_lex_state = 59}, - [2614] = {.lex_state = 457, .external_lex_state = 59}, - [2615] = {.lex_state = 457, .external_lex_state = 59}, - [2616] = {.lex_state = 457, .external_lex_state = 59}, - [2617] = {.lex_state = 429, .external_lex_state = 61}, - [2618] = {.lex_state = 454, .external_lex_state = 26}, - [2619] = {.lex_state = 429, .external_lex_state = 61}, - [2620] = {.lex_state = 457, .external_lex_state = 59}, - [2621] = {.lex_state = 457, .external_lex_state = 59}, - [2622] = {.lex_state = 457, .external_lex_state = 59}, - [2623] = {.lex_state = 429, .external_lex_state = 61}, - [2624] = {.lex_state = 429, .external_lex_state = 44}, - [2625] = {.lex_state = 429, .external_lex_state = 44}, - [2626] = {.lex_state = 429, .external_lex_state = 44}, - [2627] = {.lex_state = 429, .external_lex_state = 44}, - [2628] = {.lex_state = 429, .external_lex_state = 44}, + [2561] = {.lex_state = 465, .external_lex_state = 58}, + [2562] = {.lex_state = 292, .external_lex_state = 45}, + [2563] = {.lex_state = 292, .external_lex_state = 45}, + [2564] = {.lex_state = 431, .external_lex_state = 52}, + [2565] = {.lex_state = 465, .external_lex_state = 56}, + [2566] = {.lex_state = 465, .external_lex_state = 58}, + [2567] = {.lex_state = 455, .external_lex_state = 25}, + [2568] = {.lex_state = 431, .external_lex_state = 52}, + [2569] = {.lex_state = 431, .external_lex_state = 52}, + [2570] = {.lex_state = 429, .external_lex_state = 59}, + [2571] = {.lex_state = 429, .external_lex_state = 59}, + [2572] = {.lex_state = 427, .external_lex_state = 40}, + [2573] = {.lex_state = 465, .external_lex_state = 58}, + [2574] = {.lex_state = 429, .external_lex_state = 59}, + [2575] = {.lex_state = 429, .external_lex_state = 59}, + [2576] = {.lex_state = 427, .external_lex_state = 40}, + [2577] = {.lex_state = 429, .external_lex_state = 59}, + [2578] = {.lex_state = 465, .external_lex_state = 56}, + [2579] = {.lex_state = 455, .external_lex_state = 25}, + [2580] = {.lex_state = 437, .external_lex_state = 44}, + [2581] = {.lex_state = 429, .external_lex_state = 59}, + [2582] = {.lex_state = 429, .external_lex_state = 44}, + [2583] = {.lex_state = 429, .external_lex_state = 59}, + [2584] = {.lex_state = 429, .external_lex_state = 59}, + [2585] = {.lex_state = 455, .external_lex_state = 25}, + [2586] = {.lex_state = 437, .external_lex_state = 44}, + [2587] = {.lex_state = 437, .external_lex_state = 44}, + [2588] = {.lex_state = 437, .external_lex_state = 44}, + [2589] = {.lex_state = 437, .external_lex_state = 44}, + [2590] = {.lex_state = 461, .external_lex_state = 54}, + [2591] = {.lex_state = 461, .external_lex_state = 54}, + [2592] = {.lex_state = 465, .external_lex_state = 56}, + [2593] = {.lex_state = 429, .external_lex_state = 59}, + [2594] = {.lex_state = 429, .external_lex_state = 60}, + [2595] = {.lex_state = 429, .external_lex_state = 60}, + [2596] = {.lex_state = 437, .external_lex_state = 44}, + [2597] = {.lex_state = 437, .external_lex_state = 44}, + [2598] = {.lex_state = 437, .external_lex_state = 44}, + [2599] = {.lex_state = 465, .external_lex_state = 56}, + [2600] = {.lex_state = 437, .external_lex_state = 44}, + [2601] = {.lex_state = 437, .external_lex_state = 44}, + [2602] = {.lex_state = 427, .external_lex_state = 40}, + [2603] = {.lex_state = 437, .external_lex_state = 44}, + [2604] = {.lex_state = 427, .external_lex_state = 40}, + [2605] = {.lex_state = 437, .external_lex_state = 44}, + [2606] = {.lex_state = 427, .external_lex_state = 40}, + [2607] = {.lex_state = 429, .external_lex_state = 60}, + [2608] = {.lex_state = 429, .external_lex_state = 60}, + [2609] = {.lex_state = 437, .external_lex_state = 44}, + [2610] = {.lex_state = 437, .external_lex_state = 44}, + [2611] = {.lex_state = 437, .external_lex_state = 44}, + [2612] = {.lex_state = 437, .external_lex_state = 44}, + [2613] = {.lex_state = 437, .external_lex_state = 44}, + [2614] = {.lex_state = 437, .external_lex_state = 44}, + [2615] = {.lex_state = 437, .external_lex_state = 44}, + [2616] = {.lex_state = 434, .external_lex_state = 61}, + [2617] = {.lex_state = 457, .external_lex_state = 58}, + [2618] = {.lex_state = 457, .external_lex_state = 58}, + [2619] = {.lex_state = 465, .external_lex_state = 58}, + [2620] = {.lex_state = 465, .external_lex_state = 58}, + [2621] = {.lex_state = 429, .external_lex_state = 46}, + [2622] = {.lex_state = 465, .external_lex_state = 56}, + [2623] = {.lex_state = 465, .external_lex_state = 56}, + [2624] = {.lex_state = 465, .external_lex_state = 58}, + [2625] = {.lex_state = 427, .external_lex_state = 40}, + [2626] = {.lex_state = 455, .external_lex_state = 25}, + [2627] = {.lex_state = 455, .external_lex_state = 25}, + [2628] = {.lex_state = 465, .external_lex_state = 56}, [2629] = {.lex_state = 429, .external_lex_state = 61}, - [2630] = {.lex_state = 458, .external_lex_state = 32}, + [2630] = {.lex_state = 461, .external_lex_state = 54}, [2631] = {.lex_state = 429, .external_lex_state = 61}, - [2632] = {.lex_state = 454, .external_lex_state = 26}, - [2633] = {.lex_state = 454, .external_lex_state = 26}, - [2634] = {.lex_state = 454, .external_lex_state = 26}, - [2635] = {.lex_state = 429, .external_lex_state = 44}, - [2636] = {.lex_state = 429, .external_lex_state = 44}, - [2637] = {.lex_state = 429, .external_lex_state = 44}, - [2638] = {.lex_state = 429, .external_lex_state = 44}, - [2639] = {.lex_state = 429, .external_lex_state = 44}, - [2640] = {.lex_state = 429, .external_lex_state = 44}, - [2641] = {.lex_state = 429, .external_lex_state = 44}, - [2642] = {.lex_state = 429, .external_lex_state = 44}, - [2643] = {.lex_state = 429, .external_lex_state = 44}, - [2644] = {.lex_state = 429, .external_lex_state = 44}, - [2645] = {.lex_state = 429, .external_lex_state = 44}, - [2646] = {.lex_state = 429, .external_lex_state = 44}, - [2647] = {.lex_state = 429, .external_lex_state = 44}, - [2648] = {.lex_state = 429, .external_lex_state = 44}, - [2649] = {.lex_state = 429, .external_lex_state = 44}, - [2650] = {.lex_state = 429, .external_lex_state = 44}, - [2651] = {.lex_state = 429, .external_lex_state = 44}, - [2652] = {.lex_state = 202, .external_lex_state = 64}, - [2653] = {.lex_state = 202, .external_lex_state = 64}, - [2654] = {.lex_state = 462, .external_lex_state = 59}, - [2655] = {.lex_state = 462, .external_lex_state = 59}, + [2632] = {.lex_state = 461, .external_lex_state = 54}, + [2633] = {.lex_state = 429, .external_lex_state = 61}, + [2634] = {.lex_state = 461, .external_lex_state = 54}, + [2635] = {.lex_state = 429, .external_lex_state = 61}, + [2636] = {.lex_state = 461, .external_lex_state = 54}, + [2637] = {.lex_state = 429, .external_lex_state = 61}, + [2638] = {.lex_state = 429, .external_lex_state = 61}, + [2639] = {.lex_state = 461, .external_lex_state = 54}, + [2640] = {.lex_state = 429, .external_lex_state = 61}, + [2641] = {.lex_state = 429, .external_lex_state = 61}, + [2642] = {.lex_state = 429, .external_lex_state = 61}, + [2643] = {.lex_state = 461, .external_lex_state = 54}, + [2644] = {.lex_state = 429, .external_lex_state = 61}, + [2645] = {.lex_state = 429, .external_lex_state = 61}, + [2646] = {.lex_state = 461, .external_lex_state = 54}, + [2647] = {.lex_state = 429, .external_lex_state = 61}, + [2648] = {.lex_state = 461, .external_lex_state = 54}, + [2649] = {.lex_state = 429, .external_lex_state = 61}, + [2650] = {.lex_state = 461, .external_lex_state = 54}, + [2651] = {.lex_state = 429, .external_lex_state = 61}, + [2652] = {.lex_state = 461, .external_lex_state = 54}, + [2653] = {.lex_state = 429, .external_lex_state = 61}, + [2654] = {.lex_state = 461, .external_lex_state = 54}, + [2655] = {.lex_state = 429, .external_lex_state = 61}, [2656] = {.lex_state = 429, .external_lex_state = 61}, - [2657] = {.lex_state = 429, .external_lex_state = 44}, - [2658] = {.lex_state = 429, .external_lex_state = 46}, + [2657] = {.lex_state = 429, .external_lex_state = 61}, + [2658] = {.lex_state = 429, .external_lex_state = 61}, [2659] = {.lex_state = 429, .external_lex_state = 61}, - [2660] = {.lex_state = 429, .external_lex_state = 44}, - [2661] = {.lex_state = 458, .external_lex_state = 29}, - [2662] = {.lex_state = 461, .external_lex_state = 57}, - [2663] = {.lex_state = 429, .external_lex_state = 44}, - [2664] = {.lex_state = 429, .external_lex_state = 61}, - [2665] = {.lex_state = 458, .external_lex_state = 29}, - [2666] = {.lex_state = 458, .external_lex_state = 29}, + [2660] = {.lex_state = 429, .external_lex_state = 61}, + [2661] = {.lex_state = 429, .external_lex_state = 61}, + [2662] = {.lex_state = 461, .external_lex_state = 54}, + [2663] = {.lex_state = 429, .external_lex_state = 61}, + [2664] = {.lex_state = 461, .external_lex_state = 54}, + [2665] = {.lex_state = 429, .external_lex_state = 61}, + [2666] = {.lex_state = 461, .external_lex_state = 54}, [2667] = {.lex_state = 429, .external_lex_state = 61}, - [2668] = {.lex_state = 429, .external_lex_state = 44}, + [2668] = {.lex_state = 461, .external_lex_state = 54}, [2669] = {.lex_state = 429, .external_lex_state = 61}, - [2670] = {.lex_state = 429, .external_lex_state = 44}, + [2670] = {.lex_state = 429, .external_lex_state = 61}, [2671] = {.lex_state = 429, .external_lex_state = 61}, [2672] = {.lex_state = 429, .external_lex_state = 61}, [2673] = {.lex_state = 429, .external_lex_state = 61}, [2674] = {.lex_state = 429, .external_lex_state = 61}, - [2675] = {.lex_state = 429, .external_lex_state = 61}, + [2675] = {.lex_state = 465, .external_lex_state = 58}, [2676] = {.lex_state = 429, .external_lex_state = 61}, - [2677] = {.lex_state = 458, .external_lex_state = 29}, + [2677] = {.lex_state = 454, .external_lex_state = 27}, [2678] = {.lex_state = 429, .external_lex_state = 61}, - [2679] = {.lex_state = 429, .external_lex_state = 61}, + [2679] = {.lex_state = 462, .external_lex_state = 58}, [2680] = {.lex_state = 429, .external_lex_state = 61}, - [2681] = {.lex_state = 429, .external_lex_state = 61}, + [2681] = {.lex_state = 462, .external_lex_state = 58}, [2682] = {.lex_state = 429, .external_lex_state = 61}, [2683] = {.lex_state = 429, .external_lex_state = 61}, [2684] = {.lex_state = 429, .external_lex_state = 61}, - [2685] = {.lex_state = 429, .external_lex_state = 61}, - [2686] = {.lex_state = 458, .external_lex_state = 29}, + [2685] = {.lex_state = 462, .external_lex_state = 58}, + [2686] = {.lex_state = 429, .external_lex_state = 61}, [2687] = {.lex_state = 429, .external_lex_state = 61}, [2688] = {.lex_state = 429, .external_lex_state = 61}, [2689] = {.lex_state = 429, .external_lex_state = 61}, - [2690] = {.lex_state = 429, .external_lex_state = 61}, + [2690] = {.lex_state = 461, .external_lex_state = 54}, [2691] = {.lex_state = 429, .external_lex_state = 61}, [2692] = {.lex_state = 429, .external_lex_state = 61}, [2693] = {.lex_state = 429, .external_lex_state = 61}, - [2694] = {.lex_state = 429, .external_lex_state = 61}, + [2694] = {.lex_state = 465, .external_lex_state = 58}, [2695] = {.lex_state = 429, .external_lex_state = 61}, [2696] = {.lex_state = 429, .external_lex_state = 61}, [2697] = {.lex_state = 429, .external_lex_state = 61}, [2698] = {.lex_state = 429, .external_lex_state = 61}, - [2699] = {.lex_state = 429, .external_lex_state = 61}, + [2699] = {.lex_state = 462, .external_lex_state = 58}, [2700] = {.lex_state = 429, .external_lex_state = 61}, [2701] = {.lex_state = 429, .external_lex_state = 61}, [2702] = {.lex_state = 429, .external_lex_state = 61}, [2703] = {.lex_state = 429, .external_lex_state = 61}, - [2704] = {.lex_state = 429, .external_lex_state = 61}, + [2704] = {.lex_state = 465, .external_lex_state = 58}, [2705] = {.lex_state = 429, .external_lex_state = 61}, - [2706] = {.lex_state = 429, .external_lex_state = 61}, + [2706] = {.lex_state = 457, .external_lex_state = 58}, [2707] = {.lex_state = 429, .external_lex_state = 61}, - [2708] = {.lex_state = 429, .external_lex_state = 61}, + [2708] = {.lex_state = 457, .external_lex_state = 58}, [2709] = {.lex_state = 429, .external_lex_state = 61}, [2710] = {.lex_state = 429, .external_lex_state = 61}, [2711] = {.lex_state = 429, .external_lex_state = 61}, [2712] = {.lex_state = 429, .external_lex_state = 61}, - [2713] = {.lex_state = 429, .external_lex_state = 61}, + [2713] = {.lex_state = 457, .external_lex_state = 58}, [2714] = {.lex_state = 429, .external_lex_state = 61}, - [2715] = {.lex_state = 429, .external_lex_state = 61}, + [2715] = {.lex_state = 457, .external_lex_state = 58}, [2716] = {.lex_state = 429, .external_lex_state = 61}, - [2717] = {.lex_state = 429, .external_lex_state = 61}, + [2717] = {.lex_state = 457, .external_lex_state = 58}, [2718] = {.lex_state = 429, .external_lex_state = 61}, [2719] = {.lex_state = 429, .external_lex_state = 61}, [2720] = {.lex_state = 429, .external_lex_state = 61}, [2721] = {.lex_state = 429, .external_lex_state = 61}, [2722] = {.lex_state = 429, .external_lex_state = 61}, - [2723] = {.lex_state = 429, .external_lex_state = 61}, + [2723] = {.lex_state = 461, .external_lex_state = 54}, [2724] = {.lex_state = 429, .external_lex_state = 61}, - [2725] = {.lex_state = 429, .external_lex_state = 61}, - [2726] = {.lex_state = 429, .external_lex_state = 61}, - [2727] = {.lex_state = 429, .external_lex_state = 61}, - [2728] = {.lex_state = 429, .external_lex_state = 61}, - [2729] = {.lex_state = 429, .external_lex_state = 61}, - [2730] = {.lex_state = 429, .external_lex_state = 61}, - [2731] = {.lex_state = 429, .external_lex_state = 61}, - [2732] = {.lex_state = 429, .external_lex_state = 61}, + [2725] = {.lex_state = 457, .external_lex_state = 58}, + [2726] = {.lex_state = 457, .external_lex_state = 58}, + [2727] = {.lex_state = 458, .external_lex_state = 29}, + [2728] = {.lex_state = 454, .external_lex_state = 27}, + [2729] = {.lex_state = 465, .external_lex_state = 58}, + [2730] = {.lex_state = 465, .external_lex_state = 58}, + [2731] = {.lex_state = 458, .external_lex_state = 29}, + [2732] = {.lex_state = 429, .external_lex_state = 44}, [2733] = {.lex_state = 429, .external_lex_state = 61}, [2734] = {.lex_state = 429, .external_lex_state = 61}, [2735] = {.lex_state = 429, .external_lex_state = 61}, - [2736] = {.lex_state = 465, .external_lex_state = 59}, - [2737] = {.lex_state = 464, .external_lex_state = 26}, + [2736] = {.lex_state = 429, .external_lex_state = 62}, + [2737] = {.lex_state = 429, .external_lex_state = 61}, [2738] = {.lex_state = 429, .external_lex_state = 61}, - [2739] = {.lex_state = 465, .external_lex_state = 59}, - [2740] = {.lex_state = 465, .external_lex_state = 59}, - [2741] = {.lex_state = 429, .external_lex_state = 61}, - [2742] = {.lex_state = 429, .external_lex_state = 61}, - [2743] = {.lex_state = 465, .external_lex_state = 59}, - [2744] = {.lex_state = 465, .external_lex_state = 59}, - [2745] = {.lex_state = 429, .external_lex_state = 61}, - [2746] = {.lex_state = 429, .external_lex_state = 61}, - [2747] = {.lex_state = 465, .external_lex_state = 59}, - [2748] = {.lex_state = 465, .external_lex_state = 59}, - [2749] = {.lex_state = 429, .external_lex_state = 44}, - [2750] = {.lex_state = 429, .external_lex_state = 44}, - [2751] = {.lex_state = 429, .external_lex_state = 61}, - [2752] = {.lex_state = 429, .external_lex_state = 61}, - [2753] = {.lex_state = 465, .external_lex_state = 59}, - [2754] = {.lex_state = 465, .external_lex_state = 59}, - [2755] = {.lex_state = 465, .external_lex_state = 59}, - [2756] = {.lex_state = 465, .external_lex_state = 59}, - [2757] = {.lex_state = 465, .external_lex_state = 59}, - [2758] = {.lex_state = 465, .external_lex_state = 59}, - [2759] = {.lex_state = 465, .external_lex_state = 59}, - [2760] = {.lex_state = 465, .external_lex_state = 59}, - [2761] = {.lex_state = 465, .external_lex_state = 59}, - [2762] = {.lex_state = 465, .external_lex_state = 59}, - [2763] = {.lex_state = 465, .external_lex_state = 59}, - [2764] = {.lex_state = 465, .external_lex_state = 59}, - [2765] = {.lex_state = 429, .external_lex_state = 61}, + [2739] = {.lex_state = 429, .external_lex_state = 62}, + [2740] = {.lex_state = 429, .external_lex_state = 61}, + [2741] = {.lex_state = 429, .external_lex_state = 62}, + [2742] = {.lex_state = 429, .external_lex_state = 62}, + [2743] = {.lex_state = 429, .external_lex_state = 61}, + [2744] = {.lex_state = 458, .external_lex_state = 29}, + [2745] = {.lex_state = 429, .external_lex_state = 62}, + [2746] = {.lex_state = 429, .external_lex_state = 44}, + [2747] = {.lex_state = 464, .external_lex_state = 27}, + [2748] = {.lex_state = 465, .external_lex_state = 58}, + [2749] = {.lex_state = 458, .external_lex_state = 29}, + [2750] = {.lex_state = 465, .external_lex_state = 58}, + [2751] = {.lex_state = 465, .external_lex_state = 58}, + [2752] = {.lex_state = 429, .external_lex_state = 44}, + [2753] = {.lex_state = 429, .external_lex_state = 61}, + [2754] = {.lex_state = 429, .external_lex_state = 62}, + [2755] = {.lex_state = 429, .external_lex_state = 61}, + [2756] = {.lex_state = 429, .external_lex_state = 62}, + [2757] = {.lex_state = 429, .external_lex_state = 44}, + [2758] = {.lex_state = 429, .external_lex_state = 44}, + [2759] = {.lex_state = 429, .external_lex_state = 44}, + [2760] = {.lex_state = 465, .external_lex_state = 58}, + [2761] = {.lex_state = 457, .external_lex_state = 58}, + [2762] = {.lex_state = 465, .external_lex_state = 58}, + [2763] = {.lex_state = 457, .external_lex_state = 58}, + [2764] = {.lex_state = 465, .external_lex_state = 58}, + [2765] = {.lex_state = 465, .external_lex_state = 58}, [2766] = {.lex_state = 429, .external_lex_state = 61}, - [2767] = {.lex_state = 429, .external_lex_state = 61}, - [2768] = {.lex_state = 429, .external_lex_state = 61}, - [2769] = {.lex_state = 429, .external_lex_state = 61}, - [2770] = {.lex_state = 429, .external_lex_state = 61}, - [2771] = {.lex_state = 429, .external_lex_state = 61}, - [2772] = {.lex_state = 429, .external_lex_state = 61}, - [2773] = {.lex_state = 429, .external_lex_state = 61}, - [2774] = {.lex_state = 429, .external_lex_state = 61}, - [2775] = {.lex_state = 429, .external_lex_state = 61}, + [2767] = {.lex_state = 464, .external_lex_state = 27}, + [2768] = {.lex_state = 465, .external_lex_state = 58}, + [2769] = {.lex_state = 465, .external_lex_state = 58}, + [2770] = {.lex_state = 457, .external_lex_state = 58}, + [2771] = {.lex_state = 457, .external_lex_state = 58}, + [2772] = {.lex_state = 454, .external_lex_state = 27}, + [2773] = {.lex_state = 454, .external_lex_state = 27}, + [2774] = {.lex_state = 458, .external_lex_state = 29}, + [2775] = {.lex_state = 465, .external_lex_state = 58}, [2776] = {.lex_state = 429, .external_lex_state = 61}, - [2777] = {.lex_state = 461, .external_lex_state = 57}, - [2778] = {.lex_state = 429, .external_lex_state = 61}, - [2779] = {.lex_state = 461, .external_lex_state = 57}, - [2780] = {.lex_state = 461, .external_lex_state = 57}, - [2781] = {.lex_state = 461, .external_lex_state = 57}, - [2782] = {.lex_state = 461, .external_lex_state = 57}, + [2777] = {.lex_state = 429, .external_lex_state = 44}, + [2778] = {.lex_state = 465, .external_lex_state = 58}, + [2779] = {.lex_state = 465, .external_lex_state = 58}, + [2780] = {.lex_state = 429, .external_lex_state = 61}, + [2781] = {.lex_state = 427, .external_lex_state = 40}, + [2782] = {.lex_state = 429, .external_lex_state = 61}, [2783] = {.lex_state = 429, .external_lex_state = 61}, [2784] = {.lex_state = 429, .external_lex_state = 61}, [2785] = {.lex_state = 429, .external_lex_state = 61}, - [2786] = {.lex_state = 454, .external_lex_state = 26}, - [2787] = {.lex_state = 461, .external_lex_state = 57}, - [2788] = {.lex_state = 461, .external_lex_state = 57}, + [2786] = {.lex_state = 429, .external_lex_state = 61}, + [2787] = {.lex_state = 429, .external_lex_state = 61}, + [2788] = {.lex_state = 429, .external_lex_state = 44}, [2789] = {.lex_state = 429, .external_lex_state = 61}, - [2790] = {.lex_state = 429, .external_lex_state = 44}, - [2791] = {.lex_state = 429, .external_lex_state = 61}, - [2792] = {.lex_state = 427, .external_lex_state = 39}, - [2793] = {.lex_state = 458, .external_lex_state = 32}, - [2794] = {.lex_state = 461, .external_lex_state = 57}, - [2795] = {.lex_state = 461, .external_lex_state = 57}, - [2796] = {.lex_state = 461, .external_lex_state = 57}, - [2797] = {.lex_state = 461, .external_lex_state = 57}, - [2798] = {.lex_state = 461, .external_lex_state = 57}, - [2799] = {.lex_state = 461, .external_lex_state = 57}, - [2800] = {.lex_state = 461, .external_lex_state = 57}, - [2801] = {.lex_state = 461, .external_lex_state = 57}, - [2802] = {.lex_state = 461, .external_lex_state = 57}, - [2803] = {.lex_state = 429, .external_lex_state = 61}, - [2804] = {.lex_state = 427, .external_lex_state = 39}, - [2805] = {.lex_state = 429, .external_lex_state = 46}, - [2806] = {.lex_state = 427, .external_lex_state = 39}, - [2807] = {.lex_state = 92, .external_lex_state = 63}, - [2808] = {.lex_state = 462, .external_lex_state = 59}, - [2809] = {.lex_state = 429, .external_lex_state = 61}, - [2810] = {.lex_state = 429, .external_lex_state = 61}, - [2811] = {.lex_state = 429, .external_lex_state = 46}, - [2812] = {.lex_state = 427, .external_lex_state = 39}, - [2813] = {.lex_state = 462, .external_lex_state = 59}, - [2814] = {.lex_state = 462, .external_lex_state = 59}, - [2815] = {.lex_state = 429, .external_lex_state = 46}, - [2816] = {.lex_state = 429, .external_lex_state = 61}, - [2817] = {.lex_state = 429, .external_lex_state = 61}, - [2818] = {.lex_state = 429, .external_lex_state = 46}, - [2819] = {.lex_state = 427, .external_lex_state = 39}, - [2820] = {.lex_state = 92, .external_lex_state = 63}, - [2821] = {.lex_state = 429, .external_lex_state = 61}, - [2822] = {.lex_state = 434, .external_lex_state = 65}, - [2823] = {.lex_state = 429, .external_lex_state = 61}, - [2824] = {.lex_state = 429, .external_lex_state = 46}, - [2825] = {.lex_state = 427, .external_lex_state = 39}, - [2826] = {.lex_state = 92, .external_lex_state = 63}, - [2827] = {.lex_state = 429, .external_lex_state = 61}, - [2828] = {.lex_state = 429, .external_lex_state = 61}, - [2829] = {.lex_state = 92, .external_lex_state = 63}, - [2830] = {.lex_state = 429, .external_lex_state = 61}, - [2831] = {.lex_state = 464, .external_lex_state = 33}, - [2832] = {.lex_state = 462, .external_lex_state = 59}, - [2833] = {.lex_state = 454, .external_lex_state = 26}, - [2834] = {.lex_state = 462, .external_lex_state = 59}, - [2835] = {.lex_state = 92, .external_lex_state = 63}, - [2836] = {.lex_state = 92, .external_lex_state = 63}, - [2837] = {.lex_state = 92, .external_lex_state = 63}, - [2838] = {.lex_state = 92, .external_lex_state = 63}, - [2839] = {.lex_state = 464, .external_lex_state = 26}, - [2840] = {.lex_state = 427, .external_lex_state = 39}, - [2841] = {.lex_state = 464, .external_lex_state = 26}, - [2842] = {.lex_state = 429, .external_lex_state = 46}, - [2843] = {.lex_state = 429, .external_lex_state = 46}, - [2844] = {.lex_state = 429, .external_lex_state = 46}, - [2845] = {.lex_state = 429, .external_lex_state = 46}, - [2846] = {.lex_state = 462, .external_lex_state = 59}, - [2847] = {.lex_state = 429, .external_lex_state = 46}, - [2848] = {.lex_state = 462, .external_lex_state = 59}, - [2849] = {.lex_state = 462, .external_lex_state = 59}, - [2850] = {.lex_state = 454, .external_lex_state = 33}, - [2851] = {.lex_state = 427, .external_lex_state = 39}, - [2852] = {.lex_state = 454, .external_lex_state = 26}, - [2853] = {.lex_state = 429, .external_lex_state = 46}, - [2854] = {.lex_state = 427, .external_lex_state = 39}, - [2855] = {.lex_state = 429, .external_lex_state = 46}, - [2856] = {.lex_state = 462, .external_lex_state = 59}, - [2857] = {.lex_state = 427, .external_lex_state = 39}, - [2858] = {.lex_state = 435, .external_lex_state = 61}, - [2859] = {.lex_state = 463, .external_lex_state = 32}, - [2860] = {.lex_state = 462, .external_lex_state = 59}, - [2861] = {.lex_state = 427, .external_lex_state = 39}, - [2862] = {.lex_state = 429, .external_lex_state = 46}, - [2863] = {.lex_state = 429, .external_lex_state = 61}, - [2864] = {.lex_state = 462, .external_lex_state = 59}, - [2865] = {.lex_state = 462, .external_lex_state = 59}, - [2866] = {.lex_state = 92, .external_lex_state = 63}, - [2867] = {.lex_state = 427, .external_lex_state = 39}, - [2868] = {.lex_state = 429, .external_lex_state = 46}, - [2869] = {.lex_state = 462, .external_lex_state = 59}, - [2870] = {.lex_state = 427, .external_lex_state = 39}, - [2871] = {.lex_state = 454, .external_lex_state = 26}, - [2872] = {.lex_state = 429, .external_lex_state = 46}, + [2790] = {.lex_state = 429, .external_lex_state = 61}, + [2791] = {.lex_state = 457, .external_lex_state = 58}, + [2792] = {.lex_state = 465, .external_lex_state = 58}, + [2793] = {.lex_state = 458, .external_lex_state = 31}, + [2794] = {.lex_state = 457, .external_lex_state = 58}, + [2795] = {.lex_state = 457, .external_lex_state = 58}, + [2796] = {.lex_state = 454, .external_lex_state = 27}, + [2797] = {.lex_state = 457, .external_lex_state = 58}, + [2798] = {.lex_state = 454, .external_lex_state = 27}, + [2799] = {.lex_state = 429, .external_lex_state = 61}, + [2800] = {.lex_state = 429, .external_lex_state = 61}, + [2801] = {.lex_state = 429, .external_lex_state = 61}, + [2802] = {.lex_state = 457, .external_lex_state = 58}, + [2803] = {.lex_state = 429, .external_lex_state = 44}, + [2804] = {.lex_state = 454, .external_lex_state = 27}, + [2805] = {.lex_state = 429, .external_lex_state = 61}, + [2806] = {.lex_state = 429, .external_lex_state = 61}, + [2807] = {.lex_state = 429, .external_lex_state = 44}, + [2808] = {.lex_state = 429, .external_lex_state = 61}, + [2809] = {.lex_state = 429, .external_lex_state = 44}, + [2810] = {.lex_state = 457, .external_lex_state = 58}, + [2811] = {.lex_state = 429, .external_lex_state = 62}, + [2812] = {.lex_state = 457, .external_lex_state = 58}, + [2813] = {.lex_state = 429, .external_lex_state = 61}, + [2814] = {.lex_state = 429, .external_lex_state = 61}, + [2815] = {.lex_state = 457, .external_lex_state = 58}, + [2816] = {.lex_state = 458, .external_lex_state = 29}, + [2817] = {.lex_state = 458, .external_lex_state = 29}, + [2818] = {.lex_state = 429, .external_lex_state = 61}, + [2819] = {.lex_state = 429, .external_lex_state = 61}, + [2820] = {.lex_state = 462, .external_lex_state = 58}, + [2821] = {.lex_state = 462, .external_lex_state = 58}, + [2822] = {.lex_state = 429, .external_lex_state = 44}, + [2823] = {.lex_state = 429, .external_lex_state = 44}, + [2824] = {.lex_state = 429, .external_lex_state = 44}, + [2825] = {.lex_state = 429, .external_lex_state = 44}, + [2826] = {.lex_state = 429, .external_lex_state = 44}, + [2827] = {.lex_state = 429, .external_lex_state = 44}, + [2828] = {.lex_state = 429, .external_lex_state = 44}, + [2829] = {.lex_state = 429, .external_lex_state = 44}, + [2830] = {.lex_state = 429, .external_lex_state = 44}, + [2831] = {.lex_state = 429, .external_lex_state = 44}, + [2832] = {.lex_state = 429, .external_lex_state = 44}, + [2833] = {.lex_state = 429, .external_lex_state = 44}, + [2834] = {.lex_state = 461, .external_lex_state = 54}, + [2835] = {.lex_state = 429, .external_lex_state = 44}, + [2836] = {.lex_state = 458, .external_lex_state = 31}, + [2837] = {.lex_state = 464, .external_lex_state = 27}, + [2838] = {.lex_state = 429, .external_lex_state = 44}, + [2839] = {.lex_state = 429, .external_lex_state = 46}, + [2840] = {.lex_state = 465, .external_lex_state = 58}, + [2841] = {.lex_state = 429, .external_lex_state = 44}, + [2842] = {.lex_state = 202, .external_lex_state = 63}, + [2843] = {.lex_state = 202, .external_lex_state = 63}, + [2844] = {.lex_state = 429, .external_lex_state = 44}, + [2845] = {.lex_state = 429, .external_lex_state = 44}, + [2846] = {.lex_state = 429, .external_lex_state = 61}, + [2847] = {.lex_state = 429, .external_lex_state = 61}, + [2848] = {.lex_state = 461, .external_lex_state = 54}, + [2849] = {.lex_state = 94, .external_lex_state = 64}, + [2850] = {.lex_state = 429, .external_lex_state = 61}, + [2851] = {.lex_state = 429, .external_lex_state = 61}, + [2852] = {.lex_state = 429, .external_lex_state = 61}, + [2853] = {.lex_state = 429, .external_lex_state = 44}, + [2854] = {.lex_state = 429, .external_lex_state = 44}, + [2855] = {.lex_state = 429, .external_lex_state = 61}, + [2856] = {.lex_state = 429, .external_lex_state = 61}, + [2857] = {.lex_state = 429, .external_lex_state = 61}, + [2858] = {.lex_state = 429, .external_lex_state = 44}, + [2859] = {.lex_state = 429, .external_lex_state = 62}, + [2860] = {.lex_state = 429, .external_lex_state = 61}, + [2861] = {.lex_state = 429, .external_lex_state = 46}, + [2862] = {.lex_state = 427, .external_lex_state = 40}, + [2863] = {.lex_state = 427, .external_lex_state = 40}, + [2864] = {.lex_state = 94, .external_lex_state = 64}, + [2865] = {.lex_state = 429, .external_lex_state = 65}, + [2866] = {.lex_state = 462, .external_lex_state = 58}, + [2867] = {.lex_state = 462, .external_lex_state = 58}, + [2868] = {.lex_state = 427, .external_lex_state = 40}, + [2869] = {.lex_state = 427, .external_lex_state = 40}, + [2870] = {.lex_state = 462, .external_lex_state = 58}, + [2871] = {.lex_state = 429, .external_lex_state = 46}, + [2872] = {.lex_state = 462, .external_lex_state = 58}, [2873] = {.lex_state = 429, .external_lex_state = 46}, - [2874] = {.lex_state = 454, .external_lex_state = 26}, - [2875] = {.lex_state = 427, .external_lex_state = 39}, - [2876] = {.lex_state = 454, .external_lex_state = 26}, - [2877] = {.lex_state = 429, .external_lex_state = 66}, - [2878] = {.lex_state = 429, .external_lex_state = 66}, - [2879] = {.lex_state = 92, .external_lex_state = 63}, + [2874] = {.lex_state = 427, .external_lex_state = 40}, + [2875] = {.lex_state = 429, .external_lex_state = 61}, + [2876] = {.lex_state = 454, .external_lex_state = 27}, + [2877] = {.lex_state = 429, .external_lex_state = 46}, + [2878] = {.lex_state = 427, .external_lex_state = 40}, + [2879] = {.lex_state = 427, .external_lex_state = 40}, [2880] = {.lex_state = 429, .external_lex_state = 46}, - [2881] = {.lex_state = 92, .external_lex_state = 63}, - [2882] = {.lex_state = 92, .external_lex_state = 63}, - [2883] = {.lex_state = 427, .external_lex_state = 39}, - [2884] = {.lex_state = 427, .external_lex_state = 39}, - [2885] = {.lex_state = 427, .external_lex_state = 39}, - [2886] = {.lex_state = 427, .external_lex_state = 39}, - [2887] = {.lex_state = 427, .external_lex_state = 39}, - [2888] = {.lex_state = 92, .external_lex_state = 63}, - [2889] = {.lex_state = 429, .external_lex_state = 61}, - [2890] = {.lex_state = 462, .external_lex_state = 59}, - [2891] = {.lex_state = 462, .external_lex_state = 59}, - [2892] = {.lex_state = 462, .external_lex_state = 59}, - [2893] = {.lex_state = 462, .external_lex_state = 59}, - [2894] = {.lex_state = 429, .external_lex_state = 46}, - [2895] = {.lex_state = 427, .external_lex_state = 39}, - [2896] = {.lex_state = 234, .external_lex_state = 64}, - [2897] = {.lex_state = 234, .external_lex_state = 64}, - [2898] = {.lex_state = 464, .external_lex_state = 26}, - [2899] = {.lex_state = 92, .external_lex_state = 63}, - [2900] = {.lex_state = 429, .external_lex_state = 46}, - [2901] = {.lex_state = 464, .external_lex_state = 26}, - [2902] = {.lex_state = 92, .external_lex_state = 63}, - [2903] = {.lex_state = 427, .external_lex_state = 39}, - [2904] = {.lex_state = 427, .external_lex_state = 39}, - [2905] = {.lex_state = 92, .external_lex_state = 63}, - [2906] = {.lex_state = 92, .external_lex_state = 63}, - [2907] = {.lex_state = 92, .external_lex_state = 63}, - [2908] = {.lex_state = 433, .external_lex_state = 61}, - [2909] = {.lex_state = 427, .external_lex_state = 39}, - [2910] = {.lex_state = 427, .external_lex_state = 39}, - [2911] = {.lex_state = 427, .external_lex_state = 39}, - [2912] = {.lex_state = 427, .external_lex_state = 39}, - [2913] = {.lex_state = 427, .external_lex_state = 39}, - [2914] = {.lex_state = 427, .external_lex_state = 39}, - [2915] = {.lex_state = 427, .external_lex_state = 39}, - [2916] = {.lex_state = 427, .external_lex_state = 39}, - [2917] = {.lex_state = 427, .external_lex_state = 39}, - [2918] = {.lex_state = 427, .external_lex_state = 39}, - [2919] = {.lex_state = 92, .external_lex_state = 63}, - [2920] = {.lex_state = 429, .external_lex_state = 46}, - [2921] = {.lex_state = 464, .external_lex_state = 33}, - [2922] = {.lex_state = 427, .external_lex_state = 39}, - [2923] = {.lex_state = 427, .external_lex_state = 39}, - [2924] = {.lex_state = 92, .external_lex_state = 63}, - [2925] = {.lex_state = 92, .external_lex_state = 63}, - [2926] = {.lex_state = 92, .external_lex_state = 63}, - [2927] = {.lex_state = 454, .external_lex_state = 26}, - [2928] = {.lex_state = 429, .external_lex_state = 66}, - [2929] = {.lex_state = 454, .external_lex_state = 26}, - [2930] = {.lex_state = 454, .external_lex_state = 26}, - [2931] = {.lex_state = 92, .external_lex_state = 63}, - [2932] = {.lex_state = 92, .external_lex_state = 63}, - [2933] = {.lex_state = 429, .external_lex_state = 66}, - [2934] = {.lex_state = 92, .external_lex_state = 63}, - [2935] = {.lex_state = 430, .external_lex_state = 61}, - [2936] = {.lex_state = 234, .external_lex_state = 64}, - [2937] = {.lex_state = 234, .external_lex_state = 64}, - [2938] = {.lex_state = 427, .external_lex_state = 39}, - [2939] = {.lex_state = 427, .external_lex_state = 39}, - [2940] = {.lex_state = 237, .external_lex_state = 67}, - [2941] = {.lex_state = 237, .external_lex_state = 67}, - [2942] = {.lex_state = 429, .external_lex_state = 61}, - [2943] = {.lex_state = 429, .external_lex_state = 46}, - [2944] = {.lex_state = 427, .external_lex_state = 39}, - [2945] = {.lex_state = 454, .external_lex_state = 26}, - [2946] = {.lex_state = 429, .external_lex_state = 46}, - [2947] = {.lex_state = 429, .external_lex_state = 61}, - [2948] = {.lex_state = 427, .external_lex_state = 39}, - [2949] = {.lex_state = 92, .external_lex_state = 63}, - [2950] = {.lex_state = 92, .external_lex_state = 63}, - [2951] = {.lex_state = 427, .external_lex_state = 39}, - [2952] = {.lex_state = 427, .external_lex_state = 39}, - [2953] = {.lex_state = 92, .external_lex_state = 63}, - [2954] = {.lex_state = 427, .external_lex_state = 39}, - [2955] = {.lex_state = 427, .external_lex_state = 39}, - [2956] = {.lex_state = 427, .external_lex_state = 39}, - [2957] = {.lex_state = 427, .external_lex_state = 39}, - [2958] = {.lex_state = 427, .external_lex_state = 39}, - [2959] = {.lex_state = 427, .external_lex_state = 60}, - [2960] = {.lex_state = 427, .external_lex_state = 60}, - [2961] = {.lex_state = 427, .external_lex_state = 39}, - [2962] = {.lex_state = 427, .external_lex_state = 39}, - [2963] = {.lex_state = 427, .external_lex_state = 39}, - [2964] = {.lex_state = 427, .external_lex_state = 39}, - [2965] = {.lex_state = 427, .external_lex_state = 39}, - [2966] = {.lex_state = 427, .external_lex_state = 39}, - [2967] = {.lex_state = 427, .external_lex_state = 39}, - [2968] = {.lex_state = 427, .external_lex_state = 39}, - [2969] = {.lex_state = 427, .external_lex_state = 39}, - [2970] = {.lex_state = 427, .external_lex_state = 39}, - [2971] = {.lex_state = 427, .external_lex_state = 39}, - [2972] = {.lex_state = 427, .external_lex_state = 39}, - [2973] = {.lex_state = 427, .external_lex_state = 39}, - [2974] = {.lex_state = 427, .external_lex_state = 39}, - [2975] = {.lex_state = 454, .external_lex_state = 33}, - [2976] = {.lex_state = 427, .external_lex_state = 60}, - [2977] = {.lex_state = 427, .external_lex_state = 60}, - [2978] = {.lex_state = 92, .external_lex_state = 63}, - [2979] = {.lex_state = 427, .external_lex_state = 39}, - [2980] = {.lex_state = 429, .external_lex_state = 61}, - [2981] = {.lex_state = 429, .external_lex_state = 61}, - [2982] = {.lex_state = 429, .external_lex_state = 46}, - [2983] = {.lex_state = 427, .external_lex_state = 39}, - [2984] = {.lex_state = 92, .external_lex_state = 63}, - [2985] = {.lex_state = 92, .external_lex_state = 63}, + [2881] = {.lex_state = 462, .external_lex_state = 58}, + [2882] = {.lex_state = 427, .external_lex_state = 40}, + [2883] = {.lex_state = 427, .external_lex_state = 40}, + [2884] = {.lex_state = 427, .external_lex_state = 40}, + [2885] = {.lex_state = 427, .external_lex_state = 40}, + [2886] = {.lex_state = 427, .external_lex_state = 40}, + [2887] = {.lex_state = 427, .external_lex_state = 40}, + [2888] = {.lex_state = 427, .external_lex_state = 40}, + [2889] = {.lex_state = 427, .external_lex_state = 40}, + [2890] = {.lex_state = 435, .external_lex_state = 61}, + [2891] = {.lex_state = 427, .external_lex_state = 40}, + [2892] = {.lex_state = 462, .external_lex_state = 58}, + [2893] = {.lex_state = 427, .external_lex_state = 40}, + [2894] = {.lex_state = 462, .external_lex_state = 58}, + [2895] = {.lex_state = 429, .external_lex_state = 46}, + [2896] = {.lex_state = 427, .external_lex_state = 40}, + [2897] = {.lex_state = 454, .external_lex_state = 27}, + [2898] = {.lex_state = 429, .external_lex_state = 46}, + [2899] = {.lex_state = 429, .external_lex_state = 46}, + [2900] = {.lex_state = 463, .external_lex_state = 31}, + [2901] = {.lex_state = 427, .external_lex_state = 40}, + [2902] = {.lex_state = 427, .external_lex_state = 40}, + [2903] = {.lex_state = 427, .external_lex_state = 40}, + [2904] = {.lex_state = 429, .external_lex_state = 46}, + [2905] = {.lex_state = 429, .external_lex_state = 46}, + [2906] = {.lex_state = 429, .external_lex_state = 61}, + [2907] = {.lex_state = 434, .external_lex_state = 66}, + [2908] = {.lex_state = 429, .external_lex_state = 46}, + [2909] = {.lex_state = 427, .external_lex_state = 40}, + [2910] = {.lex_state = 429, .external_lex_state = 61}, + [2911] = {.lex_state = 429, .external_lex_state = 65}, + [2912] = {.lex_state = 94, .external_lex_state = 64}, + [2913] = {.lex_state = 94, .external_lex_state = 64}, + [2914] = {.lex_state = 94, .external_lex_state = 64}, + [2915] = {.lex_state = 429, .external_lex_state = 46}, + [2916] = {.lex_state = 462, .external_lex_state = 58}, + [2917] = {.lex_state = 454, .external_lex_state = 27}, + [2918] = {.lex_state = 429, .external_lex_state = 61}, + [2919] = {.lex_state = 427, .external_lex_state = 40}, + [2920] = {.lex_state = 429, .external_lex_state = 61}, + [2921] = {.lex_state = 429, .external_lex_state = 61}, + [2922] = {.lex_state = 454, .external_lex_state = 27}, + [2923] = {.lex_state = 462, .external_lex_state = 58}, + [2924] = {.lex_state = 462, .external_lex_state = 58}, + [2925] = {.lex_state = 454, .external_lex_state = 27}, + [2926] = {.lex_state = 429, .external_lex_state = 46}, + [2927] = {.lex_state = 427, .external_lex_state = 40}, + [2928] = {.lex_state = 427, .external_lex_state = 40}, + [2929] = {.lex_state = 427, .external_lex_state = 40}, + [2930] = {.lex_state = 427, .external_lex_state = 40}, + [2931] = {.lex_state = 427, .external_lex_state = 40}, + [2932] = {.lex_state = 429, .external_lex_state = 46}, + [2933] = {.lex_state = 427, .external_lex_state = 40}, + [2934] = {.lex_state = 427, .external_lex_state = 40}, + [2935] = {.lex_state = 427, .external_lex_state = 40}, + [2936] = {.lex_state = 427, .external_lex_state = 40}, + [2937] = {.lex_state = 429, .external_lex_state = 46}, + [2938] = {.lex_state = 427, .external_lex_state = 40}, + [2939] = {.lex_state = 427, .external_lex_state = 40}, + [2940] = {.lex_state = 427, .external_lex_state = 40}, + [2941] = {.lex_state = 427, .external_lex_state = 40}, + [2942] = {.lex_state = 427, .external_lex_state = 40}, + [2943] = {.lex_state = 427, .external_lex_state = 40}, + [2944] = {.lex_state = 464, .external_lex_state = 27}, + [2945] = {.lex_state = 94, .external_lex_state = 64}, + [2946] = {.lex_state = 429, .external_lex_state = 65}, + [2947] = {.lex_state = 462, .external_lex_state = 58}, + [2948] = {.lex_state = 427, .external_lex_state = 40}, + [2949] = {.lex_state = 427, .external_lex_state = 40}, + [2950] = {.lex_state = 427, .external_lex_state = 40}, + [2951] = {.lex_state = 429, .external_lex_state = 65}, + [2952] = {.lex_state = 454, .external_lex_state = 27}, + [2953] = {.lex_state = 429, .external_lex_state = 61}, + [2954] = {.lex_state = 429, .external_lex_state = 46}, + [2955] = {.lex_state = 234, .external_lex_state = 67}, + [2956] = {.lex_state = 94, .external_lex_state = 64}, + [2957] = {.lex_state = 94, .external_lex_state = 64}, + [2958] = {.lex_state = 94, .external_lex_state = 64}, + [2959] = {.lex_state = 429, .external_lex_state = 61}, + [2960] = {.lex_state = 464, .external_lex_state = 35}, + [2961] = {.lex_state = 429, .external_lex_state = 46}, + [2962] = {.lex_state = 94, .external_lex_state = 64}, + [2963] = {.lex_state = 429, .external_lex_state = 61}, + [2964] = {.lex_state = 462, .external_lex_state = 58}, + [2965] = {.lex_state = 429, .external_lex_state = 61}, + [2966] = {.lex_state = 462, .external_lex_state = 58}, + [2967] = {.lex_state = 429, .external_lex_state = 61}, + [2968] = {.lex_state = 94, .external_lex_state = 64}, + [2969] = {.lex_state = 429, .external_lex_state = 46}, + [2970] = {.lex_state = 427, .external_lex_state = 40}, + [2971] = {.lex_state = 94, .external_lex_state = 64}, + [2972] = {.lex_state = 94, .external_lex_state = 64}, + [2973] = {.lex_state = 462, .external_lex_state = 58}, + [2974] = {.lex_state = 94, .external_lex_state = 64}, + [2975] = {.lex_state = 429, .external_lex_state = 46}, + [2976] = {.lex_state = 429, .external_lex_state = 46}, + [2977] = {.lex_state = 94, .external_lex_state = 64}, + [2978] = {.lex_state = 94, .external_lex_state = 64}, + [2979] = {.lex_state = 429, .external_lex_state = 46}, + [2980] = {.lex_state = 427, .external_lex_state = 40}, + [2981] = {.lex_state = 429, .external_lex_state = 46}, + [2982] = {.lex_state = 427, .external_lex_state = 40}, + [2983] = {.lex_state = 454, .external_lex_state = 27}, + [2984] = {.lex_state = 454, .external_lex_state = 27}, + [2985] = {.lex_state = 433, .external_lex_state = 61}, [2986] = {.lex_state = 429, .external_lex_state = 61}, - [2987] = {.lex_state = 427, .external_lex_state = 39}, - [2988] = {.lex_state = 427, .external_lex_state = 39}, - [2989] = {.lex_state = 427, .external_lex_state = 39}, - [2990] = {.lex_state = 427, .external_lex_state = 39}, - [2991] = {.lex_state = 454, .external_lex_state = 26}, - [2992] = {.lex_state = 427, .external_lex_state = 39}, - [2993] = {.lex_state = 429, .external_lex_state = 61}, - [2994] = {.lex_state = 429, .external_lex_state = 46}, - [2995] = {.lex_state = 427, .external_lex_state = 39}, - [2996] = {.lex_state = 92, .external_lex_state = 63}, - [2997] = {.lex_state = 427, .external_lex_state = 39}, + [2987] = {.lex_state = 429, .external_lex_state = 46}, + [2988] = {.lex_state = 429, .external_lex_state = 46}, + [2989] = {.lex_state = 452, .external_lex_state = 32}, + [2990] = {.lex_state = 429, .external_lex_state = 46}, + [2991] = {.lex_state = 94, .external_lex_state = 64}, + [2992] = {.lex_state = 94, .external_lex_state = 64}, + [2993] = {.lex_state = 94, .external_lex_state = 64}, + [2994] = {.lex_state = 454, .external_lex_state = 27}, + [2995] = {.lex_state = 427, .external_lex_state = 40}, + [2996] = {.lex_state = 427, .external_lex_state = 40}, + [2997] = {.lex_state = 454, .external_lex_state = 35}, [2998] = {.lex_state = 429, .external_lex_state = 46}, - [2999] = {.lex_state = 463, .external_lex_state = 32}, - [3000] = {.lex_state = 429, .external_lex_state = 46}, + [2999] = {.lex_state = 462, .external_lex_state = 58}, + [3000] = {.lex_state = 462, .external_lex_state = 58}, [3001] = {.lex_state = 429, .external_lex_state = 46}, [3002] = {.lex_state = 429, .external_lex_state = 46}, [3003] = {.lex_state = 429, .external_lex_state = 46}, - [3004] = {.lex_state = 427, .external_lex_state = 39}, - [3005] = {.lex_state = 429, .external_lex_state = 46}, - [3006] = {.lex_state = 427, .external_lex_state = 39}, - [3007] = {.lex_state = 458, .external_lex_state = 32}, - [3008] = {.lex_state = 454, .external_lex_state = 26}, - [3009] = {.lex_state = 462, .external_lex_state = 59}, - [3010] = {.lex_state = 429, .external_lex_state = 61}, - [3011] = {.lex_state = 429, .external_lex_state = 46}, - [3012] = {.lex_state = 427, .external_lex_state = 39}, - [3013] = {.lex_state = 429, .external_lex_state = 46}, - [3014] = {.lex_state = 462, .external_lex_state = 59}, - [3015] = {.lex_state = 427, .external_lex_state = 39}, - [3016] = {.lex_state = 429, .external_lex_state = 46}, - [3017] = {.lex_state = 429, .external_lex_state = 61}, - [3018] = {.lex_state = 427, .external_lex_state = 39}, - [3019] = {.lex_state = 427, .external_lex_state = 39}, - [3020] = {.lex_state = 429, .external_lex_state = 65}, - [3021] = {.lex_state = 427, .external_lex_state = 61}, - [3022] = {.lex_state = 427, .external_lex_state = 61}, - [3023] = {.lex_state = 429, .external_lex_state = 65}, - [3024] = {.lex_state = 429, .external_lex_state = 65}, - [3025] = {.lex_state = 427, .external_lex_state = 61}, - [3026] = {.lex_state = 429, .external_lex_state = 65}, - [3027] = {.lex_state = 429, .external_lex_state = 65}, - [3028] = {.lex_state = 429, .external_lex_state = 65}, - [3029] = {.lex_state = 427, .external_lex_state = 61}, - [3030] = {.lex_state = 429, .external_lex_state = 65}, - [3031] = {.lex_state = 429, .external_lex_state = 65}, - [3032] = {.lex_state = 427, .external_lex_state = 61}, - [3033] = {.lex_state = 429, .external_lex_state = 65}, - [3034] = {.lex_state = 429, .external_lex_state = 65}, - [3035] = {.lex_state = 427, .external_lex_state = 61}, - [3036] = {.lex_state = 429, .external_lex_state = 65}, - [3037] = {.lex_state = 427, .external_lex_state = 61}, - [3038] = {.lex_state = 429, .external_lex_state = 65}, - [3039] = {.lex_state = 427, .external_lex_state = 61}, - [3040] = {.lex_state = 429, .external_lex_state = 65}, - [3041] = {.lex_state = 427, .external_lex_state = 61}, - [3042] = {.lex_state = 429, .external_lex_state = 65}, - [3043] = {.lex_state = 427, .external_lex_state = 61}, - [3044] = {.lex_state = 429, .external_lex_state = 65}, - [3045] = {.lex_state = 427, .external_lex_state = 61}, - [3046] = {.lex_state = 429, .external_lex_state = 65}, - [3047] = {.lex_state = 430, .external_lex_state = 61}, - [3048] = {.lex_state = 429, .external_lex_state = 65}, - [3049] = {.lex_state = 430, .external_lex_state = 61}, - [3050] = {.lex_state = 429, .external_lex_state = 65}, - [3051] = {.lex_state = 430, .external_lex_state = 61}, - [3052] = {.lex_state = 429, .external_lex_state = 65}, - [3053] = {.lex_state = 430, .external_lex_state = 61}, - [3054] = {.lex_state = 429, .external_lex_state = 65}, - [3055] = {.lex_state = 429, .external_lex_state = 65}, - [3056] = {.lex_state = 430, .external_lex_state = 61}, - [3057] = {.lex_state = 429, .external_lex_state = 65}, - [3058] = {.lex_state = 429, .external_lex_state = 65}, - [3059] = {.lex_state = 430, .external_lex_state = 61}, - [3060] = {.lex_state = 429, .external_lex_state = 65}, - [3061] = {.lex_state = 429, .external_lex_state = 65}, - [3062] = {.lex_state = 240, .external_lex_state = 67}, - [3063] = {.lex_state = 429, .external_lex_state = 65}, - [3064] = {.lex_state = 430, .external_lex_state = 61}, - [3065] = {.lex_state = 429, .external_lex_state = 65}, - [3066] = {.lex_state = 430, .external_lex_state = 61}, - [3067] = {.lex_state = 429, .external_lex_state = 65}, - [3068] = {.lex_state = 430, .external_lex_state = 61}, - [3069] = {.lex_state = 429, .external_lex_state = 65}, - [3070] = {.lex_state = 430, .external_lex_state = 61}, - [3071] = {.lex_state = 429, .external_lex_state = 65}, - [3072] = {.lex_state = 429, .external_lex_state = 65}, - [3073] = {.lex_state = 295, .external_lex_state = 68}, - [3074] = {.lex_state = 429, .external_lex_state = 65}, - [3075] = {.lex_state = 427, .external_lex_state = 61}, - [3076] = {.lex_state = 429, .external_lex_state = 65}, - [3077] = {.lex_state = 430, .external_lex_state = 61}, - [3078] = {.lex_state = 430, .external_lex_state = 61}, - [3079] = {.lex_state = 429, .external_lex_state = 65}, - [3080] = {.lex_state = 295, .external_lex_state = 68}, - [3081] = {.lex_state = 429, .external_lex_state = 65}, - [3082] = {.lex_state = 295, .external_lex_state = 68}, - [3083] = {.lex_state = 429, .external_lex_state = 65}, - [3084] = {.lex_state = 429, .external_lex_state = 65}, - [3085] = {.lex_state = 429, .external_lex_state = 65}, - [3086] = {.lex_state = 429, .external_lex_state = 65}, - [3087] = {.lex_state = 435, .external_lex_state = 61}, - [3088] = {.lex_state = 429, .external_lex_state = 65}, - [3089] = {.lex_state = 429, .external_lex_state = 65}, - [3090] = {.lex_state = 429, .external_lex_state = 65}, - [3091] = {.lex_state = 427, .external_lex_state = 61}, - [3092] = {.lex_state = 427, .external_lex_state = 61}, - [3093] = {.lex_state = 429, .external_lex_state = 65}, - [3094] = {.lex_state = 429, .external_lex_state = 65}, - [3095] = {.lex_state = 435, .external_lex_state = 61}, - [3096] = {.lex_state = 429, .external_lex_state = 65}, - [3097] = {.lex_state = 429, .external_lex_state = 65}, - [3098] = {.lex_state = 429, .external_lex_state = 65}, - [3099] = {.lex_state = 435, .external_lex_state = 61}, - [3100] = {.lex_state = 429, .external_lex_state = 65}, - [3101] = {.lex_state = 429, .external_lex_state = 65}, - [3102] = {.lex_state = 429, .external_lex_state = 65}, - [3103] = {.lex_state = 435, .external_lex_state = 61}, - [3104] = {.lex_state = 429, .external_lex_state = 65}, - [3105] = {.lex_state = 435, .external_lex_state = 61}, - [3106] = {.lex_state = 429, .external_lex_state = 65}, - [3107] = {.lex_state = 435, .external_lex_state = 61}, - [3108] = {.lex_state = 429, .external_lex_state = 65}, - [3109] = {.lex_state = 427, .external_lex_state = 61}, - [3110] = {.lex_state = 429, .external_lex_state = 65}, - [3111] = {.lex_state = 430, .external_lex_state = 61}, - [3112] = {.lex_state = 429, .external_lex_state = 65}, - [3113] = {.lex_state = 429, .external_lex_state = 65}, - [3114] = {.lex_state = 435, .external_lex_state = 61}, - [3115] = {.lex_state = 429, .external_lex_state = 65}, - [3116] = {.lex_state = 452, .external_lex_state = 35}, - [3117] = {.lex_state = 435, .external_lex_state = 61}, - [3118] = {.lex_state = 429, .external_lex_state = 65}, - [3119] = {.lex_state = 435, .external_lex_state = 61}, - [3120] = {.lex_state = 435, .external_lex_state = 61}, - [3121] = {.lex_state = 429, .external_lex_state = 65}, - [3122] = {.lex_state = 435, .external_lex_state = 61}, - [3123] = {.lex_state = 435, .external_lex_state = 61}, - [3124] = {.lex_state = 429, .external_lex_state = 65}, - [3125] = {.lex_state = 435, .external_lex_state = 61}, - [3126] = {.lex_state = 429, .external_lex_state = 65}, - [3127] = {.lex_state = 435, .external_lex_state = 61}, - [3128] = {.lex_state = 429, .external_lex_state = 65}, - [3129] = {.lex_state = 427, .external_lex_state = 61}, - [3130] = {.lex_state = 429, .external_lex_state = 65}, - [3131] = {.lex_state = 435, .external_lex_state = 61}, - [3132] = {.lex_state = 429, .external_lex_state = 65}, - [3133] = {.lex_state = 435, .external_lex_state = 61}, - [3134] = {.lex_state = 429, .external_lex_state = 65}, - [3135] = {.lex_state = 435, .external_lex_state = 61}, - [3136] = {.lex_state = 460, .external_lex_state = 33}, - [3137] = {.lex_state = 427, .external_lex_state = 61}, - [3138] = {.lex_state = 243, .external_lex_state = 67}, - [3139] = {.lex_state = 243, .external_lex_state = 67}, - [3140] = {.lex_state = 427, .external_lex_state = 61}, - [3141] = {.lex_state = 429, .external_lex_state = 65}, - [3142] = {.lex_state = 243, .external_lex_state = 67}, - [3143] = {.lex_state = 243, .external_lex_state = 67}, + [3004] = {.lex_state = 429, .external_lex_state = 61}, + [3005] = {.lex_state = 462, .external_lex_state = 58}, + [3006] = {.lex_state = 94, .external_lex_state = 64}, + [3007] = {.lex_state = 94, .external_lex_state = 64}, + [3008] = {.lex_state = 427, .external_lex_state = 40}, + [3009] = {.lex_state = 464, .external_lex_state = 27}, + [3010] = {.lex_state = 427, .external_lex_state = 60}, + [3011] = {.lex_state = 427, .external_lex_state = 60}, + [3012] = {.lex_state = 427, .external_lex_state = 40}, + [3013] = {.lex_state = 427, .external_lex_state = 40}, + [3014] = {.lex_state = 427, .external_lex_state = 40}, + [3015] = {.lex_state = 427, .external_lex_state = 40}, + [3016] = {.lex_state = 427, .external_lex_state = 40}, + [3017] = {.lex_state = 458, .external_lex_state = 31}, + [3018] = {.lex_state = 94, .external_lex_state = 64}, + [3019] = {.lex_state = 454, .external_lex_state = 35}, + [3020] = {.lex_state = 430, .external_lex_state = 61}, + [3021] = {.lex_state = 94, .external_lex_state = 64}, + [3022] = {.lex_state = 234, .external_lex_state = 67}, + [3023] = {.lex_state = 464, .external_lex_state = 35}, + [3024] = {.lex_state = 427, .external_lex_state = 40}, + [3025] = {.lex_state = 427, .external_lex_state = 40}, + [3026] = {.lex_state = 427, .external_lex_state = 40}, + [3027] = {.lex_state = 427, .external_lex_state = 40}, + [3028] = {.lex_state = 427, .external_lex_state = 40}, + [3029] = {.lex_state = 427, .external_lex_state = 40}, + [3030] = {.lex_state = 427, .external_lex_state = 40}, + [3031] = {.lex_state = 427, .external_lex_state = 40}, + [3032] = {.lex_state = 94, .external_lex_state = 64}, + [3033] = {.lex_state = 429, .external_lex_state = 61}, + [3034] = {.lex_state = 94, .external_lex_state = 64}, + [3035] = {.lex_state = 427, .external_lex_state = 40}, + [3036] = {.lex_state = 427, .external_lex_state = 40}, + [3037] = {.lex_state = 427, .external_lex_state = 40}, + [3038] = {.lex_state = 427, .external_lex_state = 40}, + [3039] = {.lex_state = 427, .external_lex_state = 60}, + [3040] = {.lex_state = 427, .external_lex_state = 60}, + [3041] = {.lex_state = 427, .external_lex_state = 40}, + [3042] = {.lex_state = 237, .external_lex_state = 63}, + [3043] = {.lex_state = 237, .external_lex_state = 63}, + [3044] = {.lex_state = 94, .external_lex_state = 64}, + [3045] = {.lex_state = 429, .external_lex_state = 46}, + [3046] = {.lex_state = 427, .external_lex_state = 40}, + [3047] = {.lex_state = 94, .external_lex_state = 64}, + [3048] = {.lex_state = 429, .external_lex_state = 61}, + [3049] = {.lex_state = 454, .external_lex_state = 27}, + [3050] = {.lex_state = 429, .external_lex_state = 46}, + [3051] = {.lex_state = 94, .external_lex_state = 64}, + [3052] = {.lex_state = 427, .external_lex_state = 40}, + [3053] = {.lex_state = 429, .external_lex_state = 46}, + [3054] = {.lex_state = 454, .external_lex_state = 27}, + [3055] = {.lex_state = 427, .external_lex_state = 40}, + [3056] = {.lex_state = 237, .external_lex_state = 63}, + [3057] = {.lex_state = 462, .external_lex_state = 58}, + [3058] = {.lex_state = 429, .external_lex_state = 61}, + [3059] = {.lex_state = 462, .external_lex_state = 58}, + [3060] = {.lex_state = 94, .external_lex_state = 64}, + [3061] = {.lex_state = 94, .external_lex_state = 64}, + [3062] = {.lex_state = 429, .external_lex_state = 46}, + [3063] = {.lex_state = 94, .external_lex_state = 64}, + [3064] = {.lex_state = 94, .external_lex_state = 64}, + [3065] = {.lex_state = 94, .external_lex_state = 64}, + [3066] = {.lex_state = 464, .external_lex_state = 27}, + [3067] = {.lex_state = 427, .external_lex_state = 40}, + [3068] = {.lex_state = 427, .external_lex_state = 40}, + [3069] = {.lex_state = 427, .external_lex_state = 40}, + [3070] = {.lex_state = 237, .external_lex_state = 63}, + [3071] = {.lex_state = 463, .external_lex_state = 31}, + [3072] = {.lex_state = 464, .external_lex_state = 27}, + [3073] = {.lex_state = 427, .external_lex_state = 40}, + [3074] = {.lex_state = 429, .external_lex_state = 61}, + [3075] = {.lex_state = 429, .external_lex_state = 61}, + [3076] = {.lex_state = 435, .external_lex_state = 61}, + [3077] = {.lex_state = 427, .external_lex_state = 61}, + [3078] = {.lex_state = 427, .external_lex_state = 61}, + [3079] = {.lex_state = 430, .external_lex_state = 61}, + [3080] = {.lex_state = 430, .external_lex_state = 61}, + [3081] = {.lex_state = 430, .external_lex_state = 61}, + [3082] = {.lex_state = 430, .external_lex_state = 61}, + [3083] = {.lex_state = 427, .external_lex_state = 61}, + [3084] = {.lex_state = 427, .external_lex_state = 61}, + [3085] = {.lex_state = 427, .external_lex_state = 61}, + [3086] = {.lex_state = 427, .external_lex_state = 61}, + [3087] = {.lex_state = 430, .external_lex_state = 61}, + [3088] = {.lex_state = 427, .external_lex_state = 40}, + [3089] = {.lex_state = 430, .external_lex_state = 61}, + [3090] = {.lex_state = 430, .external_lex_state = 61}, + [3091] = {.lex_state = 430, .external_lex_state = 61}, + [3092] = {.lex_state = 430, .external_lex_state = 61}, + [3093] = {.lex_state = 240, .external_lex_state = 67}, + [3094] = {.lex_state = 427, .external_lex_state = 61}, + [3095] = {.lex_state = 427, .external_lex_state = 61}, + [3096] = {.lex_state = 240, .external_lex_state = 67}, + [3097] = {.lex_state = 243, .external_lex_state = 67}, + [3098] = {.lex_state = 243, .external_lex_state = 67}, + [3099] = {.lex_state = 243, .external_lex_state = 67}, + [3100] = {.lex_state = 243, .external_lex_state = 67}, + [3101] = {.lex_state = 429, .external_lex_state = 66}, + [3102] = {.lex_state = 430, .external_lex_state = 61}, + [3103] = {.lex_state = 430, .external_lex_state = 61}, + [3104] = {.lex_state = 430, .external_lex_state = 61}, + [3105] = {.lex_state = 427, .external_lex_state = 61}, + [3106] = {.lex_state = 463, .external_lex_state = 31}, + [3107] = {.lex_state = 429, .external_lex_state = 66}, + [3108] = {.lex_state = 427, .external_lex_state = 61}, + [3109] = {.lex_state = 429, .external_lex_state = 66}, + [3110] = {.lex_state = 429, .external_lex_state = 66}, + [3111] = {.lex_state = 466, .external_lex_state = 68}, + [3112] = {.lex_state = 466, .external_lex_state = 68}, + [3113] = {.lex_state = 466, .external_lex_state = 68}, + [3114] = {.lex_state = 466, .external_lex_state = 68}, + [3115] = {.lex_state = 429, .external_lex_state = 66}, + [3116] = {.lex_state = 466, .external_lex_state = 68}, + [3117] = {.lex_state = 429, .external_lex_state = 66}, + [3118] = {.lex_state = 429, .external_lex_state = 66}, + [3119] = {.lex_state = 427, .external_lex_state = 61}, + [3120] = {.lex_state = 427, .external_lex_state = 61}, + [3121] = {.lex_state = 466, .external_lex_state = 68}, + [3122] = {.lex_state = 466, .external_lex_state = 68}, + [3123] = {.lex_state = 466, .external_lex_state = 68}, + [3124] = {.lex_state = 466, .external_lex_state = 68}, + [3125] = {.lex_state = 429, .external_lex_state = 66}, + [3126] = {.lex_state = 295, .external_lex_state = 69}, + [3127] = {.lex_state = 429, .external_lex_state = 66}, + [3128] = {.lex_state = 295, .external_lex_state = 69}, + [3129] = {.lex_state = 466, .external_lex_state = 68}, + [3130] = {.lex_state = 466, .external_lex_state = 68}, + [3131] = {.lex_state = 295, .external_lex_state = 69}, + [3132] = {.lex_state = 466, .external_lex_state = 68}, + [3133] = {.lex_state = 466, .external_lex_state = 68}, + [3134] = {.lex_state = 435, .external_lex_state = 61}, + [3135] = {.lex_state = 429, .external_lex_state = 66}, + [3136] = {.lex_state = 429, .external_lex_state = 66}, + [3137] = {.lex_state = 435, .external_lex_state = 61}, + [3138] = {.lex_state = 435, .external_lex_state = 61}, + [3139] = {.lex_state = 295, .external_lex_state = 69}, + [3140] = {.lex_state = 435, .external_lex_state = 61}, + [3141] = {.lex_state = 429, .external_lex_state = 66}, + [3142] = {.lex_state = 429, .external_lex_state = 66}, + [3143] = {.lex_state = 464, .external_lex_state = 35}, [3144] = {.lex_state = 435, .external_lex_state = 61}, - [3145] = {.lex_state = 427, .external_lex_state = 61}, + [3145] = {.lex_state = 429, .external_lex_state = 66}, [3146] = {.lex_state = 435, .external_lex_state = 61}, - [3147] = {.lex_state = 429, .external_lex_state = 65}, - [3148] = {.lex_state = 435, .external_lex_state = 61}, - [3149] = {.lex_state = 427, .external_lex_state = 61}, - [3150] = {.lex_state = 427, .external_lex_state = 61}, - [3151] = {.lex_state = 464, .external_lex_state = 33}, - [3152] = {.lex_state = 429, .external_lex_state = 65}, - [3153] = {.lex_state = 429, .external_lex_state = 65}, - [3154] = {.lex_state = 427, .external_lex_state = 61}, - [3155] = {.lex_state = 429, .external_lex_state = 65}, - [3156] = {.lex_state = 427, .external_lex_state = 61}, - [3157] = {.lex_state = 435, .external_lex_state = 61}, - [3158] = {.lex_state = 427, .external_lex_state = 61}, - [3159] = {.lex_state = 427, .external_lex_state = 61}, - [3160] = {.lex_state = 466, .external_lex_state = 69}, - [3161] = {.lex_state = 466, .external_lex_state = 69}, - [3162] = {.lex_state = 429, .external_lex_state = 65}, - [3163] = {.lex_state = 466, .external_lex_state = 69}, - [3164] = {.lex_state = 430, .external_lex_state = 61}, - [3165] = {.lex_state = 430, .external_lex_state = 61}, - [3166] = {.lex_state = 466, .external_lex_state = 69}, - [3167] = {.lex_state = 429, .external_lex_state = 65}, - [3168] = {.lex_state = 466, .external_lex_state = 69}, - [3169] = {.lex_state = 429, .external_lex_state = 65}, - [3170] = {.lex_state = 430, .external_lex_state = 61}, - [3171] = {.lex_state = 430, .external_lex_state = 61}, - [3172] = {.lex_state = 429, .external_lex_state = 65}, - [3173] = {.lex_state = 429, .external_lex_state = 65}, - [3174] = {.lex_state = 427, .external_lex_state = 39}, - [3175] = {.lex_state = 429, .external_lex_state = 65}, - [3176] = {.lex_state = 429, .external_lex_state = 65}, - [3177] = {.lex_state = 429, .external_lex_state = 65}, - [3178] = {.lex_state = 429, .external_lex_state = 65}, - [3179] = {.lex_state = 429, .external_lex_state = 65}, - [3180] = {.lex_state = 427, .external_lex_state = 61}, - [3181] = {.lex_state = 427, .external_lex_state = 61}, - [3182] = {.lex_state = 427, .external_lex_state = 61}, - [3183] = {.lex_state = 466, .external_lex_state = 69}, - [3184] = {.lex_state = 427, .external_lex_state = 61}, - [3185] = {.lex_state = 466, .external_lex_state = 69}, - [3186] = {.lex_state = 427, .external_lex_state = 61}, - [3187] = {.lex_state = 466, .external_lex_state = 69}, - [3188] = {.lex_state = 466, .external_lex_state = 69}, - [3189] = {.lex_state = 435, .external_lex_state = 61}, - [3190] = {.lex_state = 429, .external_lex_state = 65}, - [3191] = {.lex_state = 429, .external_lex_state = 65}, - [3192] = {.lex_state = 429, .external_lex_state = 65}, - [3193] = {.lex_state = 429, .external_lex_state = 65}, - [3194] = {.lex_state = 429, .external_lex_state = 65}, - [3195] = {.lex_state = 435, .external_lex_state = 61}, - [3196] = {.lex_state = 435, .external_lex_state = 61}, - [3197] = {.lex_state = 429, .external_lex_state = 65}, - [3198] = {.lex_state = 429, .external_lex_state = 65}, - [3199] = {.lex_state = 435, .external_lex_state = 61}, - [3200] = {.lex_state = 427, .external_lex_state = 61}, - [3201] = {.lex_state = 435, .external_lex_state = 61}, - [3202] = {.lex_state = 427, .external_lex_state = 61}, - [3203] = {.lex_state = 427, .external_lex_state = 61}, - [3204] = {.lex_state = 523, .external_lex_state = 67}, - [3205] = {.lex_state = 523, .external_lex_state = 67}, - [3206] = {.lex_state = 427, .external_lex_state = 61}, - [3207] = {.lex_state = 427, .external_lex_state = 61}, - [3208] = {.lex_state = 427, .external_lex_state = 61}, - [3209] = {.lex_state = 466, .external_lex_state = 69}, - [3210] = {.lex_state = 427, .external_lex_state = 61}, - [3211] = {.lex_state = 430, .external_lex_state = 61}, - [3212] = {.lex_state = 427, .external_lex_state = 61}, - [3213] = {.lex_state = 430, .external_lex_state = 61}, + [3147] = {.lex_state = 429, .external_lex_state = 66}, + [3148] = {.lex_state = 429, .external_lex_state = 66}, + [3149] = {.lex_state = 435, .external_lex_state = 61}, + [3150] = {.lex_state = 429, .external_lex_state = 66}, + [3151] = {.lex_state = 429, .external_lex_state = 66}, + [3152] = {.lex_state = 429, .external_lex_state = 66}, + [3153] = {.lex_state = 429, .external_lex_state = 66}, + [3154] = {.lex_state = 429, .external_lex_state = 66}, + [3155] = {.lex_state = 466, .external_lex_state = 68}, + [3156] = {.lex_state = 429, .external_lex_state = 66}, + [3157] = {.lex_state = 429, .external_lex_state = 66}, + [3158] = {.lex_state = 429, .external_lex_state = 66}, + [3159] = {.lex_state = 429, .external_lex_state = 66}, + [3160] = {.lex_state = 435, .external_lex_state = 61}, + [3161] = {.lex_state = 246, .external_lex_state = 67}, + [3162] = {.lex_state = 429, .external_lex_state = 66}, + [3163] = {.lex_state = 246, .external_lex_state = 67}, + [3164] = {.lex_state = 429, .external_lex_state = 66}, + [3165] = {.lex_state = 435, .external_lex_state = 61}, + [3166] = {.lex_state = 429, .external_lex_state = 66}, + [3167] = {.lex_state = 435, .external_lex_state = 61}, + [3168] = {.lex_state = 429, .external_lex_state = 66}, + [3169] = {.lex_state = 429, .external_lex_state = 66}, + [3170] = {.lex_state = 435, .external_lex_state = 61}, + [3171] = {.lex_state = 435, .external_lex_state = 61}, + [3172] = {.lex_state = 429, .external_lex_state = 66}, + [3173] = {.lex_state = 435, .external_lex_state = 61}, + [3174] = {.lex_state = 429, .external_lex_state = 66}, + [3175] = {.lex_state = 429, .external_lex_state = 66}, + [3176] = {.lex_state = 429, .external_lex_state = 66}, + [3177] = {.lex_state = 429, .external_lex_state = 66}, + [3178] = {.lex_state = 429, .external_lex_state = 66}, + [3179] = {.lex_state = 435, .external_lex_state = 61}, + [3180] = {.lex_state = 429, .external_lex_state = 66}, + [3181] = {.lex_state = 435, .external_lex_state = 61}, + [3182] = {.lex_state = 429, .external_lex_state = 66}, + [3183] = {.lex_state = 429, .external_lex_state = 66}, + [3184] = {.lex_state = 460, .external_lex_state = 35}, + [3185] = {.lex_state = 429, .external_lex_state = 66}, + [3186] = {.lex_state = 429, .external_lex_state = 66}, + [3187] = {.lex_state = 429, .external_lex_state = 66}, + [3188] = {.lex_state = 429, .external_lex_state = 66}, + [3189] = {.lex_state = 429, .external_lex_state = 66}, + [3190] = {.lex_state = 429, .external_lex_state = 66}, + [3191] = {.lex_state = 429, .external_lex_state = 66}, + [3192] = {.lex_state = 435, .external_lex_state = 61}, + [3193] = {.lex_state = 429, .external_lex_state = 66}, + [3194] = {.lex_state = 435, .external_lex_state = 61}, + [3195] = {.lex_state = 429, .external_lex_state = 66}, + [3196] = {.lex_state = 429, .external_lex_state = 66}, + [3197] = {.lex_state = 429, .external_lex_state = 66}, + [3198] = {.lex_state = 435, .external_lex_state = 61}, + [3199] = {.lex_state = 429, .external_lex_state = 66}, + [3200] = {.lex_state = 435, .external_lex_state = 61}, + [3201] = {.lex_state = 429, .external_lex_state = 66}, + [3202] = {.lex_state = 429, .external_lex_state = 66}, + [3203] = {.lex_state = 429, .external_lex_state = 66}, + [3204] = {.lex_state = 435, .external_lex_state = 61}, + [3205] = {.lex_state = 429, .external_lex_state = 66}, + [3206] = {.lex_state = 429, .external_lex_state = 66}, + [3207] = {.lex_state = 429, .external_lex_state = 66}, + [3208] = {.lex_state = 454, .external_lex_state = 35}, + [3209] = {.lex_state = 435, .external_lex_state = 61}, + [3210] = {.lex_state = 429, .external_lex_state = 66}, + [3211] = {.lex_state = 429, .external_lex_state = 66}, + [3212] = {.lex_state = 429, .external_lex_state = 66}, + [3213] = {.lex_state = 435, .external_lex_state = 61}, [3214] = {.lex_state = 427, .external_lex_state = 61}, - [3215] = {.lex_state = 430, .external_lex_state = 61}, - [3216] = {.lex_state = 430, .external_lex_state = 61}, - [3217] = {.lex_state = 427, .external_lex_state = 39}, - [3218] = {.lex_state = 430, .external_lex_state = 61}, - [3219] = {.lex_state = 466, .external_lex_state = 69}, - [3220] = {.lex_state = 430, .external_lex_state = 61}, - [3221] = {.lex_state = 430, .external_lex_state = 61}, - [3222] = {.lex_state = 466, .external_lex_state = 69}, - [3223] = {.lex_state = 427, .external_lex_state = 61}, - [3224] = {.lex_state = 430, .external_lex_state = 61}, - [3225] = {.lex_state = 466, .external_lex_state = 69}, - [3226] = {.lex_state = 466, .external_lex_state = 69}, - [3227] = {.lex_state = 430, .external_lex_state = 61}, - [3228] = {.lex_state = 249, .external_lex_state = 67}, - [3229] = {.lex_state = 249, .external_lex_state = 67}, - [3230] = {.lex_state = 454, .external_lex_state = 33}, - [3231] = {.lex_state = 435, .external_lex_state = 61}, - [3232] = {.lex_state = 435, .external_lex_state = 61}, - [3233] = {.lex_state = 435, .external_lex_state = 61}, - [3234] = {.lex_state = 435, .external_lex_state = 61}, - [3235] = {.lex_state = 429, .external_lex_state = 65}, - [3236] = {.lex_state = 430, .external_lex_state = 61}, - [3237] = {.lex_state = 430, .external_lex_state = 61}, - [3238] = {.lex_state = 430, .external_lex_state = 61}, - [3239] = {.lex_state = 460, .external_lex_state = 33}, - [3240] = {.lex_state = 466, .external_lex_state = 69}, - [3241] = {.lex_state = 240, .external_lex_state = 67}, - [3242] = {.lex_state = 427, .external_lex_state = 39}, - [3243] = {.lex_state = 427, .external_lex_state = 39}, - [3244] = {.lex_state = 427, .external_lex_state = 39}, - [3245] = {.lex_state = 427, .external_lex_state = 39}, - [3246] = {.lex_state = 427, .external_lex_state = 39}, - [3247] = {.lex_state = 427, .external_lex_state = 39}, - [3248] = {.lex_state = 427, .external_lex_state = 39}, - [3249] = {.lex_state = 427, .external_lex_state = 39}, - [3250] = {.lex_state = 427, .external_lex_state = 39}, - [3251] = {.lex_state = 429, .external_lex_state = 65}, - [3252] = {.lex_state = 427, .external_lex_state = 39}, - [3253] = {.lex_state = 427, .external_lex_state = 39}, - [3254] = {.lex_state = 427, .external_lex_state = 39}, - [3255] = {.lex_state = 427, .external_lex_state = 39}, - [3256] = {.lex_state = 463, .external_lex_state = 32}, - [3257] = {.lex_state = 429, .external_lex_state = 65}, - [3258] = {.lex_state = 427, .external_lex_state = 39}, - [3259] = {.lex_state = 427, .external_lex_state = 39}, - [3260] = {.lex_state = 427, .external_lex_state = 39}, - [3261] = {.lex_state = 430, .external_lex_state = 61}, - [3262] = {.lex_state = 427, .external_lex_state = 61}, - [3263] = {.lex_state = 430, .external_lex_state = 61}, - [3264] = {.lex_state = 430, .external_lex_state = 61}, - [3265] = {.lex_state = 429, .external_lex_state = 65}, - [3266] = {.lex_state = 429, .external_lex_state = 65}, - [3267] = {.lex_state = 427, .external_lex_state = 61}, - [3268] = {.lex_state = 429, .external_lex_state = 65}, - [3269] = {.lex_state = 429, .external_lex_state = 65}, - [3270] = {.lex_state = 429, .external_lex_state = 65}, - [3271] = {.lex_state = 429, .external_lex_state = 65}, - [3272] = {.lex_state = 427, .external_lex_state = 61}, - [3273] = {.lex_state = 429, .external_lex_state = 65}, - [3274] = {.lex_state = 427, .external_lex_state = 61}, - [3275] = {.lex_state = 435, .external_lex_state = 61}, - [3276] = {.lex_state = 429, .external_lex_state = 65}, - [3277] = {.lex_state = 435, .external_lex_state = 61}, - [3278] = {.lex_state = 429, .external_lex_state = 65}, - [3279] = {.lex_state = 295, .external_lex_state = 68}, - [3280] = {.lex_state = 429, .external_lex_state = 65}, - [3281] = {.lex_state = 295, .external_lex_state = 68}, - [3282] = {.lex_state = 427, .external_lex_state = 61}, - [3283] = {.lex_state = 295, .external_lex_state = 68}, - [3284] = {.lex_state = 427, .external_lex_state = 61}, - [3285] = {.lex_state = 429, .external_lex_state = 65}, - [3286] = {.lex_state = 429, .external_lex_state = 65}, - [3287] = {.lex_state = 429, .external_lex_state = 65}, - [3288] = {.lex_state = 429, .external_lex_state = 65}, - [3289] = {.lex_state = 466, .external_lex_state = 69}, - [3290] = {.lex_state = 252, .external_lex_state = 67}, - [3291] = {.lex_state = 526, .external_lex_state = 67}, - [3292] = {.lex_state = 526, .external_lex_state = 67}, - [3293] = {.lex_state = 295, .external_lex_state = 68}, - [3294] = {.lex_state = 295, .external_lex_state = 68}, - [3295] = {.lex_state = 295, .external_lex_state = 68}, - [3296] = {.lex_state = 295, .external_lex_state = 68}, - [3297] = {.lex_state = 295, .external_lex_state = 68}, - [3298] = {.lex_state = 460, .external_lex_state = 33}, - [3299] = {.lex_state = 454, .external_lex_state = 48}, - [3300] = {.lex_state = 454, .external_lex_state = 48}, - [3301] = {.lex_state = 295, .external_lex_state = 68}, - [3302] = {.lex_state = 454, .external_lex_state = 48}, - [3303] = {.lex_state = 454, .external_lex_state = 48}, - [3304] = {.lex_state = 454, .external_lex_state = 48}, - [3305] = {.lex_state = 295, .external_lex_state = 68}, - [3306] = {.lex_state = 454, .external_lex_state = 48}, - [3307] = {.lex_state = 454, .external_lex_state = 48}, - [3308] = {.lex_state = 526, .external_lex_state = 67}, - [3309] = {.lex_state = 526, .external_lex_state = 67}, - [3310] = {.lex_state = 454, .external_lex_state = 48}, - [3311] = {.lex_state = 258, .external_lex_state = 67}, - [3312] = {.lex_state = 295, .external_lex_state = 68}, - [3313] = {.lex_state = 295, .external_lex_state = 68}, - [3314] = {.lex_state = 454, .external_lex_state = 48}, - [3315] = {.lex_state = 258, .external_lex_state = 67}, - [3316] = {.lex_state = 295, .external_lex_state = 68}, - [3317] = {.lex_state = 523, .external_lex_state = 67}, - [3318] = {.lex_state = 258, .external_lex_state = 67}, - [3319] = {.lex_state = 454, .external_lex_state = 48}, - [3320] = {.lex_state = 454, .external_lex_state = 48}, - [3321] = {.lex_state = 523, .external_lex_state = 67}, - [3322] = {.lex_state = 454, .external_lex_state = 48}, - [3323] = {.lex_state = 454, .external_lex_state = 48}, - [3324] = {.lex_state = 454, .external_lex_state = 48}, - [3325] = {.lex_state = 454, .external_lex_state = 48}, - [3326] = {.lex_state = 454, .external_lex_state = 48}, - [3327] = {.lex_state = 454, .external_lex_state = 48}, - [3328] = {.lex_state = 454, .external_lex_state = 48}, - [3329] = {.lex_state = 295, .external_lex_state = 68}, - [3330] = {.lex_state = 454, .external_lex_state = 48}, - [3331] = {.lex_state = 454, .external_lex_state = 48}, - [3332] = {.lex_state = 454, .external_lex_state = 48}, - [3333] = {.lex_state = 295, .external_lex_state = 68}, - [3334] = {.lex_state = 454, .external_lex_state = 48}, - [3335] = {.lex_state = 295, .external_lex_state = 68}, - [3336] = {.lex_state = 454, .external_lex_state = 48}, - [3337] = {.lex_state = 295, .external_lex_state = 68}, - [3338] = {.lex_state = 258, .external_lex_state = 67}, - [3339] = {.lex_state = 252, .external_lex_state = 67}, - [3340] = {.lex_state = 295, .external_lex_state = 68}, - [3341] = {.lex_state = 295, .external_lex_state = 68}, - [3342] = {.lex_state = 295, .external_lex_state = 68}, - [3343] = {.lex_state = 252, .external_lex_state = 67}, - [3344] = {.lex_state = 295, .external_lex_state = 68}, - [3345] = {.lex_state = 252, .external_lex_state = 67}, - [3346] = {.lex_state = 295, .external_lex_state = 68}, + [3215] = {.lex_state = 435, .external_lex_state = 61}, + [3216] = {.lex_state = 435, .external_lex_state = 61}, + [3217] = {.lex_state = 429, .external_lex_state = 66}, + [3218] = {.lex_state = 429, .external_lex_state = 66}, + [3219] = {.lex_state = 429, .external_lex_state = 66}, + [3220] = {.lex_state = 429, .external_lex_state = 66}, + [3221] = {.lex_state = 429, .external_lex_state = 66}, + [3222] = {.lex_state = 429, .external_lex_state = 66}, + [3223] = {.lex_state = 435, .external_lex_state = 61}, + [3224] = {.lex_state = 429, .external_lex_state = 66}, + [3225] = {.lex_state = 429, .external_lex_state = 66}, + [3226] = {.lex_state = 429, .external_lex_state = 66}, + [3227] = {.lex_state = 435, .external_lex_state = 61}, + [3228] = {.lex_state = 435, .external_lex_state = 61}, + [3229] = {.lex_state = 427, .external_lex_state = 61}, + [3230] = {.lex_state = 435, .external_lex_state = 61}, + [3231] = {.lex_state = 427, .external_lex_state = 61}, + [3232] = {.lex_state = 427, .external_lex_state = 61}, + [3233] = {.lex_state = 427, .external_lex_state = 61}, + [3234] = {.lex_state = 427, .external_lex_state = 61}, + [3235] = {.lex_state = 427, .external_lex_state = 61}, + [3236] = {.lex_state = 427, .external_lex_state = 61}, + [3237] = {.lex_state = 435, .external_lex_state = 61}, + [3238] = {.lex_state = 435, .external_lex_state = 61}, + [3239] = {.lex_state = 427, .external_lex_state = 61}, + [3240] = {.lex_state = 427, .external_lex_state = 61}, + [3241] = {.lex_state = 427, .external_lex_state = 61}, + [3242] = {.lex_state = 430, .external_lex_state = 61}, + [3243] = {.lex_state = 430, .external_lex_state = 61}, + [3244] = {.lex_state = 430, .external_lex_state = 61}, + [3245] = {.lex_state = 430, .external_lex_state = 61}, + [3246] = {.lex_state = 429, .external_lex_state = 66}, + [3247] = {.lex_state = 429, .external_lex_state = 66}, + [3248] = {.lex_state = 429, .external_lex_state = 66}, + [3249] = {.lex_state = 429, .external_lex_state = 66}, + [3250] = {.lex_state = 429, .external_lex_state = 66}, + [3251] = {.lex_state = 466, .external_lex_state = 68}, + [3252] = {.lex_state = 427, .external_lex_state = 61}, + [3253] = {.lex_state = 429, .external_lex_state = 66}, + [3254] = {.lex_state = 429, .external_lex_state = 66}, + [3255] = {.lex_state = 429, .external_lex_state = 66}, + [3256] = {.lex_state = 429, .external_lex_state = 66}, + [3257] = {.lex_state = 429, .external_lex_state = 66}, + [3258] = {.lex_state = 427, .external_lex_state = 61}, + [3259] = {.lex_state = 429, .external_lex_state = 66}, + [3260] = {.lex_state = 429, .external_lex_state = 66}, + [3261] = {.lex_state = 429, .external_lex_state = 66}, + [3262] = {.lex_state = 429, .external_lex_state = 66}, + [3263] = {.lex_state = 429, .external_lex_state = 66}, + [3264] = {.lex_state = 466, .external_lex_state = 68}, + [3265] = {.lex_state = 429, .external_lex_state = 66}, + [3266] = {.lex_state = 429, .external_lex_state = 66}, + [3267] = {.lex_state = 429, .external_lex_state = 66}, + [3268] = {.lex_state = 429, .external_lex_state = 66}, + [3269] = {.lex_state = 430, .external_lex_state = 61}, + [3270] = {.lex_state = 430, .external_lex_state = 61}, + [3271] = {.lex_state = 429, .external_lex_state = 66}, + [3272] = {.lex_state = 429, .external_lex_state = 66}, + [3273] = {.lex_state = 429, .external_lex_state = 66}, + [3274] = {.lex_state = 429, .external_lex_state = 66}, + [3275] = {.lex_state = 429, .external_lex_state = 66}, + [3276] = {.lex_state = 429, .external_lex_state = 66}, + [3277] = {.lex_state = 429, .external_lex_state = 66}, + [3278] = {.lex_state = 429, .external_lex_state = 66}, + [3279] = {.lex_state = 429, .external_lex_state = 66}, + [3280] = {.lex_state = 429, .external_lex_state = 66}, + [3281] = {.lex_state = 429, .external_lex_state = 66}, + [3282] = {.lex_state = 429, .external_lex_state = 66}, + [3283] = {.lex_state = 429, .external_lex_state = 66}, + [3284] = {.lex_state = 429, .external_lex_state = 66}, + [3285] = {.lex_state = 427, .external_lex_state = 61}, + [3286] = {.lex_state = 435, .external_lex_state = 61}, + [3287] = {.lex_state = 427, .external_lex_state = 61}, + [3288] = {.lex_state = 427, .external_lex_state = 61}, + [3289] = {.lex_state = 523, .external_lex_state = 67}, + [3290] = {.lex_state = 523, .external_lex_state = 67}, + [3291] = {.lex_state = 427, .external_lex_state = 61}, + [3292] = {.lex_state = 430, .external_lex_state = 61}, + [3293] = {.lex_state = 430, .external_lex_state = 61}, + [3294] = {.lex_state = 430, .external_lex_state = 61}, + [3295] = {.lex_state = 430, .external_lex_state = 61}, + [3296] = {.lex_state = 430, .external_lex_state = 61}, + [3297] = {.lex_state = 430, .external_lex_state = 61}, + [3298] = {.lex_state = 430, .external_lex_state = 61}, + [3299] = {.lex_state = 430, .external_lex_state = 61}, + [3300] = {.lex_state = 430, .external_lex_state = 61}, + [3301] = {.lex_state = 430, .external_lex_state = 61}, + [3302] = {.lex_state = 430, .external_lex_state = 61}, + [3303] = {.lex_state = 430, .external_lex_state = 61}, + [3304] = {.lex_state = 430, .external_lex_state = 61}, + [3305] = {.lex_state = 430, .external_lex_state = 61}, + [3306] = {.lex_state = 429, .external_lex_state = 66}, + [3307] = {.lex_state = 427, .external_lex_state = 61}, + [3308] = {.lex_state = 295, .external_lex_state = 69}, + [3309] = {.lex_state = 295, .external_lex_state = 69}, + [3310] = {.lex_state = 427, .external_lex_state = 61}, + [3311] = {.lex_state = 427, .external_lex_state = 61}, + [3312] = {.lex_state = 427, .external_lex_state = 61}, + [3313] = {.lex_state = 427, .external_lex_state = 61}, + [3314] = {.lex_state = 427, .external_lex_state = 61}, + [3315] = {.lex_state = 427, .external_lex_state = 61}, + [3316] = {.lex_state = 427, .external_lex_state = 61}, + [3317] = {.lex_state = 427, .external_lex_state = 40}, + [3318] = {.lex_state = 427, .external_lex_state = 61}, + [3319] = {.lex_state = 460, .external_lex_state = 35}, + [3320] = {.lex_state = 427, .external_lex_state = 61}, + [3321] = {.lex_state = 427, .external_lex_state = 61}, + [3322] = {.lex_state = 427, .external_lex_state = 61}, + [3323] = {.lex_state = 427, .external_lex_state = 61}, + [3324] = {.lex_state = 427, .external_lex_state = 61}, + [3325] = {.lex_state = 427, .external_lex_state = 40}, + [3326] = {.lex_state = 427, .external_lex_state = 40}, + [3327] = {.lex_state = 427, .external_lex_state = 40}, + [3328] = {.lex_state = 427, .external_lex_state = 40}, + [3329] = {.lex_state = 427, .external_lex_state = 40}, + [3330] = {.lex_state = 427, .external_lex_state = 40}, + [3331] = {.lex_state = 427, .external_lex_state = 40}, + [3332] = {.lex_state = 427, .external_lex_state = 40}, + [3333] = {.lex_state = 427, .external_lex_state = 40}, + [3334] = {.lex_state = 427, .external_lex_state = 40}, + [3335] = {.lex_state = 427, .external_lex_state = 40}, + [3336] = {.lex_state = 427, .external_lex_state = 40}, + [3337] = {.lex_state = 427, .external_lex_state = 40}, + [3338] = {.lex_state = 427, .external_lex_state = 40}, + [3339] = {.lex_state = 427, .external_lex_state = 40}, + [3340] = {.lex_state = 427, .external_lex_state = 40}, + [3341] = {.lex_state = 427, .external_lex_state = 40}, + [3342] = {.lex_state = 427, .external_lex_state = 61}, + [3343] = {.lex_state = 427, .external_lex_state = 61}, + [3344] = {.lex_state = 427, .external_lex_state = 61}, + [3345] = {.lex_state = 429, .external_lex_state = 66}, + [3346] = {.lex_state = 454, .external_lex_state = 48}, [3347] = {.lex_state = 454, .external_lex_state = 48}, - [3348] = {.lex_state = 526, .external_lex_state = 67}, - [3349] = {.lex_state = 453, .external_lex_state = 70}, - [3350] = {.lex_state = 296, .external_lex_state = 71}, - [3351] = {.lex_state = 453, .external_lex_state = 70}, - [3352] = {.lex_state = 453, .external_lex_state = 70}, - [3353] = {.lex_state = 526, .external_lex_state = 67}, - [3354] = {.lex_state = 453, .external_lex_state = 70}, - [3355] = {.lex_state = 296, .external_lex_state = 71}, - [3356] = {.lex_state = 453, .external_lex_state = 70}, - [3357] = {.lex_state = 454, .external_lex_state = 48}, - [3358] = {.lex_state = 453, .external_lex_state = 70}, - [3359] = {.lex_state = 453, .external_lex_state = 70}, - [3360] = {.lex_state = 296, .external_lex_state = 71}, - [3361] = {.lex_state = 453, .external_lex_state = 70}, - [3362] = {.lex_state = 453, .external_lex_state = 70}, - [3363] = {.lex_state = 269, .external_lex_state = 24}, - [3364] = {.lex_state = 453, .external_lex_state = 70}, - [3365] = {.lex_state = 296, .external_lex_state = 71}, - [3366] = {.lex_state = 475, .external_lex_state = 72}, - [3367] = {.lex_state = 296, .external_lex_state = 71}, - [3368] = {.lex_state = 467, .external_lex_state = 73}, - [3369] = {.lex_state = 269, .external_lex_state = 24}, - [3370] = {.lex_state = 467, .external_lex_state = 73}, - [3371] = {.lex_state = 467, .external_lex_state = 73}, - [3372] = {.lex_state = 453, .external_lex_state = 70}, - [3373] = {.lex_state = 453, .external_lex_state = 70}, - [3374] = {.lex_state = 453, .external_lex_state = 70}, - [3375] = {.lex_state = 526, .external_lex_state = 67}, - [3376] = {.lex_state = 453, .external_lex_state = 70}, - [3377] = {.lex_state = 526, .external_lex_state = 67}, - [3378] = {.lex_state = 475, .external_lex_state = 72}, - [3379] = {.lex_state = 453, .external_lex_state = 70}, - [3380] = {.lex_state = 453, .external_lex_state = 70}, - [3381] = {.lex_state = 472, .external_lex_state = 74}, - [3382] = {.lex_state = 453, .external_lex_state = 70}, - [3383] = {.lex_state = 453, .external_lex_state = 70}, - [3384] = {.lex_state = 472, .external_lex_state = 74}, - [3385] = {.lex_state = 475, .external_lex_state = 72}, - [3386] = {.lex_state = 475, .external_lex_state = 72}, - [3387] = {.lex_state = 472, .external_lex_state = 74}, - [3388] = {.lex_state = 472, .external_lex_state = 74}, - [3389] = {.lex_state = 472, .external_lex_state = 74}, - [3390] = {.lex_state = 472, .external_lex_state = 74}, - [3391] = {.lex_state = 472, .external_lex_state = 74}, - [3392] = {.lex_state = 472, .external_lex_state = 74}, - [3393] = {.lex_state = 472, .external_lex_state = 74}, - [3394] = {.lex_state = 472, .external_lex_state = 74}, - [3395] = {.lex_state = 472, .external_lex_state = 74}, - [3396] = {.lex_state = 472, .external_lex_state = 74}, - [3397] = {.lex_state = 472, .external_lex_state = 74}, - [3398] = {.lex_state = 472, .external_lex_state = 74}, - [3399] = {.lex_state = 472, .external_lex_state = 74}, - [3400] = {.lex_state = 472, .external_lex_state = 74}, - [3401] = {.lex_state = 472, .external_lex_state = 74}, - [3402] = {.lex_state = 453, .external_lex_state = 70}, - [3403] = {.lex_state = 475, .external_lex_state = 72}, + [3348] = {.lex_state = 454, .external_lex_state = 48}, + [3349] = {.lex_state = 454, .external_lex_state = 48}, + [3350] = {.lex_state = 454, .external_lex_state = 48}, + [3351] = {.lex_state = 295, .external_lex_state = 69}, + [3352] = {.lex_state = 295, .external_lex_state = 69}, + [3353] = {.lex_state = 460, .external_lex_state = 35}, + [3354] = {.lex_state = 295, .external_lex_state = 69}, + [3355] = {.lex_state = 525, .external_lex_state = 67}, + [3356] = {.lex_state = 454, .external_lex_state = 48}, + [3357] = {.lex_state = 255, .external_lex_state = 67}, + [3358] = {.lex_state = 525, .external_lex_state = 67}, + [3359] = {.lex_state = 255, .external_lex_state = 67}, + [3360] = {.lex_state = 255, .external_lex_state = 67}, + [3361] = {.lex_state = 255, .external_lex_state = 67}, + [3362] = {.lex_state = 258, .external_lex_state = 67}, + [3363] = {.lex_state = 258, .external_lex_state = 67}, + [3364] = {.lex_state = 258, .external_lex_state = 67}, + [3365] = {.lex_state = 295, .external_lex_state = 69}, + [3366] = {.lex_state = 258, .external_lex_state = 67}, + [3367] = {.lex_state = 295, .external_lex_state = 69}, + [3368] = {.lex_state = 295, .external_lex_state = 69}, + [3369] = {.lex_state = 295, .external_lex_state = 69}, + [3370] = {.lex_state = 454, .external_lex_state = 48}, + [3371] = {.lex_state = 454, .external_lex_state = 48}, + [3372] = {.lex_state = 454, .external_lex_state = 48}, + [3373] = {.lex_state = 454, .external_lex_state = 48}, + [3374] = {.lex_state = 295, .external_lex_state = 69}, + [3375] = {.lex_state = 454, .external_lex_state = 48}, + [3376] = {.lex_state = 454, .external_lex_state = 48}, + [3377] = {.lex_state = 295, .external_lex_state = 69}, + [3378] = {.lex_state = 523, .external_lex_state = 67}, + [3379] = {.lex_state = 295, .external_lex_state = 69}, + [3380] = {.lex_state = 523, .external_lex_state = 67}, + [3381] = {.lex_state = 295, .external_lex_state = 69}, + [3382] = {.lex_state = 454, .external_lex_state = 48}, + [3383] = {.lex_state = 454, .external_lex_state = 48}, + [3384] = {.lex_state = 454, .external_lex_state = 48}, + [3385] = {.lex_state = 454, .external_lex_state = 48}, + [3386] = {.lex_state = 454, .external_lex_state = 48}, + [3387] = {.lex_state = 454, .external_lex_state = 48}, + [3388] = {.lex_state = 295, .external_lex_state = 69}, + [3389] = {.lex_state = 295, .external_lex_state = 69}, + [3390] = {.lex_state = 454, .external_lex_state = 48}, + [3391] = {.lex_state = 295, .external_lex_state = 69}, + [3392] = {.lex_state = 295, .external_lex_state = 69}, + [3393] = {.lex_state = 295, .external_lex_state = 69}, + [3394] = {.lex_state = 454, .external_lex_state = 48}, + [3395] = {.lex_state = 295, .external_lex_state = 69}, + [3396] = {.lex_state = 295, .external_lex_state = 69}, + [3397] = {.lex_state = 295, .external_lex_state = 69}, + [3398] = {.lex_state = 525, .external_lex_state = 67}, + [3399] = {.lex_state = 525, .external_lex_state = 67}, + [3400] = {.lex_state = 454, .external_lex_state = 48}, + [3401] = {.lex_state = 454, .external_lex_state = 48}, + [3402] = {.lex_state = 454, .external_lex_state = 48}, + [3403] = {.lex_state = 454, .external_lex_state = 48}, [3404] = {.lex_state = 453, .external_lex_state = 70}, [3405] = {.lex_state = 453, .external_lex_state = 70}, - [3406] = {.lex_state = 453, .external_lex_state = 70}, - [3407] = {.lex_state = 453, .external_lex_state = 70}, - [3408] = {.lex_state = 453, .external_lex_state = 70}, - [3409] = {.lex_state = 453, .external_lex_state = 70}, - [3410] = {.lex_state = 453, .external_lex_state = 70}, - [3411] = {.lex_state = 453, .external_lex_state = 70}, - [3412] = {.lex_state = 453, .external_lex_state = 70}, - [3413] = {.lex_state = 453, .external_lex_state = 70}, + [3406] = {.lex_state = 296, .external_lex_state = 71}, + [3407] = {.lex_state = 296, .external_lex_state = 71}, + [3408] = {.lex_state = 296, .external_lex_state = 71}, + [3409] = {.lex_state = 266, .external_lex_state = 24}, + [3410] = {.lex_state = 296, .external_lex_state = 71}, + [3411] = {.lex_state = 454, .external_lex_state = 48}, + [3412] = {.lex_state = 467, .external_lex_state = 72}, + [3413] = {.lex_state = 467, .external_lex_state = 72}, [3414] = {.lex_state = 453, .external_lex_state = 70}, - [3415] = {.lex_state = 453, .external_lex_state = 70}, - [3416] = {.lex_state = 287, .external_lex_state = 75}, - [3417] = {.lex_state = 287, .external_lex_state = 75}, - [3418] = {.lex_state = 453, .external_lex_state = 70}, - [3419] = {.lex_state = 269, .external_lex_state = 24}, - [3420] = {.lex_state = 472, .external_lex_state = 74}, - [3421] = {.lex_state = 472, .external_lex_state = 74}, - [3422] = {.lex_state = 453, .external_lex_state = 70}, - [3423] = {.lex_state = 472, .external_lex_state = 74}, - [3424] = {.lex_state = 472, .external_lex_state = 74}, - [3425] = {.lex_state = 472, .external_lex_state = 74}, - [3426] = {.lex_state = 472, .external_lex_state = 74}, - [3427] = {.lex_state = 452, .external_lex_state = 35}, - [3428] = {.lex_state = 445, .external_lex_state = 76}, - [3429] = {.lex_state = 445, .external_lex_state = 76}, - [3430] = {.lex_state = 445, .external_lex_state = 76}, - [3431] = {.lex_state = 445, .external_lex_state = 76}, - [3432] = {.lex_state = 452, .external_lex_state = 35}, - [3433] = {.lex_state = 438, .external_lex_state = 77}, - [3434] = {.lex_state = 445, .external_lex_state = 76}, - [3435] = {.lex_state = 445, .external_lex_state = 76}, - [3436] = {.lex_state = 445, .external_lex_state = 76}, - [3437] = {.lex_state = 445, .external_lex_state = 76}, - [3438] = {.lex_state = 445, .external_lex_state = 76}, - [3439] = {.lex_state = 445, .external_lex_state = 76}, - [3440] = {.lex_state = 445, .external_lex_state = 76}, - [3441] = {.lex_state = 445, .external_lex_state = 76}, - [3442] = {.lex_state = 452, .external_lex_state = 35}, - [3443] = {.lex_state = 438, .external_lex_state = 77}, - [3444] = {.lex_state = 445, .external_lex_state = 76}, - [3445] = {.lex_state = 445, .external_lex_state = 76}, - [3446] = {.lex_state = 445, .external_lex_state = 76}, - [3447] = {.lex_state = 445, .external_lex_state = 76}, - [3448] = {.lex_state = 445, .external_lex_state = 76}, - [3449] = {.lex_state = 452, .external_lex_state = 35}, - [3450] = {.lex_state = 261, .external_lex_state = 67}, - [3451] = {.lex_state = 452, .external_lex_state = 35}, - [3452] = {.lex_state = 452, .external_lex_state = 35}, - [3453] = {.lex_state = 445, .external_lex_state = 76}, - [3454] = {.lex_state = 452, .external_lex_state = 35}, - [3455] = {.lex_state = 261, .external_lex_state = 67}, - [3456] = {.lex_state = 445, .external_lex_state = 76}, - [3457] = {.lex_state = 445, .external_lex_state = 76}, - [3458] = {.lex_state = 445, .external_lex_state = 76}, - [3459] = {.lex_state = 445, .external_lex_state = 76}, - [3460] = {.lex_state = 454, .external_lex_state = 78}, - [3461] = {.lex_state = 445, .external_lex_state = 76}, - [3462] = {.lex_state = 454, .external_lex_state = 78}, - [3463] = {.lex_state = 445, .external_lex_state = 76}, - [3464] = {.lex_state = 445, .external_lex_state = 76}, - [3465] = {.lex_state = 445, .external_lex_state = 76}, - [3466] = {.lex_state = 445, .external_lex_state = 76}, - [3467] = {.lex_state = 445, .external_lex_state = 76}, - [3468] = {.lex_state = 454, .external_lex_state = 78}, - [3469] = {.lex_state = 445, .external_lex_state = 76}, - [3470] = {.lex_state = 454, .external_lex_state = 78}, - [3471] = {.lex_state = 445, .external_lex_state = 76}, - [3472] = {.lex_state = 454, .external_lex_state = 78}, - [3473] = {.lex_state = 454, .external_lex_state = 78}, - [3474] = {.lex_state = 454, .external_lex_state = 78}, - [3475] = {.lex_state = 445, .external_lex_state = 76}, - [3476] = {.lex_state = 454, .external_lex_state = 78}, - [3477] = {.lex_state = 454, .external_lex_state = 78}, - [3478] = {.lex_state = 454, .external_lex_state = 78}, - [3479] = {.lex_state = 454, .external_lex_state = 78}, - [3480] = {.lex_state = 454, .external_lex_state = 78}, - [3481] = {.lex_state = 454, .external_lex_state = 78}, - [3482] = {.lex_state = 454, .external_lex_state = 78}, - [3483] = {.lex_state = 454, .external_lex_state = 78}, - [3484] = {.lex_state = 454, .external_lex_state = 78}, - [3485] = {.lex_state = 454, .external_lex_state = 78}, - [3486] = {.lex_state = 454, .external_lex_state = 78}, - [3487] = {.lex_state = 454, .external_lex_state = 78}, - [3488] = {.lex_state = 454, .external_lex_state = 78}, - [3489] = {.lex_state = 454, .external_lex_state = 78}, - [3490] = {.lex_state = 454, .external_lex_state = 78}, - [3491] = {.lex_state = 452, .external_lex_state = 35}, - [3492] = {.lex_state = 257, .external_lex_state = 71}, - [3493] = {.lex_state = 445, .external_lex_state = 76}, + [3415] = {.lex_state = 467, .external_lex_state = 72}, + [3416] = {.lex_state = 475, .external_lex_state = 73}, + [3417] = {.lex_state = 453, .external_lex_state = 70}, + [3418] = {.lex_state = 525, .external_lex_state = 67}, + [3419] = {.lex_state = 525, .external_lex_state = 67}, + [3420] = {.lex_state = 266, .external_lex_state = 24}, + [3421] = {.lex_state = 453, .external_lex_state = 70}, + [3422] = {.lex_state = 525, .external_lex_state = 67}, + [3423] = {.lex_state = 453, .external_lex_state = 70}, + [3424] = {.lex_state = 525, .external_lex_state = 67}, + [3425] = {.lex_state = 453, .external_lex_state = 70}, + [3426] = {.lex_state = 453, .external_lex_state = 70}, + [3427] = {.lex_state = 453, .external_lex_state = 70}, + [3428] = {.lex_state = 453, .external_lex_state = 70}, + [3429] = {.lex_state = 453, .external_lex_state = 70}, + [3430] = {.lex_state = 453, .external_lex_state = 70}, + [3431] = {.lex_state = 453, .external_lex_state = 70}, + [3432] = {.lex_state = 453, .external_lex_state = 70}, + [3433] = {.lex_state = 296, .external_lex_state = 71}, + [3434] = {.lex_state = 453, .external_lex_state = 70}, + [3435] = {.lex_state = 472, .external_lex_state = 74}, + [3436] = {.lex_state = 472, .external_lex_state = 74}, + [3437] = {.lex_state = 472, .external_lex_state = 74}, + [3438] = {.lex_state = 472, .external_lex_state = 74}, + [3439] = {.lex_state = 472, .external_lex_state = 74}, + [3440] = {.lex_state = 472, .external_lex_state = 74}, + [3441] = {.lex_state = 453, .external_lex_state = 70}, + [3442] = {.lex_state = 472, .external_lex_state = 74}, + [3443] = {.lex_state = 475, .external_lex_state = 73}, + [3444] = {.lex_state = 472, .external_lex_state = 74}, + [3445] = {.lex_state = 475, .external_lex_state = 73}, + [3446] = {.lex_state = 472, .external_lex_state = 74}, + [3447] = {.lex_state = 453, .external_lex_state = 70}, + [3448] = {.lex_state = 453, .external_lex_state = 70}, + [3449] = {.lex_state = 453, .external_lex_state = 70}, + [3450] = {.lex_state = 472, .external_lex_state = 74}, + [3451] = {.lex_state = 472, .external_lex_state = 74}, + [3452] = {.lex_state = 287, .external_lex_state = 75}, + [3453] = {.lex_state = 453, .external_lex_state = 70}, + [3454] = {.lex_state = 453, .external_lex_state = 70}, + [3455] = {.lex_state = 472, .external_lex_state = 74}, + [3456] = {.lex_state = 475, .external_lex_state = 73}, + [3457] = {.lex_state = 472, .external_lex_state = 74}, + [3458] = {.lex_state = 266, .external_lex_state = 24}, + [3459] = {.lex_state = 453, .external_lex_state = 70}, + [3460] = {.lex_state = 453, .external_lex_state = 70}, + [3461] = {.lex_state = 472, .external_lex_state = 74}, + [3462] = {.lex_state = 453, .external_lex_state = 70}, + [3463] = {.lex_state = 453, .external_lex_state = 70}, + [3464] = {.lex_state = 472, .external_lex_state = 74}, + [3465] = {.lex_state = 287, .external_lex_state = 75}, + [3466] = {.lex_state = 453, .external_lex_state = 70}, + [3467] = {.lex_state = 453, .external_lex_state = 70}, + [3468] = {.lex_state = 472, .external_lex_state = 74}, + [3469] = {.lex_state = 453, .external_lex_state = 70}, + [3470] = {.lex_state = 453, .external_lex_state = 70}, + [3471] = {.lex_state = 453, .external_lex_state = 70}, + [3472] = {.lex_state = 453, .external_lex_state = 70}, + [3473] = {.lex_state = 472, .external_lex_state = 74}, + [3474] = {.lex_state = 472, .external_lex_state = 74}, + [3475] = {.lex_state = 472, .external_lex_state = 74}, + [3476] = {.lex_state = 472, .external_lex_state = 74}, + [3477] = {.lex_state = 472, .external_lex_state = 74}, + [3478] = {.lex_state = 453, .external_lex_state = 70}, + [3479] = {.lex_state = 472, .external_lex_state = 74}, + [3480] = {.lex_state = 453, .external_lex_state = 70}, + [3481] = {.lex_state = 472, .external_lex_state = 74}, + [3482] = {.lex_state = 475, .external_lex_state = 73}, + [3483] = {.lex_state = 452, .external_lex_state = 32}, + [3484] = {.lex_state = 445, .external_lex_state = 76}, + [3485] = {.lex_state = 452, .external_lex_state = 32}, + [3486] = {.lex_state = 445, .external_lex_state = 76}, + [3487] = {.lex_state = 445, .external_lex_state = 76}, + [3488] = {.lex_state = 445, .external_lex_state = 76}, + [3489] = {.lex_state = 445, .external_lex_state = 76}, + [3490] = {.lex_state = 452, .external_lex_state = 32}, + [3491] = {.lex_state = 445, .external_lex_state = 76}, + [3492] = {.lex_state = 445, .external_lex_state = 76}, + [3493] = {.lex_state = 438, .external_lex_state = 77}, [3494] = {.lex_state = 445, .external_lex_state = 76}, - [3495] = {.lex_state = 445, .external_lex_state = 76}, - [3496] = {.lex_state = 445, .external_lex_state = 76}, + [3495] = {.lex_state = 261, .external_lex_state = 67}, + [3496] = {.lex_state = 261, .external_lex_state = 67}, [3497] = {.lex_state = 445, .external_lex_state = 76}, [3498] = {.lex_state = 445, .external_lex_state = 76}, - [3499] = {.lex_state = 454, .external_lex_state = 79}, - [3500] = {.lex_state = 445, .external_lex_state = 76}, - [3501] = {.lex_state = 445, .external_lex_state = 76}, + [3499] = {.lex_state = 445, .external_lex_state = 76}, + [3500] = {.lex_state = 452, .external_lex_state = 32}, + [3501] = {.lex_state = 452, .external_lex_state = 32}, [3502] = {.lex_state = 445, .external_lex_state = 76}, - [3503] = {.lex_state = 475, .external_lex_state = 80}, - [3504] = {.lex_state = 445, .external_lex_state = 76}, + [3503] = {.lex_state = 445, .external_lex_state = 76}, + [3504] = {.lex_state = 438, .external_lex_state = 77}, [3505] = {.lex_state = 445, .external_lex_state = 76}, - [3506] = {.lex_state = 445, .external_lex_state = 76}, - [3507] = {.lex_state = 454, .external_lex_state = 79}, - [3508] = {.lex_state = 445, .external_lex_state = 76}, - [3509] = {.lex_state = 264, .external_lex_state = 67}, + [3506] = {.lex_state = 452, .external_lex_state = 32}, + [3507] = {.lex_state = 445, .external_lex_state = 76}, + [3508] = {.lex_state = 452, .external_lex_state = 32}, + [3509] = {.lex_state = 445, .external_lex_state = 76}, [3510] = {.lex_state = 445, .external_lex_state = 76}, [3511] = {.lex_state = 445, .external_lex_state = 76}, - [3512] = {.lex_state = 264, .external_lex_state = 67}, + [3512] = {.lex_state = 445, .external_lex_state = 76}, [3513] = {.lex_state = 445, .external_lex_state = 76}, [3514] = {.lex_state = 445, .external_lex_state = 76}, [3515] = {.lex_state = 445, .external_lex_state = 76}, - [3516] = {.lex_state = 452, .external_lex_state = 35}, - [3517] = {.lex_state = 257, .external_lex_state = 71}, - [3518] = {.lex_state = 257, .external_lex_state = 71}, + [3516] = {.lex_state = 445, .external_lex_state = 76}, + [3517] = {.lex_state = 445, .external_lex_state = 76}, + [3518] = {.lex_state = 454, .external_lex_state = 78}, [3519] = {.lex_state = 445, .external_lex_state = 76}, - [3520] = {.lex_state = 452, .external_lex_state = 35}, - [3521] = {.lex_state = 445, .external_lex_state = 76}, + [3520] = {.lex_state = 445, .external_lex_state = 76}, + [3521] = {.lex_state = 257, .external_lex_state = 71}, [3522] = {.lex_state = 445, .external_lex_state = 76}, [3523] = {.lex_state = 445, .external_lex_state = 76}, - [3524] = {.lex_state = 454, .external_lex_state = 78}, + [3524] = {.lex_state = 445, .external_lex_state = 76}, [3525] = {.lex_state = 445, .external_lex_state = 76}, - [3526] = {.lex_state = 257, .external_lex_state = 71}, + [3526] = {.lex_state = 454, .external_lex_state = 78}, [3527] = {.lex_state = 445, .external_lex_state = 76}, - [3528] = {.lex_state = 257, .external_lex_state = 71}, - [3529] = {.lex_state = 257, .external_lex_state = 71}, - [3530] = {.lex_state = 454, .external_lex_state = 78}, + [3528] = {.lex_state = 445, .external_lex_state = 76}, + [3529] = {.lex_state = 454, .external_lex_state = 78}, + [3530] = {.lex_state = 445, .external_lex_state = 76}, [3531] = {.lex_state = 445, .external_lex_state = 76}, [3532] = {.lex_state = 445, .external_lex_state = 76}, [3533] = {.lex_state = 445, .external_lex_state = 76}, [3534] = {.lex_state = 445, .external_lex_state = 76}, - [3535] = {.lex_state = 257, .external_lex_state = 71}, - [3536] = {.lex_state = 257, .external_lex_state = 71}, + [3535] = {.lex_state = 445, .external_lex_state = 76}, + [3536] = {.lex_state = 445, .external_lex_state = 76}, [3537] = {.lex_state = 445, .external_lex_state = 76}, [3538] = {.lex_state = 445, .external_lex_state = 76}, - [3539] = {.lex_state = 445, .external_lex_state = 76}, - [3540] = {.lex_state = 257, .external_lex_state = 71}, - [3541] = {.lex_state = 257, .external_lex_state = 71}, - [3542] = {.lex_state = 454, .external_lex_state = 78}, + [3539] = {.lex_state = 454, .external_lex_state = 78}, + [3540] = {.lex_state = 454, .external_lex_state = 78}, + [3541] = {.lex_state = 454, .external_lex_state = 78}, + [3542] = {.lex_state = 445, .external_lex_state = 76}, [3543] = {.lex_state = 445, .external_lex_state = 76}, [3544] = {.lex_state = 445, .external_lex_state = 76}, - [3545] = {.lex_state = 454, .external_lex_state = 78}, - [3546] = {.lex_state = 445, .external_lex_state = 76}, - [3547] = {.lex_state = 445, .external_lex_state = 76}, - [3548] = {.lex_state = 445, .external_lex_state = 76}, + [3545] = {.lex_state = 445, .external_lex_state = 76}, + [3546] = {.lex_state = 452, .external_lex_state = 32}, + [3547] = {.lex_state = 452, .external_lex_state = 32}, + [3548] = {.lex_state = 257, .external_lex_state = 71}, [3549] = {.lex_state = 445, .external_lex_state = 76}, - [3550] = {.lex_state = 454, .external_lex_state = 78}, - [3551] = {.lex_state = 257, .external_lex_state = 71}, - [3552] = {.lex_state = 454, .external_lex_state = 78}, + [3550] = {.lex_state = 445, .external_lex_state = 76}, + [3551] = {.lex_state = 264, .external_lex_state = 67}, + [3552] = {.lex_state = 257, .external_lex_state = 71}, [3553] = {.lex_state = 445, .external_lex_state = 76}, [3554] = {.lex_state = 445, .external_lex_state = 76}, [3555] = {.lex_state = 445, .external_lex_state = 76}, [3556] = {.lex_state = 445, .external_lex_state = 76}, - [3557] = {.lex_state = 445, .external_lex_state = 76}, + [3557] = {.lex_state = 454, .external_lex_state = 78}, [3558] = {.lex_state = 445, .external_lex_state = 76}, - [3559] = {.lex_state = 445, .external_lex_state = 76}, + [3559] = {.lex_state = 454, .external_lex_state = 78}, [3560] = {.lex_state = 445, .external_lex_state = 76}, - [3561] = {.lex_state = 454, .external_lex_state = 78}, + [3561] = {.lex_state = 445, .external_lex_state = 76}, [3562] = {.lex_state = 454, .external_lex_state = 78}, [3563] = {.lex_state = 445, .external_lex_state = 76}, - [3564] = {.lex_state = 454, .external_lex_state = 78}, + [3564] = {.lex_state = 454, .external_lex_state = 79}, [3565] = {.lex_state = 445, .external_lex_state = 76}, [3566] = {.lex_state = 445, .external_lex_state = 76}, [3567] = {.lex_state = 445, .external_lex_state = 76}, @@ -24683,8 +24690,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3570] = {.lex_state = 445, .external_lex_state = 76}, [3571] = {.lex_state = 445, .external_lex_state = 76}, [3572] = {.lex_state = 445, .external_lex_state = 76}, - [3573] = {.lex_state = 445, .external_lex_state = 76}, - [3574] = {.lex_state = 445, .external_lex_state = 76}, + [3573] = {.lex_state = 257, .external_lex_state = 71}, + [3574] = {.lex_state = 475, .external_lex_state = 80}, [3575] = {.lex_state = 445, .external_lex_state = 76}, [3576] = {.lex_state = 445, .external_lex_state = 76}, [3577] = {.lex_state = 445, .external_lex_state = 76}, @@ -24699,37 +24706,37 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3586] = {.lex_state = 445, .external_lex_state = 76}, [3587] = {.lex_state = 445, .external_lex_state = 76}, [3588] = {.lex_state = 445, .external_lex_state = 76}, - [3589] = {.lex_state = 445, .external_lex_state = 76}, + [3589] = {.lex_state = 257, .external_lex_state = 71}, [3590] = {.lex_state = 445, .external_lex_state = 76}, [3591] = {.lex_state = 445, .external_lex_state = 76}, [3592] = {.lex_state = 445, .external_lex_state = 76}, [3593] = {.lex_state = 445, .external_lex_state = 76}, [3594] = {.lex_state = 445, .external_lex_state = 76}, - [3595] = {.lex_state = 445, .external_lex_state = 76}, + [3595] = {.lex_state = 439, .external_lex_state = 81}, [3596] = {.lex_state = 445, .external_lex_state = 76}, [3597] = {.lex_state = 445, .external_lex_state = 76}, - [3598] = {.lex_state = 445, .external_lex_state = 76}, + [3598] = {.lex_state = 454, .external_lex_state = 78}, [3599] = {.lex_state = 445, .external_lex_state = 76}, [3600] = {.lex_state = 445, .external_lex_state = 76}, - [3601] = {.lex_state = 445, .external_lex_state = 76}, - [3602] = {.lex_state = 445, .external_lex_state = 76}, - [3603] = {.lex_state = 445, .external_lex_state = 76}, + [3601] = {.lex_state = 454, .external_lex_state = 78}, + [3602] = {.lex_state = 454, .external_lex_state = 78}, + [3603] = {.lex_state = 454, .external_lex_state = 78}, [3604] = {.lex_state = 445, .external_lex_state = 76}, [3605] = {.lex_state = 445, .external_lex_state = 76}, - [3606] = {.lex_state = 445, .external_lex_state = 76}, + [3606] = {.lex_state = 454, .external_lex_state = 78}, [3607] = {.lex_state = 445, .external_lex_state = 76}, [3608] = {.lex_state = 445, .external_lex_state = 76}, [3609] = {.lex_state = 445, .external_lex_state = 76}, - [3610] = {.lex_state = 445, .external_lex_state = 76}, + [3610] = {.lex_state = 439, .external_lex_state = 81}, [3611] = {.lex_state = 445, .external_lex_state = 76}, [3612] = {.lex_state = 445, .external_lex_state = 76}, [3613] = {.lex_state = 445, .external_lex_state = 76}, [3614] = {.lex_state = 445, .external_lex_state = 76}, [3615] = {.lex_state = 445, .external_lex_state = 76}, - [3616] = {.lex_state = 445, .external_lex_state = 76}, + [3616] = {.lex_state = 454, .external_lex_state = 78}, [3617] = {.lex_state = 445, .external_lex_state = 76}, [3618] = {.lex_state = 445, .external_lex_state = 76}, - [3619] = {.lex_state = 445, .external_lex_state = 76}, + [3619] = {.lex_state = 454, .external_lex_state = 78}, [3620] = {.lex_state = 445, .external_lex_state = 76}, [3621] = {.lex_state = 445, .external_lex_state = 76}, [3622] = {.lex_state = 445, .external_lex_state = 76}, @@ -24744,16 +24751,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3631] = {.lex_state = 445, .external_lex_state = 76}, [3632] = {.lex_state = 445, .external_lex_state = 76}, [3633] = {.lex_state = 445, .external_lex_state = 76}, - [3634] = {.lex_state = 445, .external_lex_state = 76}, + [3634] = {.lex_state = 454, .external_lex_state = 78}, [3635] = {.lex_state = 445, .external_lex_state = 76}, [3636] = {.lex_state = 445, .external_lex_state = 76}, [3637] = {.lex_state = 445, .external_lex_state = 76}, [3638] = {.lex_state = 445, .external_lex_state = 76}, [3639] = {.lex_state = 445, .external_lex_state = 76}, - [3640] = {.lex_state = 439, .external_lex_state = 81}, + [3640] = {.lex_state = 454, .external_lex_state = 78}, [3641] = {.lex_state = 445, .external_lex_state = 76}, [3642] = {.lex_state = 445, .external_lex_state = 76}, - [3643] = {.lex_state = 439, .external_lex_state = 81}, + [3643] = {.lex_state = 445, .external_lex_state = 76}, [3644] = {.lex_state = 445, .external_lex_state = 76}, [3645] = {.lex_state = 445, .external_lex_state = 76}, [3646] = {.lex_state = 445, .external_lex_state = 76}, @@ -24766,17 +24773,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3653] = {.lex_state = 445, .external_lex_state = 76}, [3654] = {.lex_state = 445, .external_lex_state = 76}, [3655] = {.lex_state = 445, .external_lex_state = 76}, - [3656] = {.lex_state = 445, .external_lex_state = 76}, + [3656] = {.lex_state = 452, .external_lex_state = 32}, [3657] = {.lex_state = 445, .external_lex_state = 76}, [3658] = {.lex_state = 445, .external_lex_state = 76}, [3659] = {.lex_state = 445, .external_lex_state = 76}, - [3660] = {.lex_state = 445, .external_lex_state = 76}, - [3661] = {.lex_state = 445, .external_lex_state = 76}, - [3662] = {.lex_state = 452, .external_lex_state = 35}, + [3660] = {.lex_state = 454, .external_lex_state = 78}, + [3661] = {.lex_state = 454, .external_lex_state = 78}, + [3662] = {.lex_state = 445, .external_lex_state = 76}, [3663] = {.lex_state = 445, .external_lex_state = 76}, [3664] = {.lex_state = 445, .external_lex_state = 76}, [3665] = {.lex_state = 445, .external_lex_state = 76}, - [3666] = {.lex_state = 445, .external_lex_state = 76}, + [3666] = {.lex_state = 257, .external_lex_state = 71}, [3667] = {.lex_state = 445, .external_lex_state = 76}, [3668] = {.lex_state = 445, .external_lex_state = 76}, [3669] = {.lex_state = 445, .external_lex_state = 76}, @@ -24788,1947 +24795,1947 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3675] = {.lex_state = 445, .external_lex_state = 76}, [3676] = {.lex_state = 445, .external_lex_state = 76}, [3677] = {.lex_state = 445, .external_lex_state = 76}, - [3678] = {.lex_state = 445, .external_lex_state = 76}, - [3679] = {.lex_state = 445, .external_lex_state = 76}, + [3678] = {.lex_state = 264, .external_lex_state = 67}, + [3679] = {.lex_state = 257, .external_lex_state = 71}, [3680] = {.lex_state = 445, .external_lex_state = 76}, [3681] = {.lex_state = 445, .external_lex_state = 76}, - [3682] = {.lex_state = 445, .external_lex_state = 76}, + [3682] = {.lex_state = 452, .external_lex_state = 32}, [3683] = {.lex_state = 445, .external_lex_state = 76}, [3684] = {.lex_state = 445, .external_lex_state = 76}, [3685] = {.lex_state = 445, .external_lex_state = 76}, [3686] = {.lex_state = 445, .external_lex_state = 76}, - [3687] = {.lex_state = 264, .external_lex_state = 67}, - [3688] = {.lex_state = 264, .external_lex_state = 67}, - [3689] = {.lex_state = 454, .external_lex_state = 79}, + [3687] = {.lex_state = 445, .external_lex_state = 76}, + [3688] = {.lex_state = 452, .external_lex_state = 32}, + [3689] = {.lex_state = 454, .external_lex_state = 78}, [3690] = {.lex_state = 445, .external_lex_state = 76}, - [3691] = {.lex_state = 452, .external_lex_state = 35}, - [3692] = {.lex_state = 452, .external_lex_state = 35}, + [3691] = {.lex_state = 445, .external_lex_state = 76}, + [3692] = {.lex_state = 445, .external_lex_state = 76}, [3693] = {.lex_state = 445, .external_lex_state = 76}, [3694] = {.lex_state = 445, .external_lex_state = 76}, [3695] = {.lex_state = 445, .external_lex_state = 76}, - [3696] = {.lex_state = 452, .external_lex_state = 35}, - [3697] = {.lex_state = 445, .external_lex_state = 76}, + [3696] = {.lex_state = 445, .external_lex_state = 76}, + [3697] = {.lex_state = 257, .external_lex_state = 71}, [3698] = {.lex_state = 454, .external_lex_state = 78}, [3699] = {.lex_state = 445, .external_lex_state = 76}, - [3700] = {.lex_state = 454, .external_lex_state = 78}, - [3701] = {.lex_state = 452, .external_lex_state = 35}, - [3702] = {.lex_state = 445, .external_lex_state = 76}, - [3703] = {.lex_state = 452, .external_lex_state = 35}, + [3700] = {.lex_state = 445, .external_lex_state = 76}, + [3701] = {.lex_state = 445, .external_lex_state = 76}, + [3702] = {.lex_state = 452, .external_lex_state = 32}, + [3703] = {.lex_state = 445, .external_lex_state = 76}, [3704] = {.lex_state = 445, .external_lex_state = 76}, [3705] = {.lex_state = 445, .external_lex_state = 76}, [3706] = {.lex_state = 445, .external_lex_state = 76}, - [3707] = {.lex_state = 440, .external_lex_state = 77}, + [3707] = {.lex_state = 445, .external_lex_state = 76}, [3708] = {.lex_state = 440, .external_lex_state = 77}, [3709] = {.lex_state = 445, .external_lex_state = 76}, - [3710] = {.lex_state = 411, .external_lex_state = 82}, + [3710] = {.lex_state = 445, .external_lex_state = 76}, [3711] = {.lex_state = 454, .external_lex_state = 78}, - [3712] = {.lex_state = 454, .external_lex_state = 78}, - [3713] = {.lex_state = 454, .external_lex_state = 83}, - [3714] = {.lex_state = 454, .external_lex_state = 78}, - [3715] = {.lex_state = 473, .external_lex_state = 84}, + [3712] = {.lex_state = 440, .external_lex_state = 77}, + [3713] = {.lex_state = 445, .external_lex_state = 76}, + [3714] = {.lex_state = 445, .external_lex_state = 76}, + [3715] = {.lex_state = 454, .external_lex_state = 78}, [3716] = {.lex_state = 454, .external_lex_state = 78}, [3717] = {.lex_state = 454, .external_lex_state = 78}, - [3718] = {.lex_state = 473, .external_lex_state = 84}, - [3719] = {.lex_state = 454, .external_lex_state = 78}, + [3718] = {.lex_state = 454, .external_lex_state = 78}, + [3719] = {.lex_state = 445, .external_lex_state = 76}, [3720] = {.lex_state = 454, .external_lex_state = 78}, - [3721] = {.lex_state = 454, .external_lex_state = 78}, - [3722] = {.lex_state = 454, .external_lex_state = 78}, - [3723] = {.lex_state = 454, .external_lex_state = 78}, - [3724] = {.lex_state = 454, .external_lex_state = 78}, - [3725] = {.lex_state = 454, .external_lex_state = 78}, - [3726] = {.lex_state = 454, .external_lex_state = 78}, - [3727] = {.lex_state = 454, .external_lex_state = 78}, - [3728] = {.lex_state = 454, .external_lex_state = 83}, - [3729] = {.lex_state = 473, .external_lex_state = 84}, - [3730] = {.lex_state = 454, .external_lex_state = 78}, - [3731] = {.lex_state = 454, .external_lex_state = 78}, - [3732] = {.lex_state = 454, .external_lex_state = 78}, - [3733] = {.lex_state = 454, .external_lex_state = 78}, - [3734] = {.lex_state = 454, .external_lex_state = 78}, - [3735] = {.lex_state = 473, .external_lex_state = 84}, - [3736] = {.lex_state = 473, .external_lex_state = 84}, - [3737] = {.lex_state = 454, .external_lex_state = 78}, - [3738] = {.lex_state = 454, .external_lex_state = 78}, - [3739] = {.lex_state = 454, .external_lex_state = 78}, - [3740] = {.lex_state = 473, .external_lex_state = 84}, - [3741] = {.lex_state = 454, .external_lex_state = 78}, - [3742] = {.lex_state = 454, .external_lex_state = 78}, - [3743] = {.lex_state = 454, .external_lex_state = 83}, - [3744] = {.lex_state = 454, .external_lex_state = 78}, - [3745] = {.lex_state = 454, .external_lex_state = 78}, - [3746] = {.lex_state = 289, .external_lex_state = 75}, - [3747] = {.lex_state = 473, .external_lex_state = 84}, - [3748] = {.lex_state = 454, .external_lex_state = 78}, + [3721] = {.lex_state = 452, .external_lex_state = 32}, + [3722] = {.lex_state = 445, .external_lex_state = 76}, + [3723] = {.lex_state = 257, .external_lex_state = 71}, + [3724] = {.lex_state = 257, .external_lex_state = 71}, + [3725] = {.lex_state = 445, .external_lex_state = 76}, + [3726] = {.lex_state = 445, .external_lex_state = 76}, + [3727] = {.lex_state = 445, .external_lex_state = 76}, + [3728] = {.lex_state = 445, .external_lex_state = 76}, + [3729] = {.lex_state = 454, .external_lex_state = 78}, + [3730] = {.lex_state = 445, .external_lex_state = 76}, + [3731] = {.lex_state = 445, .external_lex_state = 76}, + [3732] = {.lex_state = 445, .external_lex_state = 76}, + [3733] = {.lex_state = 445, .external_lex_state = 76}, + [3734] = {.lex_state = 445, .external_lex_state = 76}, + [3735] = {.lex_state = 454, .external_lex_state = 78}, + [3736] = {.lex_state = 445, .external_lex_state = 76}, + [3737] = {.lex_state = 445, .external_lex_state = 76}, + [3738] = {.lex_state = 445, .external_lex_state = 76}, + [3739] = {.lex_state = 454, .external_lex_state = 79}, + [3740] = {.lex_state = 454, .external_lex_state = 78}, + [3741] = {.lex_state = 445, .external_lex_state = 76}, + [3742] = {.lex_state = 445, .external_lex_state = 76}, + [3743] = {.lex_state = 452, .external_lex_state = 32}, + [3744] = {.lex_state = 445, .external_lex_state = 76}, + [3745] = {.lex_state = 445, .external_lex_state = 76}, + [3746] = {.lex_state = 445, .external_lex_state = 76}, + [3747] = {.lex_state = 264, .external_lex_state = 67}, + [3748] = {.lex_state = 445, .external_lex_state = 76}, [3749] = {.lex_state = 454, .external_lex_state = 78}, - [3750] = {.lex_state = 473, .external_lex_state = 84}, - [3751] = {.lex_state = 454, .external_lex_state = 78}, - [3752] = {.lex_state = 454, .external_lex_state = 78}, - [3753] = {.lex_state = 454, .external_lex_state = 78}, - [3754] = {.lex_state = 454, .external_lex_state = 78}, - [3755] = {.lex_state = 454, .external_lex_state = 78}, - [3756] = {.lex_state = 454, .external_lex_state = 78}, - [3757] = {.lex_state = 454, .external_lex_state = 78}, - [3758] = {.lex_state = 454, .external_lex_state = 78}, - [3759] = {.lex_state = 473, .external_lex_state = 84}, - [3760] = {.lex_state = 454, .external_lex_state = 78}, - [3761] = {.lex_state = 473, .external_lex_state = 84}, - [3762] = {.lex_state = 454, .external_lex_state = 78}, + [3750] = {.lex_state = 445, .external_lex_state = 76}, + [3751] = {.lex_state = 445, .external_lex_state = 76}, + [3752] = {.lex_state = 452, .external_lex_state = 32}, + [3753] = {.lex_state = 445, .external_lex_state = 76}, + [3754] = {.lex_state = 257, .external_lex_state = 71}, + [3755] = {.lex_state = 445, .external_lex_state = 76}, + [3756] = {.lex_state = 445, .external_lex_state = 76}, + [3757] = {.lex_state = 445, .external_lex_state = 76}, + [3758] = {.lex_state = 445, .external_lex_state = 76}, + [3759] = {.lex_state = 445, .external_lex_state = 76}, + [3760] = {.lex_state = 454, .external_lex_state = 79}, + [3761] = {.lex_state = 445, .external_lex_state = 76}, + [3762] = {.lex_state = 264, .external_lex_state = 67}, [3763] = {.lex_state = 454, .external_lex_state = 78}, - [3764] = {.lex_state = 454, .external_lex_state = 78}, - [3765] = {.lex_state = 454, .external_lex_state = 78}, - [3766] = {.lex_state = 454, .external_lex_state = 78}, - [3767] = {.lex_state = 473, .external_lex_state = 84}, - [3768] = {.lex_state = 473, .external_lex_state = 84}, - [3769] = {.lex_state = 454, .external_lex_state = 78}, - [3770] = {.lex_state = 454, .external_lex_state = 78}, - [3771] = {.lex_state = 454, .external_lex_state = 78}, - [3772] = {.lex_state = 454, .external_lex_state = 83}, - [3773] = {.lex_state = 454, .external_lex_state = 78}, - [3774] = {.lex_state = 441, .external_lex_state = 81}, - [3775] = {.lex_state = 441, .external_lex_state = 81}, - [3776] = {.lex_state = 454, .external_lex_state = 78}, - [3777] = {.lex_state = 441, .external_lex_state = 81}, - [3778] = {.lex_state = 454, .external_lex_state = 78}, + [3764] = {.lex_state = 445, .external_lex_state = 76}, + [3765] = {.lex_state = 445, .external_lex_state = 76}, + [3766] = {.lex_state = 289, .external_lex_state = 75}, + [3767] = {.lex_state = 441, .external_lex_state = 81}, + [3768] = {.lex_state = 473, .external_lex_state = 82}, + [3769] = {.lex_state = 473, .external_lex_state = 82}, + [3770] = {.lex_state = 454, .external_lex_state = 83}, + [3771] = {.lex_state = 289, .external_lex_state = 75}, + [3772] = {.lex_state = 473, .external_lex_state = 82}, + [3773] = {.lex_state = 454, .external_lex_state = 83}, + [3774] = {.lex_state = 473, .external_lex_state = 82}, + [3775] = {.lex_state = 454, .external_lex_state = 83}, + [3776] = {.lex_state = 441, .external_lex_state = 81}, + [3777] = {.lex_state = 473, .external_lex_state = 82}, + [3778] = {.lex_state = 473, .external_lex_state = 82}, [3779] = {.lex_state = 454, .external_lex_state = 78}, [3780] = {.lex_state = 454, .external_lex_state = 78}, - [3781] = {.lex_state = 454, .external_lex_state = 78}, - [3782] = {.lex_state = 289, .external_lex_state = 75}, - [3783] = {.lex_state = 454, .external_lex_state = 78}, - [3784] = {.lex_state = 454, .external_lex_state = 78}, - [3785] = {.lex_state = 441, .external_lex_state = 81}, - [3786] = {.lex_state = 454, .external_lex_state = 78}, - [3787] = {.lex_state = 454, .external_lex_state = 78}, - [3788] = {.lex_state = 454, .external_lex_state = 78}, + [3781] = {.lex_state = 473, .external_lex_state = 82}, + [3782] = {.lex_state = 473, .external_lex_state = 82}, + [3783] = {.lex_state = 97, .external_lex_state = 84}, + [3784] = {.lex_state = 411, .external_lex_state = 85}, + [3785] = {.lex_state = 454, .external_lex_state = 83}, + [3786] = {.lex_state = 454, .external_lex_state = 83}, + [3787] = {.lex_state = 473, .external_lex_state = 82}, + [3788] = {.lex_state = 473, .external_lex_state = 82}, [3789] = {.lex_state = 454, .external_lex_state = 83}, - [3790] = {.lex_state = 454, .external_lex_state = 83}, - [3791] = {.lex_state = 454, .external_lex_state = 78}, - [3792] = {.lex_state = 454, .external_lex_state = 78}, - [3793] = {.lex_state = 454, .external_lex_state = 78}, - [3794] = {.lex_state = 454, .external_lex_state = 78}, - [3795] = {.lex_state = 454, .external_lex_state = 83}, - [3796] = {.lex_state = 411, .external_lex_state = 82}, - [3797] = {.lex_state = 472, .external_lex_state = 85}, - [3798] = {.lex_state = 472, .external_lex_state = 85}, - [3799] = {.lex_state = 472, .external_lex_state = 85}, - [3800] = {.lex_state = 95, .external_lex_state = 86}, - [3801] = {.lex_state = 472, .external_lex_state = 85}, - [3802] = {.lex_state = 472, .external_lex_state = 85}, - [3803] = {.lex_state = 472, .external_lex_state = 85}, - [3804] = {.lex_state = 472, .external_lex_state = 85}, - [3805] = {.lex_state = 472, .external_lex_state = 85}, - [3806] = {.lex_state = 472, .external_lex_state = 85}, - [3807] = {.lex_state = 472, .external_lex_state = 85}, - [3808] = {.lex_state = 472, .external_lex_state = 85}, - [3809] = {.lex_state = 472, .external_lex_state = 85}, - [3810] = {.lex_state = 472, .external_lex_state = 85}, - [3811] = {.lex_state = 472, .external_lex_state = 85}, - [3812] = {.lex_state = 472, .external_lex_state = 85}, - [3813] = {.lex_state = 472, .external_lex_state = 85}, - [3814] = {.lex_state = 472, .external_lex_state = 85}, - [3815] = {.lex_state = 472, .external_lex_state = 85}, - [3816] = {.lex_state = 472, .external_lex_state = 85}, - [3817] = {.lex_state = 472, .external_lex_state = 85}, - [3818] = {.lex_state = 472, .external_lex_state = 85}, - [3819] = {.lex_state = 472, .external_lex_state = 85}, - [3820] = {.lex_state = 472, .external_lex_state = 85}, - [3821] = {.lex_state = 472, .external_lex_state = 85}, - [3822] = {.lex_state = 472, .external_lex_state = 85}, - [3823] = {.lex_state = 472, .external_lex_state = 85}, - [3824] = {.lex_state = 472, .external_lex_state = 85}, - [3825] = {.lex_state = 472, .external_lex_state = 85}, - [3826] = {.lex_state = 472, .external_lex_state = 85}, - [3827] = {.lex_state = 472, .external_lex_state = 85}, - [3828] = {.lex_state = 472, .external_lex_state = 85}, - [3829] = {.lex_state = 472, .external_lex_state = 85}, - [3830] = {.lex_state = 472, .external_lex_state = 85}, - [3831] = {.lex_state = 472, .external_lex_state = 85}, - [3832] = {.lex_state = 472, .external_lex_state = 85}, - [3833] = {.lex_state = 472, .external_lex_state = 85}, - [3834] = {.lex_state = 472, .external_lex_state = 85}, - [3835] = {.lex_state = 472, .external_lex_state = 85}, - [3836] = {.lex_state = 472, .external_lex_state = 85}, - [3837] = {.lex_state = 472, .external_lex_state = 85}, - [3838] = {.lex_state = 472, .external_lex_state = 85}, - [3839] = {.lex_state = 472, .external_lex_state = 85}, - [3840] = {.lex_state = 472, .external_lex_state = 85}, + [3790] = {.lex_state = 411, .external_lex_state = 85}, + [3791] = {.lex_state = 441, .external_lex_state = 81}, + [3792] = {.lex_state = 97, .external_lex_state = 84}, + [3793] = {.lex_state = 441, .external_lex_state = 81}, + [3794] = {.lex_state = 473, .external_lex_state = 82}, + [3795] = {.lex_state = 97, .external_lex_state = 84}, + [3796] = {.lex_state = 473, .external_lex_state = 82}, + [3797] = {.lex_state = 454, .external_lex_state = 83}, + [3798] = {.lex_state = 97, .external_lex_state = 84}, + [3799] = {.lex_state = 454, .external_lex_state = 78}, + [3800] = {.lex_state = 454, .external_lex_state = 78}, + [3801] = {.lex_state = 472, .external_lex_state = 86}, + [3802] = {.lex_state = 472, .external_lex_state = 86}, + [3803] = {.lex_state = 472, .external_lex_state = 86}, + [3804] = {.lex_state = 454, .external_lex_state = 78}, + [3805] = {.lex_state = 454, .external_lex_state = 78}, + [3806] = {.lex_state = 472, .external_lex_state = 86}, + [3807] = {.lex_state = 472, .external_lex_state = 86}, + [3808] = {.lex_state = 454, .external_lex_state = 78}, + [3809] = {.lex_state = 454, .external_lex_state = 78}, + [3810] = {.lex_state = 472, .external_lex_state = 86}, + [3811] = {.lex_state = 472, .external_lex_state = 86}, + [3812] = {.lex_state = 454, .external_lex_state = 78}, + [3813] = {.lex_state = 454, .external_lex_state = 78}, + [3814] = {.lex_state = 472, .external_lex_state = 86}, + [3815] = {.lex_state = 472, .external_lex_state = 86}, + [3816] = {.lex_state = 472, .external_lex_state = 86}, + [3817] = {.lex_state = 454, .external_lex_state = 78}, + [3818] = {.lex_state = 454, .external_lex_state = 78}, + [3819] = {.lex_state = 472, .external_lex_state = 86}, + [3820] = {.lex_state = 454, .external_lex_state = 78}, + [3821] = {.lex_state = 454, .external_lex_state = 78}, + [3822] = {.lex_state = 472, .external_lex_state = 86}, + [3823] = {.lex_state = 472, .external_lex_state = 86}, + [3824] = {.lex_state = 472, .external_lex_state = 86}, + [3825] = {.lex_state = 454, .external_lex_state = 78}, + [3826] = {.lex_state = 454, .external_lex_state = 78}, + [3827] = {.lex_state = 472, .external_lex_state = 86}, + [3828] = {.lex_state = 454, .external_lex_state = 78}, + [3829] = {.lex_state = 454, .external_lex_state = 78}, + [3830] = {.lex_state = 472, .external_lex_state = 86}, + [3831] = {.lex_state = 472, .external_lex_state = 86}, + [3832] = {.lex_state = 454, .external_lex_state = 78}, + [3833] = {.lex_state = 454, .external_lex_state = 78}, + [3834] = {.lex_state = 472, .external_lex_state = 86}, + [3835] = {.lex_state = 472, .external_lex_state = 86}, + [3836] = {.lex_state = 454, .external_lex_state = 78}, + [3837] = {.lex_state = 454, .external_lex_state = 78}, + [3838] = {.lex_state = 472, .external_lex_state = 86}, + [3839] = {.lex_state = 472, .external_lex_state = 86}, + [3840] = {.lex_state = 472, .external_lex_state = 86}, [3841] = {.lex_state = 454, .external_lex_state = 78}, - [3842] = {.lex_state = 472, .external_lex_state = 85}, - [3843] = {.lex_state = 472, .external_lex_state = 85}, + [3842] = {.lex_state = 454, .external_lex_state = 78}, + [3843] = {.lex_state = 472, .external_lex_state = 86}, [3844] = {.lex_state = 454, .external_lex_state = 78}, - [3845] = {.lex_state = 472, .external_lex_state = 85}, - [3846] = {.lex_state = 472, .external_lex_state = 85}, - [3847] = {.lex_state = 472, .external_lex_state = 85}, - [3848] = {.lex_state = 472, .external_lex_state = 85}, - [3849] = {.lex_state = 472, .external_lex_state = 85}, - [3850] = {.lex_state = 472, .external_lex_state = 85}, - [3851] = {.lex_state = 454, .external_lex_state = 78}, - [3852] = {.lex_state = 472, .external_lex_state = 85}, - [3853] = {.lex_state = 472, .external_lex_state = 85}, - [3854] = {.lex_state = 472, .external_lex_state = 85}, - [3855] = {.lex_state = 93, .external_lex_state = 87}, - [3856] = {.lex_state = 472, .external_lex_state = 85}, - [3857] = {.lex_state = 454, .external_lex_state = 78}, - [3858] = {.lex_state = 454, .external_lex_state = 78}, - [3859] = {.lex_state = 454, .external_lex_state = 78}, - [3860] = {.lex_state = 454, .external_lex_state = 78}, - [3861] = {.lex_state = 454, .external_lex_state = 78}, - [3862] = {.lex_state = 472, .external_lex_state = 85}, - [3863] = {.lex_state = 472, .external_lex_state = 85}, - [3864] = {.lex_state = 454, .external_lex_state = 78}, - [3865] = {.lex_state = 472, .external_lex_state = 85}, - [3866] = {.lex_state = 472, .external_lex_state = 85}, - [3867] = {.lex_state = 472, .external_lex_state = 85}, - [3868] = {.lex_state = 472, .external_lex_state = 85}, - [3869] = {.lex_state = 472, .external_lex_state = 85}, - [3870] = {.lex_state = 472, .external_lex_state = 85}, - [3871] = {.lex_state = 472, .external_lex_state = 85}, - [3872] = {.lex_state = 454, .external_lex_state = 78}, - [3873] = {.lex_state = 454, .external_lex_state = 78}, - [3874] = {.lex_state = 454, .external_lex_state = 78}, - [3875] = {.lex_state = 454, .external_lex_state = 78}, - [3876] = {.lex_state = 454, .external_lex_state = 78}, - [3877] = {.lex_state = 454, .external_lex_state = 78}, - [3878] = {.lex_state = 472, .external_lex_state = 85}, - [3879] = {.lex_state = 472, .external_lex_state = 85}, - [3880] = {.lex_state = 472, .external_lex_state = 85}, - [3881] = {.lex_state = 472, .external_lex_state = 85}, - [3882] = {.lex_state = 472, .external_lex_state = 85}, - [3883] = {.lex_state = 454, .external_lex_state = 78}, - [3884] = {.lex_state = 472, .external_lex_state = 85}, - [3885] = {.lex_state = 454, .external_lex_state = 78}, - [3886] = {.lex_state = 454, .external_lex_state = 78}, - [3887] = {.lex_state = 454, .external_lex_state = 78}, - [3888] = {.lex_state = 454, .external_lex_state = 78}, - [3889] = {.lex_state = 472, .external_lex_state = 85}, - [3890] = {.lex_state = 472, .external_lex_state = 85}, - [3891] = {.lex_state = 472, .external_lex_state = 85}, - [3892] = {.lex_state = 472, .external_lex_state = 85}, - [3893] = {.lex_state = 454, .external_lex_state = 78}, - [3894] = {.lex_state = 454, .external_lex_state = 78}, - [3895] = {.lex_state = 454, .external_lex_state = 78}, - [3896] = {.lex_state = 454, .external_lex_state = 78}, - [3897] = {.lex_state = 454, .external_lex_state = 78}, - [3898] = {.lex_state = 472, .external_lex_state = 85}, - [3899] = {.lex_state = 454, .external_lex_state = 78}, - [3900] = {.lex_state = 472, .external_lex_state = 85}, - [3901] = {.lex_state = 472, .external_lex_state = 85}, - [3902] = {.lex_state = 472, .external_lex_state = 85}, - [3903] = {.lex_state = 472, .external_lex_state = 85}, - [3904] = {.lex_state = 95, .external_lex_state = 86}, - [3905] = {.lex_state = 95, .external_lex_state = 86}, - [3906] = {.lex_state = 472, .external_lex_state = 85}, - [3907] = {.lex_state = 454, .external_lex_state = 78}, - [3908] = {.lex_state = 454, .external_lex_state = 78}, - [3909] = {.lex_state = 472, .external_lex_state = 85}, - [3910] = {.lex_state = 472, .external_lex_state = 85}, - [3911] = {.lex_state = 472, .external_lex_state = 85}, - [3912] = {.lex_state = 472, .external_lex_state = 85}, + [3845] = {.lex_state = 454, .external_lex_state = 78}, + [3846] = {.lex_state = 472, .external_lex_state = 86}, + [3847] = {.lex_state = 454, .external_lex_state = 78}, + [3848] = {.lex_state = 454, .external_lex_state = 78}, + [3849] = {.lex_state = 472, .external_lex_state = 86}, + [3850] = {.lex_state = 472, .external_lex_state = 86}, + [3851] = {.lex_state = 97, .external_lex_state = 87}, + [3852] = {.lex_state = 472, .external_lex_state = 86}, + [3853] = {.lex_state = 472, .external_lex_state = 86}, + [3854] = {.lex_state = 472, .external_lex_state = 86}, + [3855] = {.lex_state = 472, .external_lex_state = 86}, + [3856] = {.lex_state = 472, .external_lex_state = 86}, + [3857] = {.lex_state = 472, .external_lex_state = 86}, + [3858] = {.lex_state = 472, .external_lex_state = 86}, + [3859] = {.lex_state = 472, .external_lex_state = 86}, + [3860] = {.lex_state = 472, .external_lex_state = 86}, + [3861] = {.lex_state = 472, .external_lex_state = 86}, + [3862] = {.lex_state = 472, .external_lex_state = 86}, + [3863] = {.lex_state = 472, .external_lex_state = 86}, + [3864] = {.lex_state = 472, .external_lex_state = 86}, + [3865] = {.lex_state = 97, .external_lex_state = 84}, + [3866] = {.lex_state = 472, .external_lex_state = 86}, + [3867] = {.lex_state = 472, .external_lex_state = 86}, + [3868] = {.lex_state = 472, .external_lex_state = 86}, + [3869] = {.lex_state = 472, .external_lex_state = 86}, + [3870] = {.lex_state = 472, .external_lex_state = 86}, + [3871] = {.lex_state = 472, .external_lex_state = 86}, + [3872] = {.lex_state = 472, .external_lex_state = 86}, + [3873] = {.lex_state = 472, .external_lex_state = 86}, + [3874] = {.lex_state = 472, .external_lex_state = 86}, + [3875] = {.lex_state = 472, .external_lex_state = 86}, + [3876] = {.lex_state = 472, .external_lex_state = 86}, + [3877] = {.lex_state = 472, .external_lex_state = 86}, + [3878] = {.lex_state = 472, .external_lex_state = 86}, + [3879] = {.lex_state = 472, .external_lex_state = 86}, + [3880] = {.lex_state = 472, .external_lex_state = 86}, + [3881] = {.lex_state = 472, .external_lex_state = 86}, + [3882] = {.lex_state = 472, .external_lex_state = 86}, + [3883] = {.lex_state = 472, .external_lex_state = 86}, + [3884] = {.lex_state = 472, .external_lex_state = 86}, + [3885] = {.lex_state = 472, .external_lex_state = 86}, + [3886] = {.lex_state = 472, .external_lex_state = 86}, + [3887] = {.lex_state = 472, .external_lex_state = 86}, + [3888] = {.lex_state = 472, .external_lex_state = 86}, + [3889] = {.lex_state = 472, .external_lex_state = 86}, + [3890] = {.lex_state = 472, .external_lex_state = 86}, + [3891] = {.lex_state = 472, .external_lex_state = 86}, + [3892] = {.lex_state = 472, .external_lex_state = 86}, + [3893] = {.lex_state = 472, .external_lex_state = 86}, + [3894] = {.lex_state = 472, .external_lex_state = 86}, + [3895] = {.lex_state = 472, .external_lex_state = 86}, + [3896] = {.lex_state = 472, .external_lex_state = 86}, + [3897] = {.lex_state = 472, .external_lex_state = 86}, + [3898] = {.lex_state = 472, .external_lex_state = 86}, + [3899] = {.lex_state = 472, .external_lex_state = 86}, + [3900] = {.lex_state = 472, .external_lex_state = 86}, + [3901] = {.lex_state = 472, .external_lex_state = 86}, + [3902] = {.lex_state = 472, .external_lex_state = 86}, + [3903] = {.lex_state = 472, .external_lex_state = 86}, + [3904] = {.lex_state = 472, .external_lex_state = 86}, + [3905] = {.lex_state = 472, .external_lex_state = 86}, + [3906] = {.lex_state = 472, .external_lex_state = 86}, + [3907] = {.lex_state = 472, .external_lex_state = 86}, + [3908] = {.lex_state = 472, .external_lex_state = 86}, + [3909] = {.lex_state = 472, .external_lex_state = 86}, + [3910] = {.lex_state = 454, .external_lex_state = 78}, + [3911] = {.lex_state = 472, .external_lex_state = 86}, + [3912] = {.lex_state = 472, .external_lex_state = 86}, [3913] = {.lex_state = 454, .external_lex_state = 78}, - [3914] = {.lex_state = 472, .external_lex_state = 85}, - [3915] = {.lex_state = 472, .external_lex_state = 85}, - [3916] = {.lex_state = 472, .external_lex_state = 85}, - [3917] = {.lex_state = 472, .external_lex_state = 85}, - [3918] = {.lex_state = 472, .external_lex_state = 85}, - [3919] = {.lex_state = 454, .external_lex_state = 78}, - [3920] = {.lex_state = 472, .external_lex_state = 85}, - [3921] = {.lex_state = 454, .external_lex_state = 78}, - [3922] = {.lex_state = 472, .external_lex_state = 85}, - [3923] = {.lex_state = 472, .external_lex_state = 85}, - [3924] = {.lex_state = 472, .external_lex_state = 85}, - [3925] = {.lex_state = 472, .external_lex_state = 85}, - [3926] = {.lex_state = 472, .external_lex_state = 85}, - [3927] = {.lex_state = 472, .external_lex_state = 85}, - [3928] = {.lex_state = 472, .external_lex_state = 85}, - [3929] = {.lex_state = 472, .external_lex_state = 85}, + [3914] = {.lex_state = 472, .external_lex_state = 86}, + [3915] = {.lex_state = 472, .external_lex_state = 86}, + [3916] = {.lex_state = 472, .external_lex_state = 86}, + [3917] = {.lex_state = 472, .external_lex_state = 86}, + [3918] = {.lex_state = 472, .external_lex_state = 86}, + [3919] = {.lex_state = 472, .external_lex_state = 86}, + [3920] = {.lex_state = 472, .external_lex_state = 86}, + [3921] = {.lex_state = 472, .external_lex_state = 86}, + [3922] = {.lex_state = 472, .external_lex_state = 86}, + [3923] = {.lex_state = 472, .external_lex_state = 86}, + [3924] = {.lex_state = 472, .external_lex_state = 86}, + [3925] = {.lex_state = 472, .external_lex_state = 86}, + [3926] = {.lex_state = 472, .external_lex_state = 86}, + [3927] = {.lex_state = 454, .external_lex_state = 78}, + [3928] = {.lex_state = 454, .external_lex_state = 78}, + [3929] = {.lex_state = 454, .external_lex_state = 78}, [3930] = {.lex_state = 454, .external_lex_state = 78}, - [3931] = {.lex_state = 472, .external_lex_state = 85}, - [3932] = {.lex_state = 472, .external_lex_state = 85}, - [3933] = {.lex_state = 454, .external_lex_state = 78}, - [3934] = {.lex_state = 472, .external_lex_state = 85}, - [3935] = {.lex_state = 472, .external_lex_state = 85}, - [3936] = {.lex_state = 472, .external_lex_state = 85}, - [3937] = {.lex_state = 472, .external_lex_state = 85}, - [3938] = {.lex_state = 472, .external_lex_state = 85}, - [3939] = {.lex_state = 472, .external_lex_state = 85}, - [3940] = {.lex_state = 454, .external_lex_state = 78}, - [3941] = {.lex_state = 472, .external_lex_state = 85}, - [3942] = {.lex_state = 454, .external_lex_state = 78}, - [3943] = {.lex_state = 472, .external_lex_state = 85}, - [3944] = {.lex_state = 472, .external_lex_state = 85}, - [3945] = {.lex_state = 472, .external_lex_state = 85}, - [3946] = {.lex_state = 472, .external_lex_state = 85}, - [3947] = {.lex_state = 472, .external_lex_state = 85}, - [3948] = {.lex_state = 472, .external_lex_state = 85}, - [3949] = {.lex_state = 472, .external_lex_state = 85}, - [3950] = {.lex_state = 472, .external_lex_state = 85}, - [3951] = {.lex_state = 472, .external_lex_state = 85}, - [3952] = {.lex_state = 472, .external_lex_state = 85}, - [3953] = {.lex_state = 454, .external_lex_state = 78}, - [3954] = {.lex_state = 475, .external_lex_state = 88}, + [3931] = {.lex_state = 472, .external_lex_state = 86}, + [3932] = {.lex_state = 472, .external_lex_state = 86}, + [3933] = {.lex_state = 472, .external_lex_state = 86}, + [3934] = {.lex_state = 472, .external_lex_state = 86}, + [3935] = {.lex_state = 472, .external_lex_state = 86}, + [3936] = {.lex_state = 472, .external_lex_state = 86}, + [3937] = {.lex_state = 472, .external_lex_state = 86}, + [3938] = {.lex_state = 472, .external_lex_state = 86}, + [3939] = {.lex_state = 472, .external_lex_state = 86}, + [3940] = {.lex_state = 472, .external_lex_state = 86}, + [3941] = {.lex_state = 472, .external_lex_state = 86}, + [3942] = {.lex_state = 472, .external_lex_state = 86}, + [3943] = {.lex_state = 472, .external_lex_state = 86}, + [3944] = {.lex_state = 454, .external_lex_state = 78}, + [3945] = {.lex_state = 454, .external_lex_state = 78}, + [3946] = {.lex_state = 454, .external_lex_state = 78}, + [3947] = {.lex_state = 454, .external_lex_state = 78}, + [3948] = {.lex_state = 472, .external_lex_state = 86}, + [3949] = {.lex_state = 472, .external_lex_state = 86}, + [3950] = {.lex_state = 472, .external_lex_state = 86}, + [3951] = {.lex_state = 472, .external_lex_state = 86}, + [3952] = {.lex_state = 454, .external_lex_state = 78}, + [3953] = {.lex_state = 472, .external_lex_state = 86}, + [3954] = {.lex_state = 454, .external_lex_state = 78}, [3955] = {.lex_state = 454, .external_lex_state = 78}, - [3956] = {.lex_state = 472, .external_lex_state = 85}, - [3957] = {.lex_state = 472, .external_lex_state = 85}, - [3958] = {.lex_state = 472, .external_lex_state = 85}, - [3959] = {.lex_state = 472, .external_lex_state = 85}, - [3960] = {.lex_state = 472, .external_lex_state = 85}, - [3961] = {.lex_state = 472, .external_lex_state = 85}, - [3962] = {.lex_state = 454, .external_lex_state = 78}, - [3963] = {.lex_state = 472, .external_lex_state = 85}, - [3964] = {.lex_state = 454, .external_lex_state = 78}, - [3965] = {.lex_state = 472, .external_lex_state = 85}, - [3966] = {.lex_state = 472, .external_lex_state = 85}, - [3967] = {.lex_state = 472, .external_lex_state = 85}, + [3956] = {.lex_state = 454, .external_lex_state = 78}, + [3957] = {.lex_state = 454, .external_lex_state = 78}, + [3958] = {.lex_state = 472, .external_lex_state = 86}, + [3959] = {.lex_state = 472, .external_lex_state = 86}, + [3960] = {.lex_state = 472, .external_lex_state = 86}, + [3961] = {.lex_state = 472, .external_lex_state = 86}, + [3962] = {.lex_state = 472, .external_lex_state = 86}, + [3963] = {.lex_state = 472, .external_lex_state = 86}, + [3964] = {.lex_state = 472, .external_lex_state = 86}, + [3965] = {.lex_state = 454, .external_lex_state = 78}, + [3966] = {.lex_state = 454, .external_lex_state = 78}, + [3967] = {.lex_state = 454, .external_lex_state = 78}, [3968] = {.lex_state = 454, .external_lex_state = 78}, - [3969] = {.lex_state = 472, .external_lex_state = 85}, - [3970] = {.lex_state = 472, .external_lex_state = 85}, - [3971] = {.lex_state = 472, .external_lex_state = 85}, - [3972] = {.lex_state = 454, .external_lex_state = 78}, - [3973] = {.lex_state = 472, .external_lex_state = 85}, - [3974] = {.lex_state = 472, .external_lex_state = 85}, - [3975] = {.lex_state = 454, .external_lex_state = 78}, - [3976] = {.lex_state = 472, .external_lex_state = 85}, - [3977] = {.lex_state = 472, .external_lex_state = 85}, - [3978] = {.lex_state = 472, .external_lex_state = 85}, - [3979] = {.lex_state = 472, .external_lex_state = 85}, - [3980] = {.lex_state = 472, .external_lex_state = 85}, - [3981] = {.lex_state = 472, .external_lex_state = 85}, - [3982] = {.lex_state = 454, .external_lex_state = 78}, - [3983] = {.lex_state = 472, .external_lex_state = 85}, - [3984] = {.lex_state = 454, .external_lex_state = 78}, - [3985] = {.lex_state = 472, .external_lex_state = 85}, - [3986] = {.lex_state = 472, .external_lex_state = 85}, - [3987] = {.lex_state = 472, .external_lex_state = 85}, - [3988] = {.lex_state = 472, .external_lex_state = 85}, - [3989] = {.lex_state = 472, .external_lex_state = 85}, - [3990] = {.lex_state = 472, .external_lex_state = 85}, - [3991] = {.lex_state = 472, .external_lex_state = 85}, - [3992] = {.lex_state = 454, .external_lex_state = 78}, - [3993] = {.lex_state = 454, .external_lex_state = 78}, - [3994] = {.lex_state = 472, .external_lex_state = 85}, - [3995] = {.lex_state = 472, .external_lex_state = 85}, - [3996] = {.lex_state = 472, .external_lex_state = 85}, - [3997] = {.lex_state = 472, .external_lex_state = 85}, - [3998] = {.lex_state = 454, .external_lex_state = 78}, - [3999] = {.lex_state = 472, .external_lex_state = 85}, - [4000] = {.lex_state = 472, .external_lex_state = 85}, - [4001] = {.lex_state = 454, .external_lex_state = 78}, - [4002] = {.lex_state = 96, .external_lex_state = 89}, - [4003] = {.lex_state = 472, .external_lex_state = 85}, - [4004] = {.lex_state = 472, .external_lex_state = 85}, - [4005] = {.lex_state = 472, .external_lex_state = 85}, - [4006] = {.lex_state = 472, .external_lex_state = 85}, - [4007] = {.lex_state = 472, .external_lex_state = 85}, - [4008] = {.lex_state = 454, .external_lex_state = 78}, - [4009] = {.lex_state = 454, .external_lex_state = 78}, - [4010] = {.lex_state = 472, .external_lex_state = 85}, - [4011] = {.lex_state = 472, .external_lex_state = 85}, - [4012] = {.lex_state = 472, .external_lex_state = 85}, - [4013] = {.lex_state = 454, .external_lex_state = 78}, - [4014] = {.lex_state = 95, .external_lex_state = 86}, - [4015] = {.lex_state = 454, .external_lex_state = 78}, - [4016] = {.lex_state = 472, .external_lex_state = 85}, - [4017] = {.lex_state = 472, .external_lex_state = 85}, - [4018] = {.lex_state = 454, .external_lex_state = 78}, - [4019] = {.lex_state = 472, .external_lex_state = 85}, - [4020] = {.lex_state = 472, .external_lex_state = 85}, - [4021] = {.lex_state = 472, .external_lex_state = 85}, - [4022] = {.lex_state = 454, .external_lex_state = 78}, - [4023] = {.lex_state = 472, .external_lex_state = 85}, - [4024] = {.lex_state = 472, .external_lex_state = 85}, - [4025] = {.lex_state = 95, .external_lex_state = 90}, - [4026] = {.lex_state = 454, .external_lex_state = 78}, - [4027] = {.lex_state = 472, .external_lex_state = 85}, - [4028] = {.lex_state = 454, .external_lex_state = 78}, - [4029] = {.lex_state = 472, .external_lex_state = 85}, - [4030] = {.lex_state = 472, .external_lex_state = 85}, - [4031] = {.lex_state = 472, .external_lex_state = 85}, - [4032] = {.lex_state = 454, .external_lex_state = 78}, - [4033] = {.lex_state = 472, .external_lex_state = 85}, - [4034] = {.lex_state = 454, .external_lex_state = 78}, - [4035] = {.lex_state = 472, .external_lex_state = 85}, - [4036] = {.lex_state = 472, .external_lex_state = 85}, - [4037] = {.lex_state = 472, .external_lex_state = 85}, - [4038] = {.lex_state = 472, .external_lex_state = 85}, - [4039] = {.lex_state = 472, .external_lex_state = 85}, - [4040] = {.lex_state = 472, .external_lex_state = 85}, - [4041] = {.lex_state = 472, .external_lex_state = 85}, - [4042] = {.lex_state = 472, .external_lex_state = 85}, - [4043] = {.lex_state = 472, .external_lex_state = 85}, - [4044] = {.lex_state = 472, .external_lex_state = 85}, - [4045] = {.lex_state = 472, .external_lex_state = 85}, - [4046] = {.lex_state = 472, .external_lex_state = 85}, - [4047] = {.lex_state = 472, .external_lex_state = 85}, - [4048] = {.lex_state = 472, .external_lex_state = 85}, - [4049] = {.lex_state = 454, .external_lex_state = 78}, - [4050] = {.lex_state = 472, .external_lex_state = 85}, - [4051] = {.lex_state = 472, .external_lex_state = 85}, - [4052] = {.lex_state = 472, .external_lex_state = 85}, - [4053] = {.lex_state = 472, .external_lex_state = 85}, - [4054] = {.lex_state = 472, .external_lex_state = 85}, - [4055] = {.lex_state = 472, .external_lex_state = 85}, - [4056] = {.lex_state = 472, .external_lex_state = 85}, - [4057] = {.lex_state = 472, .external_lex_state = 85}, - [4058] = {.lex_state = 472, .external_lex_state = 85}, - [4059] = {.lex_state = 454, .external_lex_state = 78}, - [4060] = {.lex_state = 472, .external_lex_state = 85}, - [4061] = {.lex_state = 472, .external_lex_state = 85}, - [4062] = {.lex_state = 472, .external_lex_state = 85}, - [4063] = {.lex_state = 472, .external_lex_state = 85}, - [4064] = {.lex_state = 472, .external_lex_state = 85}, - [4065] = {.lex_state = 472, .external_lex_state = 85}, - [4066] = {.lex_state = 472, .external_lex_state = 85}, - [4067] = {.lex_state = 472, .external_lex_state = 85}, - [4068] = {.lex_state = 454, .external_lex_state = 78}, - [4069] = {.lex_state = 93, .external_lex_state = 87}, - [4070] = {.lex_state = 472, .external_lex_state = 85}, - [4071] = {.lex_state = 472, .external_lex_state = 85}, - [4072] = {.lex_state = 472, .external_lex_state = 85}, - [4073] = {.lex_state = 472, .external_lex_state = 85}, - [4074] = {.lex_state = 472, .external_lex_state = 85}, - [4075] = {.lex_state = 472, .external_lex_state = 85}, - [4076] = {.lex_state = 472, .external_lex_state = 85}, - [4077] = {.lex_state = 472, .external_lex_state = 85}, - [4078] = {.lex_state = 472, .external_lex_state = 85}, - [4079] = {.lex_state = 472, .external_lex_state = 85}, - [4080] = {.lex_state = 472, .external_lex_state = 85}, - [4081] = {.lex_state = 472, .external_lex_state = 85}, - [4082] = {.lex_state = 472, .external_lex_state = 85}, - [4083] = {.lex_state = 472, .external_lex_state = 85}, - [4084] = {.lex_state = 472, .external_lex_state = 85}, - [4085] = {.lex_state = 472, .external_lex_state = 85}, - [4086] = {.lex_state = 472, .external_lex_state = 85}, - [4087] = {.lex_state = 472, .external_lex_state = 85}, - [4088] = {.lex_state = 472, .external_lex_state = 85}, - [4089] = {.lex_state = 472, .external_lex_state = 85}, - [4090] = {.lex_state = 454, .external_lex_state = 78}, - [4091] = {.lex_state = 472, .external_lex_state = 85}, + [3969] = {.lex_state = 472, .external_lex_state = 86}, + [3970] = {.lex_state = 472, .external_lex_state = 86}, + [3971] = {.lex_state = 472, .external_lex_state = 86}, + [3972] = {.lex_state = 472, .external_lex_state = 86}, + [3973] = {.lex_state = 472, .external_lex_state = 86}, + [3974] = {.lex_state = 472, .external_lex_state = 86}, + [3975] = {.lex_state = 472, .external_lex_state = 86}, + [3976] = {.lex_state = 472, .external_lex_state = 86}, + [3977] = {.lex_state = 472, .external_lex_state = 86}, + [3978] = {.lex_state = 472, .external_lex_state = 86}, + [3979] = {.lex_state = 472, .external_lex_state = 86}, + [3980] = {.lex_state = 472, .external_lex_state = 86}, + [3981] = {.lex_state = 472, .external_lex_state = 86}, + [3982] = {.lex_state = 472, .external_lex_state = 86}, + [3983] = {.lex_state = 472, .external_lex_state = 86}, + [3984] = {.lex_state = 472, .external_lex_state = 86}, + [3985] = {.lex_state = 472, .external_lex_state = 86}, + [3986] = {.lex_state = 472, .external_lex_state = 86}, + [3987] = {.lex_state = 472, .external_lex_state = 86}, + [3988] = {.lex_state = 472, .external_lex_state = 86}, + [3989] = {.lex_state = 472, .external_lex_state = 86}, + [3990] = {.lex_state = 472, .external_lex_state = 86}, + [3991] = {.lex_state = 95, .external_lex_state = 88}, + [3992] = {.lex_state = 97, .external_lex_state = 87}, + [3993] = {.lex_state = 472, .external_lex_state = 86}, + [3994] = {.lex_state = 472, .external_lex_state = 86}, + [3995] = {.lex_state = 454, .external_lex_state = 78}, + [3996] = {.lex_state = 454, .external_lex_state = 78}, + [3997] = {.lex_state = 472, .external_lex_state = 86}, + [3998] = {.lex_state = 472, .external_lex_state = 86}, + [3999] = {.lex_state = 472, .external_lex_state = 86}, + [4000] = {.lex_state = 472, .external_lex_state = 86}, + [4001] = {.lex_state = 472, .external_lex_state = 86}, + [4002] = {.lex_state = 472, .external_lex_state = 86}, + [4003] = {.lex_state = 472, .external_lex_state = 86}, + [4004] = {.lex_state = 472, .external_lex_state = 86}, + [4005] = {.lex_state = 472, .external_lex_state = 86}, + [4006] = {.lex_state = 472, .external_lex_state = 86}, + [4007] = {.lex_state = 472, .external_lex_state = 86}, + [4008] = {.lex_state = 472, .external_lex_state = 86}, + [4009] = {.lex_state = 472, .external_lex_state = 86}, + [4010] = {.lex_state = 472, .external_lex_state = 86}, + [4011] = {.lex_state = 472, .external_lex_state = 86}, + [4012] = {.lex_state = 472, .external_lex_state = 86}, + [4013] = {.lex_state = 97, .external_lex_state = 84}, + [4014] = {.lex_state = 472, .external_lex_state = 86}, + [4015] = {.lex_state = 472, .external_lex_state = 86}, + [4016] = {.lex_state = 472, .external_lex_state = 86}, + [4017] = {.lex_state = 472, .external_lex_state = 86}, + [4018] = {.lex_state = 472, .external_lex_state = 86}, + [4019] = {.lex_state = 472, .external_lex_state = 86}, + [4020] = {.lex_state = 472, .external_lex_state = 86}, + [4021] = {.lex_state = 472, .external_lex_state = 86}, + [4022] = {.lex_state = 472, .external_lex_state = 86}, + [4023] = {.lex_state = 472, .external_lex_state = 86}, + [4024] = {.lex_state = 472, .external_lex_state = 86}, + [4025] = {.lex_state = 472, .external_lex_state = 86}, + [4026] = {.lex_state = 472, .external_lex_state = 86}, + [4027] = {.lex_state = 472, .external_lex_state = 86}, + [4028] = {.lex_state = 472, .external_lex_state = 86}, + [4029] = {.lex_state = 472, .external_lex_state = 86}, + [4030] = {.lex_state = 472, .external_lex_state = 86}, + [4031] = {.lex_state = 472, .external_lex_state = 86}, + [4032] = {.lex_state = 472, .external_lex_state = 86}, + [4033] = {.lex_state = 97, .external_lex_state = 89}, + [4034] = {.lex_state = 472, .external_lex_state = 86}, + [4035] = {.lex_state = 472, .external_lex_state = 86}, + [4036] = {.lex_state = 454, .external_lex_state = 78}, + [4037] = {.lex_state = 454, .external_lex_state = 78}, + [4038] = {.lex_state = 472, .external_lex_state = 86}, + [4039] = {.lex_state = 472, .external_lex_state = 86}, + [4040] = {.lex_state = 472, .external_lex_state = 86}, + [4041] = {.lex_state = 472, .external_lex_state = 86}, + [4042] = {.lex_state = 472, .external_lex_state = 86}, + [4043] = {.lex_state = 472, .external_lex_state = 86}, + [4044] = {.lex_state = 472, .external_lex_state = 86}, + [4045] = {.lex_state = 472, .external_lex_state = 86}, + [4046] = {.lex_state = 472, .external_lex_state = 86}, + [4047] = {.lex_state = 472, .external_lex_state = 86}, + [4048] = {.lex_state = 472, .external_lex_state = 86}, + [4049] = {.lex_state = 472, .external_lex_state = 86}, + [4050] = {.lex_state = 472, .external_lex_state = 86}, + [4051] = {.lex_state = 472, .external_lex_state = 86}, + [4052] = {.lex_state = 472, .external_lex_state = 86}, + [4053] = {.lex_state = 472, .external_lex_state = 86}, + [4054] = {.lex_state = 472, .external_lex_state = 86}, + [4055] = {.lex_state = 472, .external_lex_state = 86}, + [4056] = {.lex_state = 472, .external_lex_state = 86}, + [4057] = {.lex_state = 472, .external_lex_state = 86}, + [4058] = {.lex_state = 472, .external_lex_state = 86}, + [4059] = {.lex_state = 472, .external_lex_state = 86}, + [4060] = {.lex_state = 472, .external_lex_state = 86}, + [4061] = {.lex_state = 472, .external_lex_state = 86}, + [4062] = {.lex_state = 472, .external_lex_state = 86}, + [4063] = {.lex_state = 472, .external_lex_state = 86}, + [4064] = {.lex_state = 454, .external_lex_state = 78}, + [4065] = {.lex_state = 472, .external_lex_state = 86}, + [4066] = {.lex_state = 454, .external_lex_state = 78}, + [4067] = {.lex_state = 472, .external_lex_state = 86}, + [4068] = {.lex_state = 472, .external_lex_state = 86}, + [4069] = {.lex_state = 472, .external_lex_state = 86}, + [4070] = {.lex_state = 98, .external_lex_state = 90}, + [4071] = {.lex_state = 472, .external_lex_state = 86}, + [4072] = {.lex_state = 454, .external_lex_state = 78}, + [4073] = {.lex_state = 472, .external_lex_state = 86}, + [4074] = {.lex_state = 472, .external_lex_state = 86}, + [4075] = {.lex_state = 472, .external_lex_state = 86}, + [4076] = {.lex_state = 472, .external_lex_state = 86}, + [4077] = {.lex_state = 472, .external_lex_state = 86}, + [4078] = {.lex_state = 472, .external_lex_state = 86}, + [4079] = {.lex_state = 472, .external_lex_state = 86}, + [4080] = {.lex_state = 475, .external_lex_state = 91}, + [4081] = {.lex_state = 454, .external_lex_state = 78}, + [4082] = {.lex_state = 454, .external_lex_state = 78}, + [4083] = {.lex_state = 97, .external_lex_state = 87}, + [4084] = {.lex_state = 472, .external_lex_state = 86}, + [4085] = {.lex_state = 472, .external_lex_state = 86}, + [4086] = {.lex_state = 472, .external_lex_state = 86}, + [4087] = {.lex_state = 472, .external_lex_state = 86}, + [4088] = {.lex_state = 472, .external_lex_state = 86}, + [4089] = {.lex_state = 472, .external_lex_state = 86}, + [4090] = {.lex_state = 472, .external_lex_state = 86}, + [4091] = {.lex_state = 472, .external_lex_state = 86}, [4092] = {.lex_state = 454, .external_lex_state = 78}, - [4093] = {.lex_state = 472, .external_lex_state = 85}, - [4094] = {.lex_state = 454, .external_lex_state = 78}, + [4093] = {.lex_state = 95, .external_lex_state = 88}, + [4094] = {.lex_state = 472, .external_lex_state = 86}, [4095] = {.lex_state = 454, .external_lex_state = 78}, - [4096] = {.lex_state = 472, .external_lex_state = 85}, - [4097] = {.lex_state = 472, .external_lex_state = 85}, - [4098] = {.lex_state = 454, .external_lex_state = 78}, - [4099] = {.lex_state = 93, .external_lex_state = 87}, - [4100] = {.lex_state = 472, .external_lex_state = 85}, - [4101] = {.lex_state = 472, .external_lex_state = 85}, - [4102] = {.lex_state = 472, .external_lex_state = 85}, - [4103] = {.lex_state = 472, .external_lex_state = 85}, - [4104] = {.lex_state = 472, .external_lex_state = 85}, - [4105] = {.lex_state = 454, .external_lex_state = 78}, - [4106] = {.lex_state = 472, .external_lex_state = 85}, - [4107] = {.lex_state = 472, .external_lex_state = 85}, - [4108] = {.lex_state = 472, .external_lex_state = 85}, - [4109] = {.lex_state = 472, .external_lex_state = 85}, - [4110] = {.lex_state = 472, .external_lex_state = 85}, - [4111] = {.lex_state = 454, .external_lex_state = 78}, - [4112] = {.lex_state = 472, .external_lex_state = 85}, - [4113] = {.lex_state = 472, .external_lex_state = 85}, - [4114] = {.lex_state = 472, .external_lex_state = 85}, - [4115] = {.lex_state = 472, .external_lex_state = 85}, - [4116] = {.lex_state = 472, .external_lex_state = 85}, - [4117] = {.lex_state = 472, .external_lex_state = 85}, - [4118] = {.lex_state = 472, .external_lex_state = 85}, - [4119] = {.lex_state = 454, .external_lex_state = 78}, - [4120] = {.lex_state = 472, .external_lex_state = 85}, - [4121] = {.lex_state = 454, .external_lex_state = 78}, - [4122] = {.lex_state = 472, .external_lex_state = 85}, - [4123] = {.lex_state = 472, .external_lex_state = 85}, - [4124] = {.lex_state = 454, .external_lex_state = 78}, - [4125] = {.lex_state = 454, .external_lex_state = 78}, + [4096] = {.lex_state = 454, .external_lex_state = 78}, + [4097] = {.lex_state = 472, .external_lex_state = 86}, + [4098] = {.lex_state = 472, .external_lex_state = 86}, + [4099] = {.lex_state = 472, .external_lex_state = 86}, + [4100] = {.lex_state = 472, .external_lex_state = 86}, + [4101] = {.lex_state = 472, .external_lex_state = 86}, + [4102] = {.lex_state = 472, .external_lex_state = 86}, + [4103] = {.lex_state = 454, .external_lex_state = 78}, + [4104] = {.lex_state = 454, .external_lex_state = 78}, + [4105] = {.lex_state = 472, .external_lex_state = 86}, + [4106] = {.lex_state = 472, .external_lex_state = 86}, + [4107] = {.lex_state = 472, .external_lex_state = 86}, + [4108] = {.lex_state = 454, .external_lex_state = 78}, + [4109] = {.lex_state = 454, .external_lex_state = 78}, + [4110] = {.lex_state = 472, .external_lex_state = 86}, + [4111] = {.lex_state = 472, .external_lex_state = 86}, + [4112] = {.lex_state = 454, .external_lex_state = 78}, + [4113] = {.lex_state = 472, .external_lex_state = 86}, + [4114] = {.lex_state = 454, .external_lex_state = 78}, + [4115] = {.lex_state = 454, .external_lex_state = 78}, + [4116] = {.lex_state = 454, .external_lex_state = 78}, + [4117] = {.lex_state = 454, .external_lex_state = 78}, + [4118] = {.lex_state = 454, .external_lex_state = 78}, + [4119] = {.lex_state = 95, .external_lex_state = 88}, + [4120] = {.lex_state = 472, .external_lex_state = 86}, + [4121] = {.lex_state = 472, .external_lex_state = 86}, + [4122] = {.lex_state = 472, .external_lex_state = 86}, + [4123] = {.lex_state = 472, .external_lex_state = 86}, + [4124] = {.lex_state = 472, .external_lex_state = 86}, + [4125] = {.lex_state = 472, .external_lex_state = 86}, [4126] = {.lex_state = 454, .external_lex_state = 78}, - [4127] = {.lex_state = 93, .external_lex_state = 87}, - [4128] = {.lex_state = 472, .external_lex_state = 85}, - [4129] = {.lex_state = 472, .external_lex_state = 85}, - [4130] = {.lex_state = 472, .external_lex_state = 85}, - [4131] = {.lex_state = 472, .external_lex_state = 85}, - [4132] = {.lex_state = 454, .external_lex_state = 78}, - [4133] = {.lex_state = 95, .external_lex_state = 90}, - [4134] = {.lex_state = 95, .external_lex_state = 91}, - [4135] = {.lex_state = 95, .external_lex_state = 90}, - [4136] = {.lex_state = 96, .external_lex_state = 89}, - [4137] = {.lex_state = 96, .external_lex_state = 89}, - [4138] = {.lex_state = 95, .external_lex_state = 90}, - [4139] = {.lex_state = 96, .external_lex_state = 64}, - [4140] = {.lex_state = 95, .external_lex_state = 92}, - [4141] = {.lex_state = 95, .external_lex_state = 86}, - [4142] = {.lex_state = 95, .external_lex_state = 90}, - [4143] = {.lex_state = 96, .external_lex_state = 89}, - [4144] = {.lex_state = 96, .external_lex_state = 93}, - [4145] = {.lex_state = 513, .external_lex_state = 91}, - [4146] = {.lex_state = 95, .external_lex_state = 92}, - [4147] = {.lex_state = 95, .external_lex_state = 90}, - [4148] = {.lex_state = 96, .external_lex_state = 89}, - [4149] = {.lex_state = 93, .external_lex_state = 87}, - [4150] = {.lex_state = 95, .external_lex_state = 92}, - [4151] = {.lex_state = 93, .external_lex_state = 87}, - [4152] = {.lex_state = 95, .external_lex_state = 86}, - [4153] = {.lex_state = 95, .external_lex_state = 92}, - [4154] = {.lex_state = 93, .external_lex_state = 87}, - [4155] = {.lex_state = 96, .external_lex_state = 90}, - [4156] = {.lex_state = 515, .external_lex_state = 93}, - [4157] = {.lex_state = 95, .external_lex_state = 90}, - [4158] = {.lex_state = 95, .external_lex_state = 90}, - [4159] = {.lex_state = 96, .external_lex_state = 64}, - [4160] = {.lex_state = 267, .external_lex_state = 94}, - [4161] = {.lex_state = 95, .external_lex_state = 90}, - [4162] = {.lex_state = 95, .external_lex_state = 90}, - [4163] = {.lex_state = 96, .external_lex_state = 89}, - [4164] = {.lex_state = 267, .external_lex_state = 94}, - [4165] = {.lex_state = 95, .external_lex_state = 90}, - [4166] = {.lex_state = 95, .external_lex_state = 90}, - [4167] = {.lex_state = 96, .external_lex_state = 89}, - [4168] = {.lex_state = 96, .external_lex_state = 90}, - [4169] = {.lex_state = 515, .external_lex_state = 93}, - [4170] = {.lex_state = 95, .external_lex_state = 90}, - [4171] = {.lex_state = 96, .external_lex_state = 89}, - [4172] = {.lex_state = 513, .external_lex_state = 92}, - [4173] = {.lex_state = 513, .external_lex_state = 91}, - [4174] = {.lex_state = 96, .external_lex_state = 67}, - [4175] = {.lex_state = 95, .external_lex_state = 86}, - [4176] = {.lex_state = 513, .external_lex_state = 91}, - [4177] = {.lex_state = 513, .external_lex_state = 91}, - [4178] = {.lex_state = 96, .external_lex_state = 89}, - [4179] = {.lex_state = 96, .external_lex_state = 90}, - [4180] = {.lex_state = 96, .external_lex_state = 86}, - [4181] = {.lex_state = 96, .external_lex_state = 64}, - [4182] = {.lex_state = 96, .external_lex_state = 86}, - [4183] = {.lex_state = 513, .external_lex_state = 91}, - [4184] = {.lex_state = 475, .external_lex_state = 95}, - [4185] = {.lex_state = 513, .external_lex_state = 91}, - [4186] = {.lex_state = 95, .external_lex_state = 86}, - [4187] = {.lex_state = 515, .external_lex_state = 93}, - [4188] = {.lex_state = 513, .external_lex_state = 91}, - [4189] = {.lex_state = 95, .external_lex_state = 90}, - [4190] = {.lex_state = 513, .external_lex_state = 91}, - [4191] = {.lex_state = 513, .external_lex_state = 91}, - [4192] = {.lex_state = 513, .external_lex_state = 91}, - [4193] = {.lex_state = 95, .external_lex_state = 91}, - [4194] = {.lex_state = 96, .external_lex_state = 90}, - [4195] = {.lex_state = 513, .external_lex_state = 91}, - [4196] = {.lex_state = 95, .external_lex_state = 90}, - [4197] = {.lex_state = 96, .external_lex_state = 89}, - [4198] = {.lex_state = 95, .external_lex_state = 86}, - [4199] = {.lex_state = 96, .external_lex_state = 89}, - [4200] = {.lex_state = 96, .external_lex_state = 89}, - [4201] = {.lex_state = 515, .external_lex_state = 93}, - [4202] = {.lex_state = 513, .external_lex_state = 92}, - [4203] = {.lex_state = 96, .external_lex_state = 89}, - [4204] = {.lex_state = 96, .external_lex_state = 90}, - [4205] = {.lex_state = 96, .external_lex_state = 67}, - [4206] = {.lex_state = 95, .external_lex_state = 90}, - [4207] = {.lex_state = 513, .external_lex_state = 91}, - [4208] = {.lex_state = 513, .external_lex_state = 91}, - [4209] = {.lex_state = 513, .external_lex_state = 91}, - [4210] = {.lex_state = 95, .external_lex_state = 91}, - [4211] = {.lex_state = 514, .external_lex_state = 92}, - [4212] = {.lex_state = 96, .external_lex_state = 93}, - [4213] = {.lex_state = 514, .external_lex_state = 92}, - [4214] = {.lex_state = 515, .external_lex_state = 91}, - [4215] = {.lex_state = 475, .external_lex_state = 95}, - [4216] = {.lex_state = 95, .external_lex_state = 90}, - [4217] = {.lex_state = 95, .external_lex_state = 92}, - [4218] = {.lex_state = 513, .external_lex_state = 91}, - [4219] = {.lex_state = 515, .external_lex_state = 93}, - [4220] = {.lex_state = 515, .external_lex_state = 93}, - [4221] = {.lex_state = 96, .external_lex_state = 90}, - [4222] = {.lex_state = 96, .external_lex_state = 93}, - [4223] = {.lex_state = 516, .external_lex_state = 67}, - [4224] = {.lex_state = 96, .external_lex_state = 89}, - [4225] = {.lex_state = 513, .external_lex_state = 92}, - [4226] = {.lex_state = 95, .external_lex_state = 90}, - [4227] = {.lex_state = 513, .external_lex_state = 91}, - [4228] = {.lex_state = 515, .external_lex_state = 93}, - [4229] = {.lex_state = 513, .external_lex_state = 91}, - [4230] = {.lex_state = 96, .external_lex_state = 91}, - [4231] = {.lex_state = 515, .external_lex_state = 93}, - [4232] = {.lex_state = 95, .external_lex_state = 90}, - [4233] = {.lex_state = 96, .external_lex_state = 86}, - [4234] = {.lex_state = 95, .external_lex_state = 91}, - [4235] = {.lex_state = 96, .external_lex_state = 90}, - [4236] = {.lex_state = 514, .external_lex_state = 92}, - [4237] = {.lex_state = 96, .external_lex_state = 93}, - [4238] = {.lex_state = 96, .external_lex_state = 86}, - [4239] = {.lex_state = 95, .external_lex_state = 91}, - [4240] = {.lex_state = 95, .external_lex_state = 90}, - [4241] = {.lex_state = 96, .external_lex_state = 89}, - [4242] = {.lex_state = 96, .external_lex_state = 89}, - [4243] = {.lex_state = 515, .external_lex_state = 93}, - [4244] = {.lex_state = 96, .external_lex_state = 93}, - [4245] = {.lex_state = 95, .external_lex_state = 86}, - [4246] = {.lex_state = 95, .external_lex_state = 92}, - [4247] = {.lex_state = 95, .external_lex_state = 91}, - [4248] = {.lex_state = 95, .external_lex_state = 90}, - [4249] = {.lex_state = 515, .external_lex_state = 93}, - [4250] = {.lex_state = 96, .external_lex_state = 89}, - [4251] = {.lex_state = 95, .external_lex_state = 91}, - [4252] = {.lex_state = 95, .external_lex_state = 90}, - [4253] = {.lex_state = 95, .external_lex_state = 86}, - [4254] = {.lex_state = 95, .external_lex_state = 91}, - [4255] = {.lex_state = 513, .external_lex_state = 91}, - [4256] = {.lex_state = 96, .external_lex_state = 90}, - [4257] = {.lex_state = 95, .external_lex_state = 90}, - [4258] = {.lex_state = 96, .external_lex_state = 90}, - [4259] = {.lex_state = 96, .external_lex_state = 89}, - [4260] = {.lex_state = 514, .external_lex_state = 92}, - [4261] = {.lex_state = 515, .external_lex_state = 93}, - [4262] = {.lex_state = 95, .external_lex_state = 91}, - [4263] = {.lex_state = 513, .external_lex_state = 91}, - [4264] = {.lex_state = 96, .external_lex_state = 89}, - [4265] = {.lex_state = 514, .external_lex_state = 92}, - [4266] = {.lex_state = 515, .external_lex_state = 93}, - [4267] = {.lex_state = 515, .external_lex_state = 93}, - [4268] = {.lex_state = 96, .external_lex_state = 90}, - [4269] = {.lex_state = 96, .external_lex_state = 86}, - [4270] = {.lex_state = 515, .external_lex_state = 93}, - [4271] = {.lex_state = 515, .external_lex_state = 93}, - [4272] = {.lex_state = 513, .external_lex_state = 92}, - [4273] = {.lex_state = 96, .external_lex_state = 89}, - [4274] = {.lex_state = 475, .external_lex_state = 95}, - [4275] = {.lex_state = 475, .external_lex_state = 95}, - [4276] = {.lex_state = 95, .external_lex_state = 90}, - [4277] = {.lex_state = 515, .external_lex_state = 93}, - [4278] = {.lex_state = 96, .external_lex_state = 89}, - [4279] = {.lex_state = 513, .external_lex_state = 92}, - [4280] = {.lex_state = 515, .external_lex_state = 93}, - [4281] = {.lex_state = 96, .external_lex_state = 93}, - [4282] = {.lex_state = 515, .external_lex_state = 93}, - [4283] = {.lex_state = 515, .external_lex_state = 93}, - [4284] = {.lex_state = 513, .external_lex_state = 91}, - [4285] = {.lex_state = 513, .external_lex_state = 92}, - [4286] = {.lex_state = 95, .external_lex_state = 86}, - [4287] = {.lex_state = 514, .external_lex_state = 92}, - [4288] = {.lex_state = 95, .external_lex_state = 86}, - [4289] = {.lex_state = 515, .external_lex_state = 93}, - [4290] = {.lex_state = 513, .external_lex_state = 91}, - [4291] = {.lex_state = 95, .external_lex_state = 86}, - [4292] = {.lex_state = 95, .external_lex_state = 91}, - [4293] = {.lex_state = 96, .external_lex_state = 86}, - [4294] = {.lex_state = 516, .external_lex_state = 67}, - [4295] = {.lex_state = 95, .external_lex_state = 90}, - [4296] = {.lex_state = 96, .external_lex_state = 89}, - [4297] = {.lex_state = 95, .external_lex_state = 91}, - [4298] = {.lex_state = 95, .external_lex_state = 90}, - [4299] = {.lex_state = 513, .external_lex_state = 91}, - [4300] = {.lex_state = 95, .external_lex_state = 91}, - [4301] = {.lex_state = 95, .external_lex_state = 90}, - [4302] = {.lex_state = 513, .external_lex_state = 91}, - [4303] = {.lex_state = 515, .external_lex_state = 93}, - [4304] = {.lex_state = 95, .external_lex_state = 90}, - [4305] = {.lex_state = 514, .external_lex_state = 92}, - [4306] = {.lex_state = 95, .external_lex_state = 90}, - [4307] = {.lex_state = 514, .external_lex_state = 92}, - [4308] = {.lex_state = 96, .external_lex_state = 89}, - [4309] = {.lex_state = 515, .external_lex_state = 93}, - [4310] = {.lex_state = 513, .external_lex_state = 92}, - [4311] = {.lex_state = 96, .external_lex_state = 90}, - [4312] = {.lex_state = 96, .external_lex_state = 89}, - [4313] = {.lex_state = 513, .external_lex_state = 92}, - [4314] = {.lex_state = 95, .external_lex_state = 90}, - [4315] = {.lex_state = 96, .external_lex_state = 90}, - [4316] = {.lex_state = 515, .external_lex_state = 93}, - [4317] = {.lex_state = 96, .external_lex_state = 64}, - [4318] = {.lex_state = 514, .external_lex_state = 92}, - [4319] = {.lex_state = 96, .external_lex_state = 89}, - [4320] = {.lex_state = 95, .external_lex_state = 90}, - [4321] = {.lex_state = 513, .external_lex_state = 92}, - [4322] = {.lex_state = 513, .external_lex_state = 91}, - [4323] = {.lex_state = 513, .external_lex_state = 91}, - [4324] = {.lex_state = 96, .external_lex_state = 91}, - [4325] = {.lex_state = 96, .external_lex_state = 91}, - [4326] = {.lex_state = 96, .external_lex_state = 91}, - [4327] = {.lex_state = 96, .external_lex_state = 90}, - [4328] = {.lex_state = 96, .external_lex_state = 90}, - [4329] = {.lex_state = 513, .external_lex_state = 91}, - [4330] = {.lex_state = 95, .external_lex_state = 92}, - [4331] = {.lex_state = 96, .external_lex_state = 91}, - [4332] = {.lex_state = 96, .external_lex_state = 90}, - [4333] = {.lex_state = 513, .external_lex_state = 92}, - [4334] = {.lex_state = 515, .external_lex_state = 67}, - [4335] = {.lex_state = 513, .external_lex_state = 92}, - [4336] = {.lex_state = 95, .external_lex_state = 92}, - [4337] = {.lex_state = 513, .external_lex_state = 92}, - [4338] = {.lex_state = 95, .external_lex_state = 91}, - [4339] = {.lex_state = 95, .external_lex_state = 91}, - [4340] = {.lex_state = 96, .external_lex_state = 91}, - [4341] = {.lex_state = 515, .external_lex_state = 67}, - [4342] = {.lex_state = 513, .external_lex_state = 91}, - [4343] = {.lex_state = 96, .external_lex_state = 91}, - [4344] = {.lex_state = 515, .external_lex_state = 93}, - [4345] = {.lex_state = 515, .external_lex_state = 93}, - [4346] = {.lex_state = 96, .external_lex_state = 86}, - [4347] = {.lex_state = 95, .external_lex_state = 92}, - [4348] = {.lex_state = 516, .external_lex_state = 92}, - [4349] = {.lex_state = 515, .external_lex_state = 91}, - [4350] = {.lex_state = 95, .external_lex_state = 92}, - [4351] = {.lex_state = 515, .external_lex_state = 91}, - [4352] = {.lex_state = 515, .external_lex_state = 91}, - [4353] = {.lex_state = 516, .external_lex_state = 92}, - [4354] = {.lex_state = 96, .external_lex_state = 91}, - [4355] = {.lex_state = 95, .external_lex_state = 91}, - [4356] = {.lex_state = 96, .external_lex_state = 86}, - [4357] = {.lex_state = 515, .external_lex_state = 91}, - [4358] = {.lex_state = 96, .external_lex_state = 92}, - [4359] = {.lex_state = 515, .external_lex_state = 91}, - [4360] = {.lex_state = 96, .external_lex_state = 93}, - [4361] = {.lex_state = 96, .external_lex_state = 92}, - [4362] = {.lex_state = 96, .external_lex_state = 93}, - [4363] = {.lex_state = 514, .external_lex_state = 92}, - [4364] = {.lex_state = 515, .external_lex_state = 91}, - [4365] = {.lex_state = 513, .external_lex_state = 92}, - [4366] = {.lex_state = 95, .external_lex_state = 91}, - [4367] = {.lex_state = 515, .external_lex_state = 91}, - [4368] = {.lex_state = 516, .external_lex_state = 92}, - [4369] = {.lex_state = 515, .external_lex_state = 91}, - [4370] = {.lex_state = 513, .external_lex_state = 91}, - [4371] = {.lex_state = 516, .external_lex_state = 92}, - [4372] = {.lex_state = 95, .external_lex_state = 91}, + [4127] = {.lex_state = 472, .external_lex_state = 86}, + [4128] = {.lex_state = 454, .external_lex_state = 78}, + [4129] = {.lex_state = 97, .external_lex_state = 87}, + [4130] = {.lex_state = 454, .external_lex_state = 78}, + [4131] = {.lex_state = 454, .external_lex_state = 78}, + [4132] = {.lex_state = 472, .external_lex_state = 86}, + [4133] = {.lex_state = 454, .external_lex_state = 78}, + [4134] = {.lex_state = 454, .external_lex_state = 78}, + [4135] = {.lex_state = 454, .external_lex_state = 78}, + [4136] = {.lex_state = 95, .external_lex_state = 88}, + [4137] = {.lex_state = 454, .external_lex_state = 78}, + [4138] = {.lex_state = 454, .external_lex_state = 78}, + [4139] = {.lex_state = 98, .external_lex_state = 84}, + [4140] = {.lex_state = 98, .external_lex_state = 90}, + [4141] = {.lex_state = 98, .external_lex_state = 84}, + [4142] = {.lex_state = 98, .external_lex_state = 90}, + [4143] = {.lex_state = 97, .external_lex_state = 89}, + [4144] = {.lex_state = 98, .external_lex_state = 90}, + [4145] = {.lex_state = 98, .external_lex_state = 90}, + [4146] = {.lex_state = 98, .external_lex_state = 90}, + [4147] = {.lex_state = 98, .external_lex_state = 92}, + [4148] = {.lex_state = 97, .external_lex_state = 89}, + [4149] = {.lex_state = 97, .external_lex_state = 84}, + [4150] = {.lex_state = 513, .external_lex_state = 87}, + [4151] = {.lex_state = 513, .external_lex_state = 87}, + [4152] = {.lex_state = 97, .external_lex_state = 87}, + [4153] = {.lex_state = 513, .external_lex_state = 93}, + [4154] = {.lex_state = 513, .external_lex_state = 87}, + [4155] = {.lex_state = 513, .external_lex_state = 87}, + [4156] = {.lex_state = 97, .external_lex_state = 93}, + [4157] = {.lex_state = 98, .external_lex_state = 63}, + [4158] = {.lex_state = 98, .external_lex_state = 89}, + [4159] = {.lex_state = 97, .external_lex_state = 89}, + [4160] = {.lex_state = 97, .external_lex_state = 84}, + [4161] = {.lex_state = 97, .external_lex_state = 89}, + [4162] = {.lex_state = 514, .external_lex_state = 87}, + [4163] = {.lex_state = 514, .external_lex_state = 87}, + [4164] = {.lex_state = 97, .external_lex_state = 84}, + [4165] = {.lex_state = 97, .external_lex_state = 89}, + [4166] = {.lex_state = 97, .external_lex_state = 89}, + [4167] = {.lex_state = 97, .external_lex_state = 89}, + [4168] = {.lex_state = 98, .external_lex_state = 84}, + [4169] = {.lex_state = 97, .external_lex_state = 89}, + [4170] = {.lex_state = 97, .external_lex_state = 89}, + [4171] = {.lex_state = 97, .external_lex_state = 89}, + [4172] = {.lex_state = 513, .external_lex_state = 87}, + [4173] = {.lex_state = 98, .external_lex_state = 84}, + [4174] = {.lex_state = 514, .external_lex_state = 87}, + [4175] = {.lex_state = 513, .external_lex_state = 87}, + [4176] = {.lex_state = 97, .external_lex_state = 89}, + [4177] = {.lex_state = 515, .external_lex_state = 92}, + [4178] = {.lex_state = 514, .external_lex_state = 87}, + [4179] = {.lex_state = 95, .external_lex_state = 88}, + [4180] = {.lex_state = 97, .external_lex_state = 87}, + [4181] = {.lex_state = 95, .external_lex_state = 88}, + [4182] = {.lex_state = 95, .external_lex_state = 88}, + [4183] = {.lex_state = 513, .external_lex_state = 87}, + [4184] = {.lex_state = 267, .external_lex_state = 94}, + [4185] = {.lex_state = 98, .external_lex_state = 84}, + [4186] = {.lex_state = 513, .external_lex_state = 87}, + [4187] = {.lex_state = 267, .external_lex_state = 94}, + [4188] = {.lex_state = 98, .external_lex_state = 63}, + [4189] = {.lex_state = 98, .external_lex_state = 84}, + [4190] = {.lex_state = 514, .external_lex_state = 87}, + [4191] = {.lex_state = 98, .external_lex_state = 90}, + [4192] = {.lex_state = 97, .external_lex_state = 87}, + [4193] = {.lex_state = 513, .external_lex_state = 93}, + [4194] = {.lex_state = 515, .external_lex_state = 92}, + [4195] = {.lex_state = 475, .external_lex_state = 95}, + [4196] = {.lex_state = 98, .external_lex_state = 90}, + [4197] = {.lex_state = 475, .external_lex_state = 95}, + [4198] = {.lex_state = 513, .external_lex_state = 93}, + [4199] = {.lex_state = 97, .external_lex_state = 87}, + [4200] = {.lex_state = 513, .external_lex_state = 93}, + [4201] = {.lex_state = 513, .external_lex_state = 93}, + [4202] = {.lex_state = 513, .external_lex_state = 87}, + [4203] = {.lex_state = 513, .external_lex_state = 87}, + [4204] = {.lex_state = 98, .external_lex_state = 87}, + [4205] = {.lex_state = 515, .external_lex_state = 92}, + [4206] = {.lex_state = 515, .external_lex_state = 92}, + [4207] = {.lex_state = 98, .external_lex_state = 87}, + [4208] = {.lex_state = 513, .external_lex_state = 93}, + [4209] = {.lex_state = 97, .external_lex_state = 93}, + [4210] = {.lex_state = 98, .external_lex_state = 92}, + [4211] = {.lex_state = 97, .external_lex_state = 93}, + [4212] = {.lex_state = 513, .external_lex_state = 93}, + [4213] = {.lex_state = 515, .external_lex_state = 92}, + [4214] = {.lex_state = 515, .external_lex_state = 92}, + [4215] = {.lex_state = 98, .external_lex_state = 90}, + [4216] = {.lex_state = 98, .external_lex_state = 90}, + [4217] = {.lex_state = 98, .external_lex_state = 89}, + [4218] = {.lex_state = 97, .external_lex_state = 93}, + [4219] = {.lex_state = 97, .external_lex_state = 93}, + [4220] = {.lex_state = 98, .external_lex_state = 87}, + [4221] = {.lex_state = 97, .external_lex_state = 89}, + [4222] = {.lex_state = 515, .external_lex_state = 92}, + [4223] = {.lex_state = 98, .external_lex_state = 90}, + [4224] = {.lex_state = 97, .external_lex_state = 89}, + [4225] = {.lex_state = 513, .external_lex_state = 87}, + [4226] = {.lex_state = 514, .external_lex_state = 87}, + [4227] = {.lex_state = 97, .external_lex_state = 89}, + [4228] = {.lex_state = 98, .external_lex_state = 93}, + [4229] = {.lex_state = 98, .external_lex_state = 89}, + [4230] = {.lex_state = 97, .external_lex_state = 93}, + [4231] = {.lex_state = 515, .external_lex_state = 92}, + [4232] = {.lex_state = 98, .external_lex_state = 89}, + [4233] = {.lex_state = 513, .external_lex_state = 93}, + [4234] = {.lex_state = 515, .external_lex_state = 92}, + [4235] = {.lex_state = 516, .external_lex_state = 67}, + [4236] = {.lex_state = 97, .external_lex_state = 87}, + [4237] = {.lex_state = 98, .external_lex_state = 87}, + [4238] = {.lex_state = 515, .external_lex_state = 92}, + [4239] = {.lex_state = 513, .external_lex_state = 93}, + [4240] = {.lex_state = 98, .external_lex_state = 90}, + [4241] = {.lex_state = 98, .external_lex_state = 90}, + [4242] = {.lex_state = 513, .external_lex_state = 87}, + [4243] = {.lex_state = 98, .external_lex_state = 89}, + [4244] = {.lex_state = 98, .external_lex_state = 89}, + [4245] = {.lex_state = 98, .external_lex_state = 87}, + [4246] = {.lex_state = 98, .external_lex_state = 90}, + [4247] = {.lex_state = 513, .external_lex_state = 87}, + [4248] = {.lex_state = 98, .external_lex_state = 90}, + [4249] = {.lex_state = 97, .external_lex_state = 89}, + [4250] = {.lex_state = 513, .external_lex_state = 93}, + [4251] = {.lex_state = 513, .external_lex_state = 93}, + [4252] = {.lex_state = 98, .external_lex_state = 90}, + [4253] = {.lex_state = 97, .external_lex_state = 89}, + [4254] = {.lex_state = 515, .external_lex_state = 93}, + [4255] = {.lex_state = 97, .external_lex_state = 93}, + [4256] = {.lex_state = 97, .external_lex_state = 89}, + [4257] = {.lex_state = 98, .external_lex_state = 90}, + [4258] = {.lex_state = 97, .external_lex_state = 89}, + [4259] = {.lex_state = 515, .external_lex_state = 92}, + [4260] = {.lex_state = 515, .external_lex_state = 92}, + [4261] = {.lex_state = 97, .external_lex_state = 84}, + [4262] = {.lex_state = 513, .external_lex_state = 87}, + [4263] = {.lex_state = 513, .external_lex_state = 93}, + [4264] = {.lex_state = 98, .external_lex_state = 63}, + [4265] = {.lex_state = 514, .external_lex_state = 87}, + [4266] = {.lex_state = 98, .external_lex_state = 92}, + [4267] = {.lex_state = 97, .external_lex_state = 93}, + [4268] = {.lex_state = 98, .external_lex_state = 90}, + [4269] = {.lex_state = 513, .external_lex_state = 93}, + [4270] = {.lex_state = 515, .external_lex_state = 92}, + [4271] = {.lex_state = 97, .external_lex_state = 84}, + [4272] = {.lex_state = 98, .external_lex_state = 92}, + [4273] = {.lex_state = 98, .external_lex_state = 92}, + [4274] = {.lex_state = 97, .external_lex_state = 93}, + [4275] = {.lex_state = 513, .external_lex_state = 87}, + [4276] = {.lex_state = 514, .external_lex_state = 87}, + [4277] = {.lex_state = 97, .external_lex_state = 93}, + [4278] = {.lex_state = 98, .external_lex_state = 87}, + [4279] = {.lex_state = 513, .external_lex_state = 93}, + [4280] = {.lex_state = 513, .external_lex_state = 93}, + [4281] = {.lex_state = 98, .external_lex_state = 63}, + [4282] = {.lex_state = 514, .external_lex_state = 87}, + [4283] = {.lex_state = 515, .external_lex_state = 92}, + [4284] = {.lex_state = 514, .external_lex_state = 87}, + [4285] = {.lex_state = 97, .external_lex_state = 89}, + [4286] = {.lex_state = 98, .external_lex_state = 89}, + [4287] = {.lex_state = 515, .external_lex_state = 92}, + [4288] = {.lex_state = 98, .external_lex_state = 90}, + [4289] = {.lex_state = 513, .external_lex_state = 87}, + [4290] = {.lex_state = 98, .external_lex_state = 90}, + [4291] = {.lex_state = 515, .external_lex_state = 92}, + [4292] = {.lex_state = 98, .external_lex_state = 90}, + [4293] = {.lex_state = 98, .external_lex_state = 89}, + [4294] = {.lex_state = 97, .external_lex_state = 89}, + [4295] = {.lex_state = 97, .external_lex_state = 89}, + [4296] = {.lex_state = 98, .external_lex_state = 90}, + [4297] = {.lex_state = 515, .external_lex_state = 92}, + [4298] = {.lex_state = 97, .external_lex_state = 93}, + [4299] = {.lex_state = 98, .external_lex_state = 67}, + [4300] = {.lex_state = 514, .external_lex_state = 87}, + [4301] = {.lex_state = 98, .external_lex_state = 89}, + [4302] = {.lex_state = 97, .external_lex_state = 89}, + [4303] = {.lex_state = 98, .external_lex_state = 89}, + [4304] = {.lex_state = 515, .external_lex_state = 92}, + [4305] = {.lex_state = 475, .external_lex_state = 95}, + [4306] = {.lex_state = 513, .external_lex_state = 93}, + [4307] = {.lex_state = 97, .external_lex_state = 89}, + [4308] = {.lex_state = 98, .external_lex_state = 90}, + [4309] = {.lex_state = 97, .external_lex_state = 89}, + [4310] = {.lex_state = 97, .external_lex_state = 89}, + [4311] = {.lex_state = 513, .external_lex_state = 93}, + [4312] = {.lex_state = 97, .external_lex_state = 89}, + [4313] = {.lex_state = 515, .external_lex_state = 92}, + [4314] = {.lex_state = 98, .external_lex_state = 90}, + [4315] = {.lex_state = 475, .external_lex_state = 95}, + [4316] = {.lex_state = 97, .external_lex_state = 89}, + [4317] = {.lex_state = 97, .external_lex_state = 93}, + [4318] = {.lex_state = 513, .external_lex_state = 87}, + [4319] = {.lex_state = 515, .external_lex_state = 92}, + [4320] = {.lex_state = 513, .external_lex_state = 93}, + [4321] = {.lex_state = 513, .external_lex_state = 93}, + [4322] = {.lex_state = 515, .external_lex_state = 92}, + [4323] = {.lex_state = 97, .external_lex_state = 89}, + [4324] = {.lex_state = 98, .external_lex_state = 92}, + [4325] = {.lex_state = 516, .external_lex_state = 67}, + [4326] = {.lex_state = 98, .external_lex_state = 67}, + [4327] = {.lex_state = 97, .external_lex_state = 89}, + [4328] = {.lex_state = 515, .external_lex_state = 92}, + [4329] = {.lex_state = 98, .external_lex_state = 90}, + [4330] = {.lex_state = 513, .external_lex_state = 87}, + [4331] = {.lex_state = 515, .external_lex_state = 92}, + [4332] = {.lex_state = 97, .external_lex_state = 84}, + [4333] = {.lex_state = 513, .external_lex_state = 93}, + [4334] = {.lex_state = 97, .external_lex_state = 84}, + [4335] = {.lex_state = 97, .external_lex_state = 84}, + [4336] = {.lex_state = 513, .external_lex_state = 93}, + [4337] = {.lex_state = 513, .external_lex_state = 93}, + [4338] = {.lex_state = 98, .external_lex_state = 89}, + [4339] = {.lex_state = 98, .external_lex_state = 89}, + [4340] = {.lex_state = 513, .external_lex_state = 93}, + [4341] = {.lex_state = 97, .external_lex_state = 89}, + [4342] = {.lex_state = 513, .external_lex_state = 93}, + [4343] = {.lex_state = 515, .external_lex_state = 67}, + [4344] = {.lex_state = 98, .external_lex_state = 89}, + [4345] = {.lex_state = 98, .external_lex_state = 84}, + [4346] = {.lex_state = 98, .external_lex_state = 92}, + [4347] = {.lex_state = 98, .external_lex_state = 92}, + [4348] = {.lex_state = 515, .external_lex_state = 93}, + [4349] = {.lex_state = 97, .external_lex_state = 93}, + [4350] = {.lex_state = 515, .external_lex_state = 87}, + [4351] = {.lex_state = 97, .external_lex_state = 93}, + [4352] = {.lex_state = 97, .external_lex_state = 93}, + [4353] = {.lex_state = 97, .external_lex_state = 93}, + [4354] = {.lex_state = 97, .external_lex_state = 93}, + [4355] = {.lex_state = 515, .external_lex_state = 93}, + [4356] = {.lex_state = 97, .external_lex_state = 93}, + [4357] = {.lex_state = 98, .external_lex_state = 92}, + [4358] = {.lex_state = 97, .external_lex_state = 93}, + [4359] = {.lex_state = 98, .external_lex_state = 92}, + [4360] = {.lex_state = 98, .external_lex_state = 89}, + [4361] = {.lex_state = 513, .external_lex_state = 93}, + [4362] = {.lex_state = 515, .external_lex_state = 92}, + [4363] = {.lex_state = 98, .external_lex_state = 89}, + [4364] = {.lex_state = 515, .external_lex_state = 92}, + [4365] = {.lex_state = 98, .external_lex_state = 92}, + [4366] = {.lex_state = 98, .external_lex_state = 93}, + [4367] = {.lex_state = 515, .external_lex_state = 87}, + [4368] = {.lex_state = 515, .external_lex_state = 93}, + [4369] = {.lex_state = 516, .external_lex_state = 87}, + [4370] = {.lex_state = 98, .external_lex_state = 92}, + [4371] = {.lex_state = 513, .external_lex_state = 93}, + [4372] = {.lex_state = 98, .external_lex_state = 89}, [4373] = {.lex_state = 515, .external_lex_state = 93}, - [4374] = {.lex_state = 513, .external_lex_state = 91}, - [4375] = {.lex_state = 515, .external_lex_state = 93}, - [4376] = {.lex_state = 516, .external_lex_state = 92}, - [4377] = {.lex_state = 95, .external_lex_state = 91}, - [4378] = {.lex_state = 515, .external_lex_state = 93}, - [4379] = {.lex_state = 513, .external_lex_state = 92}, - [4380] = {.lex_state = 96, .external_lex_state = 93}, - [4381] = {.lex_state = 96, .external_lex_state = 90}, - [4382] = {.lex_state = 513, .external_lex_state = 91}, - [4383] = {.lex_state = 96, .external_lex_state = 90}, - [4384] = {.lex_state = 95, .external_lex_state = 91}, - [4385] = {.lex_state = 95, .external_lex_state = 91}, - [4386] = {.lex_state = 96, .external_lex_state = 90}, - [4387] = {.lex_state = 96, .external_lex_state = 92}, - [4388] = {.lex_state = 96, .external_lex_state = 92}, - [4389] = {.lex_state = 96, .external_lex_state = 90}, - [4390] = {.lex_state = 96, .external_lex_state = 92}, - [4391] = {.lex_state = 96, .external_lex_state = 93}, - [4392] = {.lex_state = 515, .external_lex_state = 91}, - [4393] = {.lex_state = 96, .external_lex_state = 93}, - [4394] = {.lex_state = 515, .external_lex_state = 91}, - [4395] = {.lex_state = 515, .external_lex_state = 91}, - [4396] = {.lex_state = 514, .external_lex_state = 92}, - [4397] = {.lex_state = 96, .external_lex_state = 90}, - [4398] = {.lex_state = 515, .external_lex_state = 91}, - [4399] = {.lex_state = 96, .external_lex_state = 90}, - [4400] = {.lex_state = 95, .external_lex_state = 92}, - [4401] = {.lex_state = 96, .external_lex_state = 93}, - [4402] = {.lex_state = 515, .external_lex_state = 91}, - [4403] = {.lex_state = 95, .external_lex_state = 91}, - [4404] = {.lex_state = 96, .external_lex_state = 91}, - [4405] = {.lex_state = 96, .external_lex_state = 86}, - [4406] = {.lex_state = 515, .external_lex_state = 91}, - [4407] = {.lex_state = 96, .external_lex_state = 67}, - [4408] = {.lex_state = 515, .external_lex_state = 91}, - [4409] = {.lex_state = 514, .external_lex_state = 92}, - [4410] = {.lex_state = 96, .external_lex_state = 90}, - [4411] = {.lex_state = 515, .external_lex_state = 91}, - [4412] = {.lex_state = 96, .external_lex_state = 92}, - [4413] = {.lex_state = 96, .external_lex_state = 93}, - [4414] = {.lex_state = 96, .external_lex_state = 91}, - [4415] = {.lex_state = 515, .external_lex_state = 91}, - [4416] = {.lex_state = 96, .external_lex_state = 90}, - [4417] = {.lex_state = 95, .external_lex_state = 91}, - [4418] = {.lex_state = 95, .external_lex_state = 91}, - [4419] = {.lex_state = 96, .external_lex_state = 86}, - [4420] = {.lex_state = 95, .external_lex_state = 92}, - [4421] = {.lex_state = 515, .external_lex_state = 91}, - [4422] = {.lex_state = 515, .external_lex_state = 93}, - [4423] = {.lex_state = 96, .external_lex_state = 93}, - [4424] = {.lex_state = 515, .external_lex_state = 91}, - [4425] = {.lex_state = 515, .external_lex_state = 91}, - [4426] = {.lex_state = 515, .external_lex_state = 91}, - [4427] = {.lex_state = 96, .external_lex_state = 90}, - [4428] = {.lex_state = 96, .external_lex_state = 93}, - [4429] = {.lex_state = 96, .external_lex_state = 86}, - [4430] = {.lex_state = 515, .external_lex_state = 91}, - [4431] = {.lex_state = 513, .external_lex_state = 91}, - [4432] = {.lex_state = 513, .external_lex_state = 91}, - [4433] = {.lex_state = 96, .external_lex_state = 90}, - [4434] = {.lex_state = 96, .external_lex_state = 93}, - [4435] = {.lex_state = 96, .external_lex_state = 93}, - [4436] = {.lex_state = 515, .external_lex_state = 67}, - [4437] = {.lex_state = 513, .external_lex_state = 92}, - [4438] = {.lex_state = 515, .external_lex_state = 67}, - [4439] = {.lex_state = 513, .external_lex_state = 92}, - [4440] = {.lex_state = 513, .external_lex_state = 91}, - [4441] = {.lex_state = 513, .external_lex_state = 91}, - [4442] = {.lex_state = 96, .external_lex_state = 67}, - [4443] = {.lex_state = 95, .external_lex_state = 91}, - [4444] = {.lex_state = 95, .external_lex_state = 91}, - [4445] = {.lex_state = 95, .external_lex_state = 91}, - [4446] = {.lex_state = 95, .external_lex_state = 91}, - [4447] = {.lex_state = 95, .external_lex_state = 91}, - [4448] = {.lex_state = 96, .external_lex_state = 93}, - [4449] = {.lex_state = 96, .external_lex_state = 93}, - [4450] = {.lex_state = 96, .external_lex_state = 93}, - [4451] = {.lex_state = 96, .external_lex_state = 93}, - [4452] = {.lex_state = 95, .external_lex_state = 92}, - [4453] = {.lex_state = 513, .external_lex_state = 91}, - [4454] = {.lex_state = 513, .external_lex_state = 91}, - [4455] = {.lex_state = 513, .external_lex_state = 91}, - [4456] = {.lex_state = 513, .external_lex_state = 91}, - [4457] = {.lex_state = 96, .external_lex_state = 93}, - [4458] = {.lex_state = 513, .external_lex_state = 91}, - [4459] = {.lex_state = 513, .external_lex_state = 91}, - [4460] = {.lex_state = 513, .external_lex_state = 91}, - [4461] = {.lex_state = 513, .external_lex_state = 91}, - [4462] = {.lex_state = 95, .external_lex_state = 91}, - [4463] = {.lex_state = 95, .external_lex_state = 91}, - [4464] = {.lex_state = 95, .external_lex_state = 91}, - [4465] = {.lex_state = 95, .external_lex_state = 86}, - [4466] = {.lex_state = 96, .external_lex_state = 90}, - [4467] = {.lex_state = 96, .external_lex_state = 90}, - [4468] = {.lex_state = 96, .external_lex_state = 90}, - [4469] = {.lex_state = 96, .external_lex_state = 90}, - [4470] = {.lex_state = 96, .external_lex_state = 93}, - [4471] = {.lex_state = 96, .external_lex_state = 93}, - [4472] = {.lex_state = 96, .external_lex_state = 93}, - [4473] = {.lex_state = 475, .external_lex_state = 72}, - [4474] = {.lex_state = 475, .external_lex_state = 72}, - [4475] = {.lex_state = 513, .external_lex_state = 91}, - [4476] = {.lex_state = 513, .external_lex_state = 91}, - [4477] = {.lex_state = 515, .external_lex_state = 93}, - [4478] = {.lex_state = 95, .external_lex_state = 92}, - [4479] = {.lex_state = 515, .external_lex_state = 93}, - [4480] = {.lex_state = 475, .external_lex_state = 72}, - [4481] = {.lex_state = 475, .external_lex_state = 72}, - [4482] = {.lex_state = 513, .external_lex_state = 91}, - [4483] = {.lex_state = 96, .external_lex_state = 90}, - [4484] = {.lex_state = 96, .external_lex_state = 90}, - [4485] = {.lex_state = 513, .external_lex_state = 92}, - [4486] = {.lex_state = 96, .external_lex_state = 64}, - [4487] = {.lex_state = 96, .external_lex_state = 91}, - [4488] = {.lex_state = 515, .external_lex_state = 93}, - [4489] = {.lex_state = 96, .external_lex_state = 91}, - [4490] = {.lex_state = 515, .external_lex_state = 93}, - [4491] = {.lex_state = 513, .external_lex_state = 91}, - [4492] = {.lex_state = 516, .external_lex_state = 67}, - [4493] = {.lex_state = 516, .external_lex_state = 67}, - [4494] = {.lex_state = 513, .external_lex_state = 91}, - [4495] = {.lex_state = 513, .external_lex_state = 91}, - [4496] = {.lex_state = 513, .external_lex_state = 91}, - [4497] = {.lex_state = 513, .external_lex_state = 91}, - [4498] = {.lex_state = 513, .external_lex_state = 91}, - [4499] = {.lex_state = 513, .external_lex_state = 91}, - [4500] = {.lex_state = 513, .external_lex_state = 91}, - [4501] = {.lex_state = 513, .external_lex_state = 91}, - [4502] = {.lex_state = 515, .external_lex_state = 93}, - [4503] = {.lex_state = 515, .external_lex_state = 93}, - [4504] = {.lex_state = 513, .external_lex_state = 92}, - [4505] = {.lex_state = 516, .external_lex_state = 67}, - [4506] = {.lex_state = 515, .external_lex_state = 93}, - [4507] = {.lex_state = 515, .external_lex_state = 91}, - [4508] = {.lex_state = 468, .external_lex_state = 96}, - [4509] = {.lex_state = 514, .external_lex_state = 92}, - [4510] = {.lex_state = 96, .external_lex_state = 91}, - [4511] = {.lex_state = 96, .external_lex_state = 91}, - [4512] = {.lex_state = 96, .external_lex_state = 91}, - [4513] = {.lex_state = 516, .external_lex_state = 92}, - [4514] = {.lex_state = 95, .external_lex_state = 86}, - [4515] = {.lex_state = 516, .external_lex_state = 67}, - [4516] = {.lex_state = 515, .external_lex_state = 92}, - [4517] = {.lex_state = 515, .external_lex_state = 93}, - [4518] = {.lex_state = 514, .external_lex_state = 92}, - [4519] = {.lex_state = 514, .external_lex_state = 92}, - [4520] = {.lex_state = 468, .external_lex_state = 96}, - [4521] = {.lex_state = 515, .external_lex_state = 91}, - [4522] = {.lex_state = 514, .external_lex_state = 92}, - [4523] = {.lex_state = 515, .external_lex_state = 91}, - [4524] = {.lex_state = 514, .external_lex_state = 92}, - [4525] = {.lex_state = 96, .external_lex_state = 86}, - [4526] = {.lex_state = 515, .external_lex_state = 92}, - [4527] = {.lex_state = 515, .external_lex_state = 91}, - [4528] = {.lex_state = 514, .external_lex_state = 92}, - [4529] = {.lex_state = 513, .external_lex_state = 92}, - [4530] = {.lex_state = 515, .external_lex_state = 91}, - [4531] = {.lex_state = 513, .external_lex_state = 92}, - [4532] = {.lex_state = 96, .external_lex_state = 64}, - [4533] = {.lex_state = 515, .external_lex_state = 92}, - [4534] = {.lex_state = 513, .external_lex_state = 92}, - [4535] = {.lex_state = 515, .external_lex_state = 91}, - [4536] = {.lex_state = 95, .external_lex_state = 86}, - [4537] = {.lex_state = 513, .external_lex_state = 92}, - [4538] = {.lex_state = 96, .external_lex_state = 91}, - [4539] = {.lex_state = 96, .external_lex_state = 91}, - [4540] = {.lex_state = 96, .external_lex_state = 91}, - [4541] = {.lex_state = 95, .external_lex_state = 86}, - [4542] = {.lex_state = 96, .external_lex_state = 91}, - [4543] = {.lex_state = 95, .external_lex_state = 86}, - [4544] = {.lex_state = 514, .external_lex_state = 92}, - [4545] = {.lex_state = 96, .external_lex_state = 91}, - [4546] = {.lex_state = 96, .external_lex_state = 86}, - [4547] = {.lex_state = 96, .external_lex_state = 67}, - [4548] = {.lex_state = 96, .external_lex_state = 86}, - [4549] = {.lex_state = 514, .external_lex_state = 92}, - [4550] = {.lex_state = 514, .external_lex_state = 92}, - [4551] = {.lex_state = 514, .external_lex_state = 92}, - [4552] = {.lex_state = 95, .external_lex_state = 86}, - [4553] = {.lex_state = 515, .external_lex_state = 92}, - [4554] = {.lex_state = 513, .external_lex_state = 92}, - [4555] = {.lex_state = 515, .external_lex_state = 92}, - [4556] = {.lex_state = 513, .external_lex_state = 92}, - [4557] = {.lex_state = 514, .external_lex_state = 92}, - [4558] = {.lex_state = 96, .external_lex_state = 91}, - [4559] = {.lex_state = 96, .external_lex_state = 91}, - [4560] = {.lex_state = 96, .external_lex_state = 91}, - [4561] = {.lex_state = 514, .external_lex_state = 92}, - [4562] = {.lex_state = 516, .external_lex_state = 92}, - [4563] = {.lex_state = 468, .external_lex_state = 96}, - [4564] = {.lex_state = 95, .external_lex_state = 86}, - [4565] = {.lex_state = 96, .external_lex_state = 91}, - [4566] = {.lex_state = 96, .external_lex_state = 91}, - [4567] = {.lex_state = 515, .external_lex_state = 91}, - [4568] = {.lex_state = 515, .external_lex_state = 91}, - [4569] = {.lex_state = 515, .external_lex_state = 91}, - [4570] = {.lex_state = 515, .external_lex_state = 91}, - [4571] = {.lex_state = 515, .external_lex_state = 91}, - [4572] = {.lex_state = 515, .external_lex_state = 91}, - [4573] = {.lex_state = 515, .external_lex_state = 91}, - [4574] = {.lex_state = 515, .external_lex_state = 91}, - [4575] = {.lex_state = 95, .external_lex_state = 86}, - [4576] = {.lex_state = 514, .external_lex_state = 92}, - [4577] = {.lex_state = 297, .external_lex_state = 97}, - [4578] = {.lex_state = 96, .external_lex_state = 91}, - [4579] = {.lex_state = 95, .external_lex_state = 86}, - [4580] = {.lex_state = 95, .external_lex_state = 86}, - [4581] = {.lex_state = 96, .external_lex_state = 86}, - [4582] = {.lex_state = 297, .external_lex_state = 97}, - [4583] = {.lex_state = 96, .external_lex_state = 91}, - [4584] = {.lex_state = 516, .external_lex_state = 92}, - [4585] = {.lex_state = 514, .external_lex_state = 92}, - [4586] = {.lex_state = 514, .external_lex_state = 92}, - [4587] = {.lex_state = 515, .external_lex_state = 92}, - [4588] = {.lex_state = 513, .external_lex_state = 92}, - [4589] = {.lex_state = 515, .external_lex_state = 92}, - [4590] = {.lex_state = 516, .external_lex_state = 92}, - [4591] = {.lex_state = 297, .external_lex_state = 97}, - [4592] = {.lex_state = 516, .external_lex_state = 92}, - [4593] = {.lex_state = 514, .external_lex_state = 92}, - [4594] = {.lex_state = 516, .external_lex_state = 92}, - [4595] = {.lex_state = 96, .external_lex_state = 91}, - [4596] = {.lex_state = 96, .external_lex_state = 92}, - [4597] = {.lex_state = 515, .external_lex_state = 92}, - [4598] = {.lex_state = 96, .external_lex_state = 92}, - [4599] = {.lex_state = 513, .external_lex_state = 92}, - [4600] = {.lex_state = 468, .external_lex_state = 96}, - [4601] = {.lex_state = 516, .external_lex_state = 92}, - [4602] = {.lex_state = 515, .external_lex_state = 93}, - [4603] = {.lex_state = 515, .external_lex_state = 93}, - [4604] = {.lex_state = 96, .external_lex_state = 64}, - [4605] = {.lex_state = 515, .external_lex_state = 67}, - [4606] = {.lex_state = 515, .external_lex_state = 67}, - [4607] = {.lex_state = 96, .external_lex_state = 92}, - [4608] = {.lex_state = 516, .external_lex_state = 67}, - [4609] = {.lex_state = 514, .external_lex_state = 92}, - [4610] = {.lex_state = 297, .external_lex_state = 97}, - [4611] = {.lex_state = 96, .external_lex_state = 86}, - [4612] = {.lex_state = 516, .external_lex_state = 92}, - [4613] = {.lex_state = 514, .external_lex_state = 92}, - [4614] = {.lex_state = 297, .external_lex_state = 97}, - [4615] = {.lex_state = 96, .external_lex_state = 86}, - [4616] = {.lex_state = 95, .external_lex_state = 86}, + [4374] = {.lex_state = 513, .external_lex_state = 93}, + [4375] = {.lex_state = 98, .external_lex_state = 89}, + [4376] = {.lex_state = 516, .external_lex_state = 87}, + [4377] = {.lex_state = 98, .external_lex_state = 89}, + [4378] = {.lex_state = 98, .external_lex_state = 89}, + [4379] = {.lex_state = 515, .external_lex_state = 87}, + [4380] = {.lex_state = 98, .external_lex_state = 93}, + [4381] = {.lex_state = 97, .external_lex_state = 87}, + [4382] = {.lex_state = 515, .external_lex_state = 92}, + [4383] = {.lex_state = 515, .external_lex_state = 92}, + [4384] = {.lex_state = 98, .external_lex_state = 84}, + [4385] = {.lex_state = 515, .external_lex_state = 93}, + [4386] = {.lex_state = 514, .external_lex_state = 87}, + [4387] = {.lex_state = 516, .external_lex_state = 87}, + [4388] = {.lex_state = 513, .external_lex_state = 87}, + [4389] = {.lex_state = 516, .external_lex_state = 87}, + [4390] = {.lex_state = 516, .external_lex_state = 87}, + [4391] = {.lex_state = 97, .external_lex_state = 93}, + [4392] = {.lex_state = 98, .external_lex_state = 89}, + [4393] = {.lex_state = 98, .external_lex_state = 89}, + [4394] = {.lex_state = 98, .external_lex_state = 84}, + [4395] = {.lex_state = 97, .external_lex_state = 93}, + [4396] = {.lex_state = 514, .external_lex_state = 87}, + [4397] = {.lex_state = 98, .external_lex_state = 92}, + [4398] = {.lex_state = 514, .external_lex_state = 87}, + [4399] = {.lex_state = 97, .external_lex_state = 87}, + [4400] = {.lex_state = 97, .external_lex_state = 93}, + [4401] = {.lex_state = 98, .external_lex_state = 89}, + [4402] = {.lex_state = 97, .external_lex_state = 93}, + [4403] = {.lex_state = 97, .external_lex_state = 87}, + [4404] = {.lex_state = 515, .external_lex_state = 93}, + [4405] = {.lex_state = 515, .external_lex_state = 93}, + [4406] = {.lex_state = 98, .external_lex_state = 84}, + [4407] = {.lex_state = 515, .external_lex_state = 92}, + [4408] = {.lex_state = 515, .external_lex_state = 93}, + [4409] = {.lex_state = 513, .external_lex_state = 93}, + [4410] = {.lex_state = 513, .external_lex_state = 93}, + [4411] = {.lex_state = 513, .external_lex_state = 93}, + [4412] = {.lex_state = 515, .external_lex_state = 87}, + [4413] = {.lex_state = 515, .external_lex_state = 87}, + [4414] = {.lex_state = 516, .external_lex_state = 87}, + [4415] = {.lex_state = 98, .external_lex_state = 92}, + [4416] = {.lex_state = 513, .external_lex_state = 93}, + [4417] = {.lex_state = 515, .external_lex_state = 92}, + [4418] = {.lex_state = 515, .external_lex_state = 93}, + [4419] = {.lex_state = 515, .external_lex_state = 92}, + [4420] = {.lex_state = 516, .external_lex_state = 87}, + [4421] = {.lex_state = 98, .external_lex_state = 93}, + [4422] = {.lex_state = 98, .external_lex_state = 93}, + [4423] = {.lex_state = 516, .external_lex_state = 87}, + [4424] = {.lex_state = 97, .external_lex_state = 87}, + [4425] = {.lex_state = 513, .external_lex_state = 87}, + [4426] = {.lex_state = 515, .external_lex_state = 87}, + [4427] = {.lex_state = 98, .external_lex_state = 92}, + [4428] = {.lex_state = 513, .external_lex_state = 87}, + [4429] = {.lex_state = 97, .external_lex_state = 84}, + [4430] = {.lex_state = 513, .external_lex_state = 87}, + [4431] = {.lex_state = 98, .external_lex_state = 93}, + [4432] = {.lex_state = 516, .external_lex_state = 87}, + [4433] = {.lex_state = 475, .external_lex_state = 73}, + [4434] = {.lex_state = 98, .external_lex_state = 92}, + [4435] = {.lex_state = 515, .external_lex_state = 87}, + [4436] = {.lex_state = 98, .external_lex_state = 92}, + [4437] = {.lex_state = 515, .external_lex_state = 92}, + [4438] = {.lex_state = 515, .external_lex_state = 92}, + [4439] = {.lex_state = 515, .external_lex_state = 93}, + [4440] = {.lex_state = 513, .external_lex_state = 93}, + [4441] = {.lex_state = 513, .external_lex_state = 93}, + [4442] = {.lex_state = 513, .external_lex_state = 87}, + [4443] = {.lex_state = 475, .external_lex_state = 73}, + [4444] = {.lex_state = 513, .external_lex_state = 87}, + [4445] = {.lex_state = 515, .external_lex_state = 93}, + [4446] = {.lex_state = 515, .external_lex_state = 87}, + [4447] = {.lex_state = 98, .external_lex_state = 67}, + [4448] = {.lex_state = 513, .external_lex_state = 93}, + [4449] = {.lex_state = 513, .external_lex_state = 93}, + [4450] = {.lex_state = 515, .external_lex_state = 93}, + [4451] = {.lex_state = 515, .external_lex_state = 93}, + [4452] = {.lex_state = 98, .external_lex_state = 84}, + [4453] = {.lex_state = 515, .external_lex_state = 92}, + [4454] = {.lex_state = 513, .external_lex_state = 93}, + [4455] = {.lex_state = 515, .external_lex_state = 67}, + [4456] = {.lex_state = 98, .external_lex_state = 93}, + [4457] = {.lex_state = 98, .external_lex_state = 84}, + [4458] = {.lex_state = 475, .external_lex_state = 73}, + [4459] = {.lex_state = 475, .external_lex_state = 73}, + [4460] = {.lex_state = 515, .external_lex_state = 93}, + [4461] = {.lex_state = 515, .external_lex_state = 93}, + [4462] = {.lex_state = 98, .external_lex_state = 89}, + [4463] = {.lex_state = 516, .external_lex_state = 67}, + [4464] = {.lex_state = 97, .external_lex_state = 93}, + [4465] = {.lex_state = 98, .external_lex_state = 89}, + [4466] = {.lex_state = 98, .external_lex_state = 89}, + [4467] = {.lex_state = 97, .external_lex_state = 93}, + [4468] = {.lex_state = 515, .external_lex_state = 87}, + [4469] = {.lex_state = 515, .external_lex_state = 93}, + [4470] = {.lex_state = 514, .external_lex_state = 87}, + [4471] = {.lex_state = 97, .external_lex_state = 93}, + [4472] = {.lex_state = 515, .external_lex_state = 67}, + [4473] = {.lex_state = 515, .external_lex_state = 67}, + [4474] = {.lex_state = 97, .external_lex_state = 87}, + [4475] = {.lex_state = 97, .external_lex_state = 93}, + [4476] = {.lex_state = 515, .external_lex_state = 87}, + [4477] = {.lex_state = 98, .external_lex_state = 67}, + [4478] = {.lex_state = 515, .external_lex_state = 93}, + [4479] = {.lex_state = 515, .external_lex_state = 87}, + [4480] = {.lex_state = 98, .external_lex_state = 89}, + [4481] = {.lex_state = 98, .external_lex_state = 89}, + [4482] = {.lex_state = 98, .external_lex_state = 89}, + [4483] = {.lex_state = 98, .external_lex_state = 89}, + [4484] = {.lex_state = 98, .external_lex_state = 63}, + [4485] = {.lex_state = 513, .external_lex_state = 93}, + [4486] = {.lex_state = 513, .external_lex_state = 93}, + [4487] = {.lex_state = 513, .external_lex_state = 93}, + [4488] = {.lex_state = 513, .external_lex_state = 93}, + [4489] = {.lex_state = 513, .external_lex_state = 93}, + [4490] = {.lex_state = 513, .external_lex_state = 93}, + [4491] = {.lex_state = 513, .external_lex_state = 93}, + [4492] = {.lex_state = 513, .external_lex_state = 93}, + [4493] = {.lex_state = 515, .external_lex_state = 93}, + [4494] = {.lex_state = 97, .external_lex_state = 93}, + [4495] = {.lex_state = 98, .external_lex_state = 92}, + [4496] = {.lex_state = 98, .external_lex_state = 92}, + [4497] = {.lex_state = 97, .external_lex_state = 93}, + [4498] = {.lex_state = 515, .external_lex_state = 93}, + [4499] = {.lex_state = 516, .external_lex_state = 87}, + [4500] = {.lex_state = 515, .external_lex_state = 93}, + [4501] = {.lex_state = 515, .external_lex_state = 93}, + [4502] = {.lex_state = 513, .external_lex_state = 87}, + [4503] = {.lex_state = 98, .external_lex_state = 92}, + [4504] = {.lex_state = 513, .external_lex_state = 87}, + [4505] = {.lex_state = 98, .external_lex_state = 92}, + [4506] = {.lex_state = 97, .external_lex_state = 93}, + [4507] = {.lex_state = 98, .external_lex_state = 92}, + [4508] = {.lex_state = 98, .external_lex_state = 92}, + [4509] = {.lex_state = 98, .external_lex_state = 93}, + [4510] = {.lex_state = 97, .external_lex_state = 93}, + [4511] = {.lex_state = 515, .external_lex_state = 87}, + [4512] = {.lex_state = 98, .external_lex_state = 93}, + [4513] = {.lex_state = 515, .external_lex_state = 92}, + [4514] = {.lex_state = 515, .external_lex_state = 92}, + [4515] = {.lex_state = 98, .external_lex_state = 89}, + [4516] = {.lex_state = 515, .external_lex_state = 93}, + [4517] = {.lex_state = 98, .external_lex_state = 89}, + [4518] = {.lex_state = 516, .external_lex_state = 67}, + [4519] = {.lex_state = 513, .external_lex_state = 93}, + [4520] = {.lex_state = 516, .external_lex_state = 67}, + [4521] = {.lex_state = 513, .external_lex_state = 93}, + [4522] = {.lex_state = 513, .external_lex_state = 93}, + [4523] = {.lex_state = 513, .external_lex_state = 93}, + [4524] = {.lex_state = 513, .external_lex_state = 93}, + [4525] = {.lex_state = 513, .external_lex_state = 93}, + [4526] = {.lex_state = 513, .external_lex_state = 93}, + [4527] = {.lex_state = 513, .external_lex_state = 93}, + [4528] = {.lex_state = 513, .external_lex_state = 93}, + [4529] = {.lex_state = 513, .external_lex_state = 93}, + [4530] = {.lex_state = 516, .external_lex_state = 87}, + [4531] = {.lex_state = 98, .external_lex_state = 93}, + [4532] = {.lex_state = 98, .external_lex_state = 92}, + [4533] = {.lex_state = 98, .external_lex_state = 93}, + [4534] = {.lex_state = 98, .external_lex_state = 93}, + [4535] = {.lex_state = 98, .external_lex_state = 92}, + [4536] = {.lex_state = 98, .external_lex_state = 84}, + [4537] = {.lex_state = 515, .external_lex_state = 92}, + [4538] = {.lex_state = 98, .external_lex_state = 93}, + [4539] = {.lex_state = 98, .external_lex_state = 87}, + [4540] = {.lex_state = 97, .external_lex_state = 84}, + [4541] = {.lex_state = 98, .external_lex_state = 93}, + [4542] = {.lex_state = 515, .external_lex_state = 92}, + [4543] = {.lex_state = 515, .external_lex_state = 92}, + [4544] = {.lex_state = 97, .external_lex_state = 84}, + [4545] = {.lex_state = 514, .external_lex_state = 87}, + [4546] = {.lex_state = 514, .external_lex_state = 87}, + [4547] = {.lex_state = 297, .external_lex_state = 96}, + [4548] = {.lex_state = 514, .external_lex_state = 87}, + [4549] = {.lex_state = 297, .external_lex_state = 96}, + [4550] = {.lex_state = 98, .external_lex_state = 93}, + [4551] = {.lex_state = 98, .external_lex_state = 63}, + [4552] = {.lex_state = 97, .external_lex_state = 84}, + [4553] = {.lex_state = 97, .external_lex_state = 84}, + [4554] = {.lex_state = 515, .external_lex_state = 93}, + [4555] = {.lex_state = 515, .external_lex_state = 93}, + [4556] = {.lex_state = 514, .external_lex_state = 87}, + [4557] = {.lex_state = 97, .external_lex_state = 84}, + [4558] = {.lex_state = 97, .external_lex_state = 84}, + [4559] = {.lex_state = 515, .external_lex_state = 93}, + [4560] = {.lex_state = 515, .external_lex_state = 93}, + [4561] = {.lex_state = 514, .external_lex_state = 87}, + [4562] = {.lex_state = 515, .external_lex_state = 93}, + [4563] = {.lex_state = 97, .external_lex_state = 87}, + [4564] = {.lex_state = 97, .external_lex_state = 84}, + [4565] = {.lex_state = 297, .external_lex_state = 96}, + [4566] = {.lex_state = 516, .external_lex_state = 67}, + [4567] = {.lex_state = 515, .external_lex_state = 93}, + [4568] = {.lex_state = 514, .external_lex_state = 87}, + [4569] = {.lex_state = 515, .external_lex_state = 93}, + [4570] = {.lex_state = 515, .external_lex_state = 93}, + [4571] = {.lex_state = 98, .external_lex_state = 93}, + [4572] = {.lex_state = 468, .external_lex_state = 97}, + [4573] = {.lex_state = 97, .external_lex_state = 84}, + [4574] = {.lex_state = 97, .external_lex_state = 84}, + [4575] = {.lex_state = 98, .external_lex_state = 93}, + [4576] = {.lex_state = 98, .external_lex_state = 93}, + [4577] = {.lex_state = 98, .external_lex_state = 93}, + [4578] = {.lex_state = 514, .external_lex_state = 87}, + [4579] = {.lex_state = 514, .external_lex_state = 87}, + [4580] = {.lex_state = 514, .external_lex_state = 87}, + [4581] = {.lex_state = 514, .external_lex_state = 87}, + [4582] = {.lex_state = 98, .external_lex_state = 93}, + [4583] = {.lex_state = 515, .external_lex_state = 93}, + [4584] = {.lex_state = 515, .external_lex_state = 93}, + [4585] = {.lex_state = 98, .external_lex_state = 93}, + [4586] = {.lex_state = 515, .external_lex_state = 87}, + [4587] = {.lex_state = 515, .external_lex_state = 87}, + [4588] = {.lex_state = 513, .external_lex_state = 87}, + [4589] = {.lex_state = 515, .external_lex_state = 87}, + [4590] = {.lex_state = 515, .external_lex_state = 87}, + [4591] = {.lex_state = 98, .external_lex_state = 63}, + [4592] = {.lex_state = 98, .external_lex_state = 93}, + [4593] = {.lex_state = 515, .external_lex_state = 87}, + [4594] = {.lex_state = 98, .external_lex_state = 87}, + [4595] = {.lex_state = 513, .external_lex_state = 87}, + [4596] = {.lex_state = 98, .external_lex_state = 63}, + [4597] = {.lex_state = 97, .external_lex_state = 84}, + [4598] = {.lex_state = 513, .external_lex_state = 87}, + [4599] = {.lex_state = 468, .external_lex_state = 97}, + [4600] = {.lex_state = 98, .external_lex_state = 67}, + [4601] = {.lex_state = 515, .external_lex_state = 87}, + [4602] = {.lex_state = 516, .external_lex_state = 67}, + [4603] = {.lex_state = 514, .external_lex_state = 87}, + [4604] = {.lex_state = 97, .external_lex_state = 84}, + [4605] = {.lex_state = 468, .external_lex_state = 97}, + [4606] = {.lex_state = 516, .external_lex_state = 67}, + [4607] = {.lex_state = 297, .external_lex_state = 96}, + [4608] = {.lex_state = 98, .external_lex_state = 84}, + [4609] = {.lex_state = 514, .external_lex_state = 87}, + [4610] = {.lex_state = 515, .external_lex_state = 93}, + [4611] = {.lex_state = 514, .external_lex_state = 87}, + [4612] = {.lex_state = 98, .external_lex_state = 87}, + [4613] = {.lex_state = 515, .external_lex_state = 87}, + [4614] = {.lex_state = 97, .external_lex_state = 84}, + [4615] = {.lex_state = 98, .external_lex_state = 93}, + [4616] = {.lex_state = 297, .external_lex_state = 96}, [4617] = {.lex_state = 515, .external_lex_state = 92}, - [4618] = {.lex_state = 515, .external_lex_state = 91}, - [4619] = {.lex_state = 513, .external_lex_state = 91}, - [4620] = {.lex_state = 513, .external_lex_state = 91}, - [4621] = {.lex_state = 96, .external_lex_state = 64}, - [4622] = {.lex_state = 95, .external_lex_state = 86}, - [4623] = {.lex_state = 468, .external_lex_state = 96}, - [4624] = {.lex_state = 513, .external_lex_state = 91}, - [4625] = {.lex_state = 513, .external_lex_state = 91}, - [4626] = {.lex_state = 513, .external_lex_state = 91}, - [4627] = {.lex_state = 513, .external_lex_state = 91}, - [4628] = {.lex_state = 95, .external_lex_state = 86}, - [4629] = {.lex_state = 513, .external_lex_state = 91}, - [4630] = {.lex_state = 513, .external_lex_state = 91}, - [4631] = {.lex_state = 513, .external_lex_state = 91}, - [4632] = {.lex_state = 513, .external_lex_state = 91}, - [4633] = {.lex_state = 515, .external_lex_state = 91}, - [4634] = {.lex_state = 95, .external_lex_state = 86}, - [4635] = {.lex_state = 515, .external_lex_state = 91}, - [4636] = {.lex_state = 515, .external_lex_state = 91}, - [4637] = {.lex_state = 515, .external_lex_state = 91}, - [4638] = {.lex_state = 514, .external_lex_state = 92}, - [4639] = {.lex_state = 95, .external_lex_state = 86}, - [4640] = {.lex_state = 96, .external_lex_state = 92}, - [4641] = {.lex_state = 515, .external_lex_state = 91}, - [4642] = {.lex_state = 96, .external_lex_state = 91}, - [4643] = {.lex_state = 95, .external_lex_state = 86}, - [4644] = {.lex_state = 468, .external_lex_state = 96}, - [4645] = {.lex_state = 515, .external_lex_state = 92}, - [4646] = {.lex_state = 515, .external_lex_state = 91}, - [4647] = {.lex_state = 96, .external_lex_state = 91}, - [4648] = {.lex_state = 514, .external_lex_state = 92}, - [4649] = {.lex_state = 515, .external_lex_state = 91}, - [4650] = {.lex_state = 515, .external_lex_state = 91}, - [4651] = {.lex_state = 515, .external_lex_state = 91}, - [4652] = {.lex_state = 515, .external_lex_state = 91}, - [4653] = {.lex_state = 515, .external_lex_state = 91}, - [4654] = {.lex_state = 515, .external_lex_state = 91}, - [4655] = {.lex_state = 515, .external_lex_state = 91}, - [4656] = {.lex_state = 515, .external_lex_state = 91}, - [4657] = {.lex_state = 95, .external_lex_state = 86}, - [4658] = {.lex_state = 95, .external_lex_state = 86}, - [4659] = {.lex_state = 96, .external_lex_state = 91}, - [4660] = {.lex_state = 468, .external_lex_state = 96}, - [4661] = {.lex_state = 297, .external_lex_state = 97}, - [4662] = {.lex_state = 96, .external_lex_state = 92}, - [4663] = {.lex_state = 95, .external_lex_state = 86}, - [4664] = {.lex_state = 95, .external_lex_state = 92}, - [4665] = {.lex_state = 514, .external_lex_state = 92}, - [4666] = {.lex_state = 515, .external_lex_state = 92}, - [4667] = {.lex_state = 515, .external_lex_state = 91}, - [4668] = {.lex_state = 516, .external_lex_state = 67}, - [4669] = {.lex_state = 515, .external_lex_state = 92}, - [4670] = {.lex_state = 515, .external_lex_state = 93}, - [4671] = {.lex_state = 468, .external_lex_state = 96}, - [4672] = {.lex_state = 515, .external_lex_state = 91}, - [4673] = {.lex_state = 468, .external_lex_state = 96}, - [4674] = {.lex_state = 96, .external_lex_state = 86}, - [4675] = {.lex_state = 468, .external_lex_state = 96}, - [4676] = {.lex_state = 450, .external_lex_state = 98}, - [4677] = {.lex_state = 297, .external_lex_state = 97}, - [4678] = {.lex_state = 516, .external_lex_state = 92}, - [4679] = {.lex_state = 450, .external_lex_state = 98}, - [4680] = {.lex_state = 516, .external_lex_state = 92}, - [4681] = {.lex_state = 516, .external_lex_state = 92}, - [4682] = {.lex_state = 96, .external_lex_state = 86}, - [4683] = {.lex_state = 96, .external_lex_state = 86}, - [4684] = {.lex_state = 450, .external_lex_state = 98}, - [4685] = {.lex_state = 516, .external_lex_state = 92}, - [4686] = {.lex_state = 450, .external_lex_state = 98}, - [4687] = {.lex_state = 516, .external_lex_state = 92}, - [4688] = {.lex_state = 297, .external_lex_state = 97}, - [4689] = {.lex_state = 450, .external_lex_state = 98}, - [4690] = {.lex_state = 516, .external_lex_state = 92}, + [4618] = {.lex_state = 98, .external_lex_state = 87}, + [4619] = {.lex_state = 515, .external_lex_state = 92}, + [4620] = {.lex_state = 98, .external_lex_state = 84}, + [4621] = {.lex_state = 98, .external_lex_state = 87}, + [4622] = {.lex_state = 98, .external_lex_state = 93}, + [4623] = {.lex_state = 98, .external_lex_state = 84}, + [4624] = {.lex_state = 98, .external_lex_state = 93}, + [4625] = {.lex_state = 98, .external_lex_state = 93}, + [4626] = {.lex_state = 98, .external_lex_state = 93}, + [4627] = {.lex_state = 97, .external_lex_state = 84}, + [4628] = {.lex_state = 297, .external_lex_state = 96}, + [4629] = {.lex_state = 97, .external_lex_state = 84}, + [4630] = {.lex_state = 514, .external_lex_state = 87}, + [4631] = {.lex_state = 97, .external_lex_state = 84}, + [4632] = {.lex_state = 98, .external_lex_state = 93}, + [4633] = {.lex_state = 514, .external_lex_state = 87}, + [4634] = {.lex_state = 98, .external_lex_state = 93}, + [4635] = {.lex_state = 97, .external_lex_state = 84}, + [4636] = {.lex_state = 515, .external_lex_state = 93}, + [4637] = {.lex_state = 515, .external_lex_state = 93}, + [4638] = {.lex_state = 515, .external_lex_state = 93}, + [4639] = {.lex_state = 515, .external_lex_state = 93}, + [4640] = {.lex_state = 515, .external_lex_state = 93}, + [4641] = {.lex_state = 515, .external_lex_state = 93}, + [4642] = {.lex_state = 515, .external_lex_state = 93}, + [4643] = {.lex_state = 515, .external_lex_state = 93}, + [4644] = {.lex_state = 515, .external_lex_state = 93}, + [4645] = {.lex_state = 513, .external_lex_state = 93}, + [4646] = {.lex_state = 513, .external_lex_state = 93}, + [4647] = {.lex_state = 98, .external_lex_state = 87}, + [4648] = {.lex_state = 468, .external_lex_state = 97}, + [4649] = {.lex_state = 514, .external_lex_state = 87}, + [4650] = {.lex_state = 516, .external_lex_state = 87}, + [4651] = {.lex_state = 515, .external_lex_state = 67}, + [4652] = {.lex_state = 515, .external_lex_state = 67}, + [4653] = {.lex_state = 98, .external_lex_state = 84}, + [4654] = {.lex_state = 468, .external_lex_state = 97}, + [4655] = {.lex_state = 468, .external_lex_state = 97}, + [4656] = {.lex_state = 468, .external_lex_state = 97}, + [4657] = {.lex_state = 468, .external_lex_state = 97}, + [4658] = {.lex_state = 468, .external_lex_state = 97}, + [4659] = {.lex_state = 98, .external_lex_state = 87}, + [4660] = {.lex_state = 515, .external_lex_state = 93}, + [4661] = {.lex_state = 514, .external_lex_state = 87}, + [4662] = {.lex_state = 98, .external_lex_state = 93}, + [4663] = {.lex_state = 513, .external_lex_state = 93}, + [4664] = {.lex_state = 513, .external_lex_state = 93}, + [4665] = {.lex_state = 513, .external_lex_state = 93}, + [4666] = {.lex_state = 513, .external_lex_state = 93}, + [4667] = {.lex_state = 513, .external_lex_state = 93}, + [4668] = {.lex_state = 513, .external_lex_state = 93}, + [4669] = {.lex_state = 513, .external_lex_state = 93}, + [4670] = {.lex_state = 513, .external_lex_state = 93}, + [4671] = {.lex_state = 515, .external_lex_state = 93}, + [4672] = {.lex_state = 98, .external_lex_state = 93}, + [4673] = {.lex_state = 515, .external_lex_state = 93}, + [4674] = {.lex_state = 516, .external_lex_state = 87}, + [4675] = {.lex_state = 515, .external_lex_state = 93}, + [4676] = {.lex_state = 515, .external_lex_state = 93}, + [4677] = {.lex_state = 515, .external_lex_state = 93}, + [4678] = {.lex_state = 515, .external_lex_state = 93}, + [4679] = {.lex_state = 515, .external_lex_state = 93}, + [4680] = {.lex_state = 515, .external_lex_state = 93}, + [4681] = {.lex_state = 515, .external_lex_state = 93}, + [4682] = {.lex_state = 515, .external_lex_state = 93}, + [4683] = {.lex_state = 515, .external_lex_state = 87}, + [4684] = {.lex_state = 514, .external_lex_state = 87}, + [4685] = {.lex_state = 97, .external_lex_state = 84}, + [4686] = {.lex_state = 97, .external_lex_state = 84}, + [4687] = {.lex_state = 450, .external_lex_state = 98}, + [4688] = {.lex_state = 98, .external_lex_state = 84}, + [4689] = {.lex_state = 97, .external_lex_state = 87}, + [4690] = {.lex_state = 450, .external_lex_state = 98}, [4691] = {.lex_state = 450, .external_lex_state = 98}, - [4692] = {.lex_state = 450, .external_lex_state = 98}, - [4693] = {.lex_state = 516, .external_lex_state = 92}, - [4694] = {.lex_state = 96, .external_lex_state = 92}, - [4695] = {.lex_state = 450, .external_lex_state = 98}, - [4696] = {.lex_state = 96, .external_lex_state = 86}, + [4692] = {.lex_state = 97, .external_lex_state = 87}, + [4693] = {.lex_state = 516, .external_lex_state = 87}, + [4694] = {.lex_state = 450, .external_lex_state = 98}, + [4695] = {.lex_state = 297, .external_lex_state = 96}, + [4696] = {.lex_state = 516, .external_lex_state = 87}, [4697] = {.lex_state = 450, .external_lex_state = 98}, - [4698] = {.lex_state = 468, .external_lex_state = 96}, + [4698] = {.lex_state = 98, .external_lex_state = 84}, [4699] = {.lex_state = 450, .external_lex_state = 98}, - [4700] = {.lex_state = 96, .external_lex_state = 67}, - [4701] = {.lex_state = 450, .external_lex_state = 98}, - [4702] = {.lex_state = 516, .external_lex_state = 92}, - [4703] = {.lex_state = 450, .external_lex_state = 98}, - [4704] = {.lex_state = 96, .external_lex_state = 86}, - [4705] = {.lex_state = 96, .external_lex_state = 86}, - [4706] = {.lex_state = 450, .external_lex_state = 98}, - [4707] = {.lex_state = 95, .external_lex_state = 92}, - [4708] = {.lex_state = 96, .external_lex_state = 86}, - [4709] = {.lex_state = 516, .external_lex_state = 92}, - [4710] = {.lex_state = 96, .external_lex_state = 92}, + [4700] = {.lex_state = 297, .external_lex_state = 96}, + [4701] = {.lex_state = 516, .external_lex_state = 87}, + [4702] = {.lex_state = 297, .external_lex_state = 96}, + [4703] = {.lex_state = 297, .external_lex_state = 96}, + [4704] = {.lex_state = 450, .external_lex_state = 98}, + [4705] = {.lex_state = 98, .external_lex_state = 84}, + [4706] = {.lex_state = 97, .external_lex_state = 87}, + [4707] = {.lex_state = 297, .external_lex_state = 96}, + [4708] = {.lex_state = 97, .external_lex_state = 87}, + [4709] = {.lex_state = 450, .external_lex_state = 98}, + [4710] = {.lex_state = 98, .external_lex_state = 84}, [4711] = {.lex_state = 450, .external_lex_state = 98}, - [4712] = {.lex_state = 450, .external_lex_state = 98}, - [4713] = {.lex_state = 516, .external_lex_state = 92}, - [4714] = {.lex_state = 96, .external_lex_state = 86}, - [4715] = {.lex_state = 516, .external_lex_state = 92}, - [4716] = {.lex_state = 96, .external_lex_state = 92}, - [4717] = {.lex_state = 516, .external_lex_state = 92}, - [4718] = {.lex_state = 96, .external_lex_state = 67}, - [4719] = {.lex_state = 95, .external_lex_state = 92}, - [4720] = {.lex_state = 96, .external_lex_state = 86}, + [4712] = {.lex_state = 516, .external_lex_state = 87}, + [4713] = {.lex_state = 516, .external_lex_state = 87}, + [4714] = {.lex_state = 98, .external_lex_state = 84}, + [4715] = {.lex_state = 516, .external_lex_state = 87}, + [4716] = {.lex_state = 450, .external_lex_state = 98}, + [4717] = {.lex_state = 516, .external_lex_state = 87}, + [4718] = {.lex_state = 450, .external_lex_state = 98}, + [4719] = {.lex_state = 450, .external_lex_state = 98}, + [4720] = {.lex_state = 97, .external_lex_state = 87}, [4721] = {.lex_state = 450, .external_lex_state = 98}, - [4722] = {.lex_state = 450, .external_lex_state = 98}, - [4723] = {.lex_state = 96, .external_lex_state = 86}, - [4724] = {.lex_state = 516, .external_lex_state = 92}, - [4725] = {.lex_state = 516, .external_lex_state = 92}, - [4726] = {.lex_state = 516, .external_lex_state = 92}, + [4722] = {.lex_state = 468, .external_lex_state = 97}, + [4723] = {.lex_state = 297, .external_lex_state = 96}, + [4724] = {.lex_state = 98, .external_lex_state = 84}, + [4725] = {.lex_state = 450, .external_lex_state = 98}, + [4726] = {.lex_state = 97, .external_lex_state = 87}, [4727] = {.lex_state = 450, .external_lex_state = 98}, - [4728] = {.lex_state = 516, .external_lex_state = 92}, - [4729] = {.lex_state = 450, .external_lex_state = 98}, - [4730] = {.lex_state = 516, .external_lex_state = 92}, - [4731] = {.lex_state = 515, .external_lex_state = 92}, - [4732] = {.lex_state = 96, .external_lex_state = 86}, - [4733] = {.lex_state = 513, .external_lex_state = 92}, - [4734] = {.lex_state = 516, .external_lex_state = 92}, - [4735] = {.lex_state = 516, .external_lex_state = 92}, - [4736] = {.lex_state = 515, .external_lex_state = 92}, - [4737] = {.lex_state = 96, .external_lex_state = 86}, - [4738] = {.lex_state = 450, .external_lex_state = 98}, - [4739] = {.lex_state = 515, .external_lex_state = 92}, - [4740] = {.lex_state = 297, .external_lex_state = 97}, - [4741] = {.lex_state = 515, .external_lex_state = 92}, - [4742] = {.lex_state = 513, .external_lex_state = 92}, - [4743] = {.lex_state = 95, .external_lex_state = 92}, - [4744] = {.lex_state = 513, .external_lex_state = 92}, - [4745] = {.lex_state = 297, .external_lex_state = 97}, - [4746] = {.lex_state = 516, .external_lex_state = 92}, - [4747] = {.lex_state = 297, .external_lex_state = 97}, - [4748] = {.lex_state = 96, .external_lex_state = 86}, - [4749] = {.lex_state = 516, .external_lex_state = 92}, - [4750] = {.lex_state = 516, .external_lex_state = 92}, - [4751] = {.lex_state = 450, .external_lex_state = 98}, - [4752] = {.lex_state = 96, .external_lex_state = 86}, - [4753] = {.lex_state = 297, .external_lex_state = 97}, - [4754] = {.lex_state = 450, .external_lex_state = 98}, - [4755] = {.lex_state = 450, .external_lex_state = 98}, - [4756] = {.lex_state = 468, .external_lex_state = 96}, - [4757] = {.lex_state = 450, .external_lex_state = 98}, - [4758] = {.lex_state = 468, .external_lex_state = 96}, - [4759] = {.lex_state = 297, .external_lex_state = 97}, + [4728] = {.lex_state = 297, .external_lex_state = 96}, + [4729] = {.lex_state = 468, .external_lex_state = 97}, + [4730] = {.lex_state = 98, .external_lex_state = 84}, + [4731] = {.lex_state = 97, .external_lex_state = 87}, + [4732] = {.lex_state = 450, .external_lex_state = 98}, + [4733] = {.lex_state = 516, .external_lex_state = 87}, + [4734] = {.lex_state = 516, .external_lex_state = 87}, + [4735] = {.lex_state = 516, .external_lex_state = 87}, + [4736] = {.lex_state = 516, .external_lex_state = 87}, + [4737] = {.lex_state = 98, .external_lex_state = 84}, + [4738] = {.lex_state = 98, .external_lex_state = 84}, + [4739] = {.lex_state = 516, .external_lex_state = 87}, + [4740] = {.lex_state = 516, .external_lex_state = 87}, + [4741] = {.lex_state = 450, .external_lex_state = 98}, + [4742] = {.lex_state = 98, .external_lex_state = 84}, + [4743] = {.lex_state = 98, .external_lex_state = 84}, + [4744] = {.lex_state = 450, .external_lex_state = 98}, + [4745] = {.lex_state = 98, .external_lex_state = 84}, + [4746] = {.lex_state = 98, .external_lex_state = 84}, + [4747] = {.lex_state = 516, .external_lex_state = 87}, + [4748] = {.lex_state = 516, .external_lex_state = 87}, + [4749] = {.lex_state = 297, .external_lex_state = 96}, + [4750] = {.lex_state = 97, .external_lex_state = 87}, + [4751] = {.lex_state = 516, .external_lex_state = 87}, + [4752] = {.lex_state = 450, .external_lex_state = 98}, + [4753] = {.lex_state = 97, .external_lex_state = 87}, + [4754] = {.lex_state = 297, .external_lex_state = 96}, + [4755] = {.lex_state = 98, .external_lex_state = 87}, + [4756] = {.lex_state = 516, .external_lex_state = 87}, + [4757] = {.lex_state = 516, .external_lex_state = 87}, + [4758] = {.lex_state = 297, .external_lex_state = 96}, + [4759] = {.lex_state = 98, .external_lex_state = 84}, [4760] = {.lex_state = 450, .external_lex_state = 98}, - [4761] = {.lex_state = 516, .external_lex_state = 92}, - [4762] = {.lex_state = 516, .external_lex_state = 92}, - [4763] = {.lex_state = 516, .external_lex_state = 92}, - [4764] = {.lex_state = 297, .external_lex_state = 97}, - [4765] = {.lex_state = 297, .external_lex_state = 97}, - [4766] = {.lex_state = 96, .external_lex_state = 86}, - [4767] = {.lex_state = 96, .external_lex_state = 86}, - [4768] = {.lex_state = 297, .external_lex_state = 97}, - [4769] = {.lex_state = 516, .external_lex_state = 92}, - [4770] = {.lex_state = 95, .external_lex_state = 92}, - [4771] = {.lex_state = 96, .external_lex_state = 86}, - [4772] = {.lex_state = 516, .external_lex_state = 92}, - [4773] = {.lex_state = 96, .external_lex_state = 86}, - [4774] = {.lex_state = 96, .external_lex_state = 86}, - [4775] = {.lex_state = 297, .external_lex_state = 97}, - [4776] = {.lex_state = 516, .external_lex_state = 92}, - [4777] = {.lex_state = 96, .external_lex_state = 86}, - [4778] = {.lex_state = 96, .external_lex_state = 86}, + [4761] = {.lex_state = 450, .external_lex_state = 98}, + [4762] = {.lex_state = 516, .external_lex_state = 87}, + [4763] = {.lex_state = 516, .external_lex_state = 87}, + [4764] = {.lex_state = 516, .external_lex_state = 87}, + [4765] = {.lex_state = 516, .external_lex_state = 87}, + [4766] = {.lex_state = 297, .external_lex_state = 96}, + [4767] = {.lex_state = 98, .external_lex_state = 84}, + [4768] = {.lex_state = 98, .external_lex_state = 84}, + [4769] = {.lex_state = 450, .external_lex_state = 98}, + [4770] = {.lex_state = 297, .external_lex_state = 96}, + [4771] = {.lex_state = 98, .external_lex_state = 67}, + [4772] = {.lex_state = 450, .external_lex_state = 98}, + [4773] = {.lex_state = 97, .external_lex_state = 87}, + [4774] = {.lex_state = 98, .external_lex_state = 84}, + [4775] = {.lex_state = 516, .external_lex_state = 87}, + [4776] = {.lex_state = 98, .external_lex_state = 84}, + [4777] = {.lex_state = 98, .external_lex_state = 84}, + [4778] = {.lex_state = 97, .external_lex_state = 87}, [4779] = {.lex_state = 450, .external_lex_state = 98}, - [4780] = {.lex_state = 96, .external_lex_state = 86}, - [4781] = {.lex_state = 450, .external_lex_state = 98}, - [4782] = {.lex_state = 516, .external_lex_state = 92}, - [4783] = {.lex_state = 516, .external_lex_state = 92}, - [4784] = {.lex_state = 516, .external_lex_state = 92}, - [4785] = {.lex_state = 96, .external_lex_state = 86}, - [4786] = {.lex_state = 516, .external_lex_state = 92}, - [4787] = {.lex_state = 450, .external_lex_state = 98}, - [4788] = {.lex_state = 96, .external_lex_state = 86}, - [4789] = {.lex_state = 96, .external_lex_state = 86}, + [4780] = {.lex_state = 97, .external_lex_state = 87}, + [4781] = {.lex_state = 516, .external_lex_state = 87}, + [4782] = {.lex_state = 98, .external_lex_state = 84}, + [4783] = {.lex_state = 450, .external_lex_state = 98}, + [4784] = {.lex_state = 97, .external_lex_state = 87}, + [4785] = {.lex_state = 450, .external_lex_state = 98}, + [4786] = {.lex_state = 450, .external_lex_state = 98}, + [4787] = {.lex_state = 98, .external_lex_state = 84}, + [4788] = {.lex_state = 98, .external_lex_state = 84}, + [4789] = {.lex_state = 98, .external_lex_state = 84}, [4790] = {.lex_state = 450, .external_lex_state = 98}, - [4791] = {.lex_state = 468, .external_lex_state = 96}, - [4792] = {.lex_state = 516, .external_lex_state = 92}, - [4793] = {.lex_state = 450, .external_lex_state = 98}, - [4794] = {.lex_state = 468, .external_lex_state = 96}, - [4795] = {.lex_state = 96, .external_lex_state = 86}, - [4796] = {.lex_state = 450, .external_lex_state = 98}, - [4797] = {.lex_state = 96, .external_lex_state = 86}, - [4798] = {.lex_state = 515, .external_lex_state = 92}, - [4799] = {.lex_state = 450, .external_lex_state = 98}, - [4800] = {.lex_state = 96, .external_lex_state = 86}, - [4801] = {.lex_state = 96, .external_lex_state = 86}, - [4802] = {.lex_state = 95, .external_lex_state = 92}, - [4803] = {.lex_state = 450, .external_lex_state = 98}, - [4804] = {.lex_state = 450, .external_lex_state = 98}, - [4805] = {.lex_state = 96, .external_lex_state = 86}, - [4806] = {.lex_state = 468, .external_lex_state = 96}, - [4807] = {.lex_state = 450, .external_lex_state = 98}, - [4808] = {.lex_state = 96, .external_lex_state = 92}, - [4809] = {.lex_state = 450, .external_lex_state = 98}, - [4810] = {.lex_state = 450, .external_lex_state = 98}, - [4811] = {.lex_state = 96, .external_lex_state = 92}, - [4812] = {.lex_state = 96, .external_lex_state = 86}, - [4813] = {.lex_state = 96, .external_lex_state = 86}, + [4791] = {.lex_state = 450, .external_lex_state = 98}, + [4792] = {.lex_state = 98, .external_lex_state = 84}, + [4793] = {.lex_state = 98, .external_lex_state = 84}, + [4794] = {.lex_state = 450, .external_lex_state = 98}, + [4795] = {.lex_state = 98, .external_lex_state = 84}, + [4796] = {.lex_state = 98, .external_lex_state = 84}, + [4797] = {.lex_state = 516, .external_lex_state = 87}, + [4798] = {.lex_state = 98, .external_lex_state = 84}, + [4799] = {.lex_state = 98, .external_lex_state = 84}, + [4800] = {.lex_state = 98, .external_lex_state = 84}, + [4801] = {.lex_state = 97, .external_lex_state = 87}, + [4802] = {.lex_state = 98, .external_lex_state = 84}, + [4803] = {.lex_state = 516, .external_lex_state = 87}, + [4804] = {.lex_state = 98, .external_lex_state = 87}, + [4805] = {.lex_state = 450, .external_lex_state = 98}, + [4806] = {.lex_state = 450, .external_lex_state = 98}, + [4807] = {.lex_state = 515, .external_lex_state = 93}, + [4808] = {.lex_state = 97, .external_lex_state = 87}, + [4809] = {.lex_state = 515, .external_lex_state = 93}, + [4810] = {.lex_state = 98, .external_lex_state = 84}, + [4811] = {.lex_state = 515, .external_lex_state = 87}, + [4812] = {.lex_state = 450, .external_lex_state = 98}, + [4813] = {.lex_state = 97, .external_lex_state = 87}, [4814] = {.lex_state = 450, .external_lex_state = 98}, - [4815] = {.lex_state = 96, .external_lex_state = 86}, - [4816] = {.lex_state = 450, .external_lex_state = 98}, - [4817] = {.lex_state = 516, .external_lex_state = 92}, - [4818] = {.lex_state = 516, .external_lex_state = 92}, - [4819] = {.lex_state = 96, .external_lex_state = 86}, - [4820] = {.lex_state = 96, .external_lex_state = 86}, - [4821] = {.lex_state = 96, .external_lex_state = 92}, - [4822] = {.lex_state = 450, .external_lex_state = 98}, - [4823] = {.lex_state = 297, .external_lex_state = 97}, - [4824] = {.lex_state = 297, .external_lex_state = 97}, - [4825] = {.lex_state = 297, .external_lex_state = 97}, - [4826] = {.lex_state = 450, .external_lex_state = 98}, - [4827] = {.lex_state = 96, .external_lex_state = 86}, - [4828] = {.lex_state = 96, .external_lex_state = 86}, - [4829] = {.lex_state = 516, .external_lex_state = 92}, - [4830] = {.lex_state = 450, .external_lex_state = 98}, - [4831] = {.lex_state = 96, .external_lex_state = 86}, - [4832] = {.lex_state = 450, .external_lex_state = 98}, - [4833] = {.lex_state = 95, .external_lex_state = 92}, - [4834] = {.lex_state = 450, .external_lex_state = 98}, - [4835] = {.lex_state = 95, .external_lex_state = 92}, - [4836] = {.lex_state = 450, .external_lex_state = 98}, - [4837] = {.lex_state = 96, .external_lex_state = 86}, - [4838] = {.lex_state = 95, .external_lex_state = 92}, - [4839] = {.lex_state = 516, .external_lex_state = 92}, - [4840] = {.lex_state = 516, .external_lex_state = 92}, - [4841] = {.lex_state = 95, .external_lex_state = 92}, - [4842] = {.lex_state = 516, .external_lex_state = 92}, - [4843] = {.lex_state = 516, .external_lex_state = 92}, - [4844] = {.lex_state = 468, .external_lex_state = 96}, - [4845] = {.lex_state = 450, .external_lex_state = 98}, - [4846] = {.lex_state = 95, .external_lex_state = 92}, + [4815] = {.lex_state = 450, .external_lex_state = 98}, + [4816] = {.lex_state = 516, .external_lex_state = 87}, + [4817] = {.lex_state = 450, .external_lex_state = 98}, + [4818] = {.lex_state = 515, .external_lex_state = 87}, + [4819] = {.lex_state = 450, .external_lex_state = 98}, + [4820] = {.lex_state = 98, .external_lex_state = 84}, + [4821] = {.lex_state = 98, .external_lex_state = 84}, + [4822] = {.lex_state = 516, .external_lex_state = 87}, + [4823] = {.lex_state = 450, .external_lex_state = 98}, + [4824] = {.lex_state = 468, .external_lex_state = 97}, + [4825] = {.lex_state = 450, .external_lex_state = 98}, + [4826] = {.lex_state = 516, .external_lex_state = 87}, + [4827] = {.lex_state = 98, .external_lex_state = 84}, + [4828] = {.lex_state = 98, .external_lex_state = 84}, + [4829] = {.lex_state = 98, .external_lex_state = 84}, + [4830] = {.lex_state = 98, .external_lex_state = 84}, + [4831] = {.lex_state = 98, .external_lex_state = 84}, + [4832] = {.lex_state = 297, .external_lex_state = 96}, + [4833] = {.lex_state = 516, .external_lex_state = 87}, + [4834] = {.lex_state = 97, .external_lex_state = 87}, + [4835] = {.lex_state = 97, .external_lex_state = 87}, + [4836] = {.lex_state = 516, .external_lex_state = 87}, + [4837] = {.lex_state = 98, .external_lex_state = 84}, + [4838] = {.lex_state = 516, .external_lex_state = 87}, + [4839] = {.lex_state = 98, .external_lex_state = 84}, + [4840] = {.lex_state = 98, .external_lex_state = 84}, + [4841] = {.lex_state = 450, .external_lex_state = 98}, + [4842] = {.lex_state = 450, .external_lex_state = 98}, + [4843] = {.lex_state = 516, .external_lex_state = 87}, + [4844] = {.lex_state = 450, .external_lex_state = 98}, + [4845] = {.lex_state = 98, .external_lex_state = 84}, + [4846] = {.lex_state = 98, .external_lex_state = 84}, [4847] = {.lex_state = 450, .external_lex_state = 98}, - [4848] = {.lex_state = 95, .external_lex_state = 92}, - [4849] = {.lex_state = 516, .external_lex_state = 92}, + [4848] = {.lex_state = 516, .external_lex_state = 87}, + [4849] = {.lex_state = 98, .external_lex_state = 87}, [4850] = {.lex_state = 450, .external_lex_state = 98}, - [4851] = {.lex_state = 468, .external_lex_state = 96}, - [4852] = {.lex_state = 96, .external_lex_state = 86}, - [4853] = {.lex_state = 95, .external_lex_state = 92}, - [4854] = {.lex_state = 450, .external_lex_state = 98}, - [4855] = {.lex_state = 450, .external_lex_state = 98}, - [4856] = {.lex_state = 96, .external_lex_state = 86}, - [4857] = {.lex_state = 450, .external_lex_state = 98}, - [4858] = {.lex_state = 96, .external_lex_state = 86}, - [4859] = {.lex_state = 96, .external_lex_state = 86}, - [4860] = {.lex_state = 516, .external_lex_state = 92}, - [4861] = {.lex_state = 96, .external_lex_state = 86}, - [4862] = {.lex_state = 96, .external_lex_state = 86}, + [4851] = {.lex_state = 98, .external_lex_state = 84}, + [4852] = {.lex_state = 516, .external_lex_state = 87}, + [4853] = {.lex_state = 297, .external_lex_state = 96}, + [4854] = {.lex_state = 98, .external_lex_state = 84}, + [4855] = {.lex_state = 98, .external_lex_state = 84}, + [4856] = {.lex_state = 516, .external_lex_state = 87}, + [4857] = {.lex_state = 516, .external_lex_state = 87}, + [4858] = {.lex_state = 516, .external_lex_state = 87}, + [4859] = {.lex_state = 468, .external_lex_state = 97}, + [4860] = {.lex_state = 516, .external_lex_state = 87}, + [4861] = {.lex_state = 516, .external_lex_state = 87}, + [4862] = {.lex_state = 468, .external_lex_state = 97}, [4863] = {.lex_state = 450, .external_lex_state = 98}, - [4864] = {.lex_state = 450, .external_lex_state = 98}, + [4864] = {.lex_state = 516, .external_lex_state = 87}, [4865] = {.lex_state = 450, .external_lex_state = 98}, - [4866] = {.lex_state = 515, .external_lex_state = 91}, - [4867] = {.lex_state = 515, .external_lex_state = 91}, - [4868] = {.lex_state = 450, .external_lex_state = 98}, - [4869] = {.lex_state = 96, .external_lex_state = 86}, - [4870] = {.lex_state = 450, .external_lex_state = 98}, - [4871] = {.lex_state = 96, .external_lex_state = 86}, - [4872] = {.lex_state = 450, .external_lex_state = 98}, - [4873] = {.lex_state = 96, .external_lex_state = 86}, - [4874] = {.lex_state = 297, .external_lex_state = 97}, - [4875] = {.lex_state = 515, .external_lex_state = 91}, - [4876] = {.lex_state = 515, .external_lex_state = 91}, - [4877] = {.lex_state = 515, .external_lex_state = 91}, - [4878] = {.lex_state = 515, .external_lex_state = 91}, - [4879] = {.lex_state = 515, .external_lex_state = 91}, - [4880] = {.lex_state = 515, .external_lex_state = 91}, - [4881] = {.lex_state = 515, .external_lex_state = 91}, - [4882] = {.lex_state = 515, .external_lex_state = 91}, - [4883] = {.lex_state = 450, .external_lex_state = 98}, + [4866] = {.lex_state = 97, .external_lex_state = 87}, + [4867] = {.lex_state = 450, .external_lex_state = 98}, + [4868] = {.lex_state = 516, .external_lex_state = 87}, + [4869] = {.lex_state = 450, .external_lex_state = 98}, + [4870] = {.lex_state = 297, .external_lex_state = 96}, + [4871] = {.lex_state = 515, .external_lex_state = 87}, + [4872] = {.lex_state = 516, .external_lex_state = 87}, + [4873] = {.lex_state = 98, .external_lex_state = 84}, + [4874] = {.lex_state = 516, .external_lex_state = 87}, + [4875] = {.lex_state = 450, .external_lex_state = 98}, + [4876] = {.lex_state = 97, .external_lex_state = 87}, + [4877] = {.lex_state = 516, .external_lex_state = 87}, + [4878] = {.lex_state = 468, .external_lex_state = 97}, + [4879] = {.lex_state = 516, .external_lex_state = 87}, + [4880] = {.lex_state = 450, .external_lex_state = 98}, + [4881] = {.lex_state = 516, .external_lex_state = 87}, + [4882] = {.lex_state = 98, .external_lex_state = 84}, + [4883] = {.lex_state = 516, .external_lex_state = 87}, [4884] = {.lex_state = 450, .external_lex_state = 98}, - [4885] = {.lex_state = 516, .external_lex_state = 92}, - [4886] = {.lex_state = 95, .external_lex_state = 92}, - [4887] = {.lex_state = 95, .external_lex_state = 92}, - [4888] = {.lex_state = 516, .external_lex_state = 92}, - [4889] = {.lex_state = 450, .external_lex_state = 98}, - [4890] = {.lex_state = 450, .external_lex_state = 98}, - [4891] = {.lex_state = 95, .external_lex_state = 92}, - [4892] = {.lex_state = 450, .external_lex_state = 98}, - [4893] = {.lex_state = 96, .external_lex_state = 86}, - [4894] = {.lex_state = 515, .external_lex_state = 92}, + [4885] = {.lex_state = 297, .external_lex_state = 96}, + [4886] = {.lex_state = 450, .external_lex_state = 98}, + [4887] = {.lex_state = 515, .external_lex_state = 93}, + [4888] = {.lex_state = 515, .external_lex_state = 93}, + [4889] = {.lex_state = 515, .external_lex_state = 93}, + [4890] = {.lex_state = 515, .external_lex_state = 93}, + [4891] = {.lex_state = 515, .external_lex_state = 93}, + [4892] = {.lex_state = 515, .external_lex_state = 93}, + [4893] = {.lex_state = 515, .external_lex_state = 93}, + [4894] = {.lex_state = 515, .external_lex_state = 93}, [4895] = {.lex_state = 450, .external_lex_state = 98}, - [4896] = {.lex_state = 297, .external_lex_state = 97}, - [4897] = {.lex_state = 95, .external_lex_state = 92}, - [4898] = {.lex_state = 297, .external_lex_state = 97}, - [4899] = {.lex_state = 515, .external_lex_state = 92}, - [4900] = {.lex_state = 450, .external_lex_state = 98}, - [4901] = {.lex_state = 516, .external_lex_state = 92}, - [4902] = {.lex_state = 516, .external_lex_state = 92}, - [4903] = {.lex_state = 450, .external_lex_state = 98}, + [4896] = {.lex_state = 516, .external_lex_state = 87}, + [4897] = {.lex_state = 450, .external_lex_state = 98}, + [4898] = {.lex_state = 98, .external_lex_state = 84}, + [4899] = {.lex_state = 98, .external_lex_state = 67}, + [4900] = {.lex_state = 297, .external_lex_state = 96}, + [4901] = {.lex_state = 97, .external_lex_state = 87}, + [4902] = {.lex_state = 516, .external_lex_state = 87}, + [4903] = {.lex_state = 516, .external_lex_state = 87}, [4904] = {.lex_state = 450, .external_lex_state = 98}, - [4905] = {.lex_state = 450, .external_lex_state = 98}, - [4906] = {.lex_state = 96, .external_lex_state = 86}, - [4907] = {.lex_state = 96, .external_lex_state = 86}, - [4908] = {.lex_state = 96, .external_lex_state = 86}, - [4909] = {.lex_state = 450, .external_lex_state = 98}, - [4910] = {.lex_state = 96, .external_lex_state = 86}, - [4911] = {.lex_state = 450, .external_lex_state = 98}, - [4912] = {.lex_state = 96, .external_lex_state = 86}, - [4913] = {.lex_state = 450, .external_lex_state = 98}, - [4914] = {.lex_state = 95, .external_lex_state = 92}, - [4915] = {.lex_state = 95, .external_lex_state = 92}, - [4916] = {.lex_state = 515, .external_lex_state = 92}, - [4917] = {.lex_state = 297, .external_lex_state = 97}, - [4918] = {.lex_state = 516, .external_lex_state = 92}, - [4919] = {.lex_state = 516, .external_lex_state = 92}, - [4920] = {.lex_state = 516, .external_lex_state = 92}, - [4921] = {.lex_state = 96, .external_lex_state = 67}, - [4922] = {.lex_state = 516, .external_lex_state = 92}, - [4923] = {.lex_state = 297, .external_lex_state = 97}, - [4924] = {.lex_state = 450, .external_lex_state = 98}, - [4925] = {.lex_state = 450, .external_lex_state = 98}, + [4905] = {.lex_state = 297, .external_lex_state = 96}, + [4906] = {.lex_state = 515, .external_lex_state = 87}, + [4907] = {.lex_state = 98, .external_lex_state = 84}, + [4908] = {.lex_state = 98, .external_lex_state = 67}, + [4909] = {.lex_state = 98, .external_lex_state = 84}, + [4910] = {.lex_state = 450, .external_lex_state = 98}, + [4911] = {.lex_state = 98, .external_lex_state = 84}, + [4912] = {.lex_state = 450, .external_lex_state = 98}, + [4913] = {.lex_state = 516, .external_lex_state = 87}, + [4914] = {.lex_state = 450, .external_lex_state = 98}, + [4915] = {.lex_state = 468, .external_lex_state = 97}, + [4916] = {.lex_state = 450, .external_lex_state = 98}, + [4917] = {.lex_state = 98, .external_lex_state = 87}, + [4918] = {.lex_state = 450, .external_lex_state = 98}, + [4919] = {.lex_state = 450, .external_lex_state = 98}, + [4920] = {.lex_state = 450, .external_lex_state = 98}, + [4921] = {.lex_state = 450, .external_lex_state = 98}, + [4922] = {.lex_state = 97, .external_lex_state = 87}, + [4923] = {.lex_state = 98, .external_lex_state = 84}, + [4924] = {.lex_state = 98, .external_lex_state = 84}, + [4925] = {.lex_state = 516, .external_lex_state = 87}, [4926] = {.lex_state = 450, .external_lex_state = 98}, - [4927] = {.lex_state = 516, .external_lex_state = 92}, - [4928] = {.lex_state = 516, .external_lex_state = 92}, - [4929] = {.lex_state = 450, .external_lex_state = 98}, - [4930] = {.lex_state = 516, .external_lex_state = 92}, - [4931] = {.lex_state = 450, .external_lex_state = 98}, - [4932] = {.lex_state = 516, .external_lex_state = 92}, - [4933] = {.lex_state = 516, .external_lex_state = 92}, - [4934] = {.lex_state = 516, .external_lex_state = 92}, - [4935] = {.lex_state = 96, .external_lex_state = 86}, - [4936] = {.lex_state = 96, .external_lex_state = 86}, - [4937] = {.lex_state = 516, .external_lex_state = 92}, - [4938] = {.lex_state = 96, .external_lex_state = 86}, - [4939] = {.lex_state = 450, .external_lex_state = 98}, - [4940] = {.lex_state = 450, .external_lex_state = 98}, - [4941] = {.lex_state = 96, .external_lex_state = 92}, - [4942] = {.lex_state = 96, .external_lex_state = 92}, - [4943] = {.lex_state = 296, .external_lex_state = 71}, - [4944] = {.lex_state = 96, .external_lex_state = 92}, - [4945] = {.lex_state = 515, .external_lex_state = 92}, - [4946] = {.lex_state = 96, .external_lex_state = 92}, - [4947] = {.lex_state = 95, .external_lex_state = 92}, - [4948] = {.lex_state = 96, .external_lex_state = 92}, - [4949] = {.lex_state = 96, .external_lex_state = 92}, - [4950] = {.lex_state = 96, .external_lex_state = 92}, - [4951] = {.lex_state = 96, .external_lex_state = 92}, - [4952] = {.lex_state = 515, .external_lex_state = 92}, - [4953] = {.lex_state = 96, .external_lex_state = 92}, - [4954] = {.lex_state = 96, .external_lex_state = 92}, - [4955] = {.lex_state = 96, .external_lex_state = 92}, - [4956] = {.lex_state = 96, .external_lex_state = 92}, - [4957] = {.lex_state = 515, .external_lex_state = 92}, - [4958] = {.lex_state = 96, .external_lex_state = 92}, - [4959] = {.lex_state = 96, .external_lex_state = 92}, - [4960] = {.lex_state = 96, .external_lex_state = 92}, - [4961] = {.lex_state = 96, .external_lex_state = 92}, - [4962] = {.lex_state = 96, .external_lex_state = 92}, - [4963] = {.lex_state = 96, .external_lex_state = 92}, - [4964] = {.lex_state = 96, .external_lex_state = 92}, - [4965] = {.lex_state = 515, .external_lex_state = 92}, - [4966] = {.lex_state = 96, .external_lex_state = 92}, - [4967] = {.lex_state = 96, .external_lex_state = 92}, - [4968] = {.lex_state = 96, .external_lex_state = 92}, - [4969] = {.lex_state = 96, .external_lex_state = 92}, - [4970] = {.lex_state = 96, .external_lex_state = 92}, - [4971] = {.lex_state = 516, .external_lex_state = 92}, - [4972] = {.lex_state = 96, .external_lex_state = 92}, - [4973] = {.lex_state = 96, .external_lex_state = 92}, - [4974] = {.lex_state = 516, .external_lex_state = 92}, - [4975] = {.lex_state = 96, .external_lex_state = 92}, - [4976] = {.lex_state = 96, .external_lex_state = 92}, - [4977] = {.lex_state = 96, .external_lex_state = 92}, - [4978] = {.lex_state = 96, .external_lex_state = 92}, - [4979] = {.lex_state = 96, .external_lex_state = 92}, - [4980] = {.lex_state = 515, .external_lex_state = 92}, - [4981] = {.lex_state = 96, .external_lex_state = 92}, - [4982] = {.lex_state = 296, .external_lex_state = 71}, - [4983] = {.lex_state = 96, .external_lex_state = 92}, - [4984] = {.lex_state = 96, .external_lex_state = 92}, - [4985] = {.lex_state = 96, .external_lex_state = 92}, - [4986] = {.lex_state = 96, .external_lex_state = 92}, - [4987] = {.lex_state = 96, .external_lex_state = 92}, - [4988] = {.lex_state = 95, .external_lex_state = 91}, - [4989] = {.lex_state = 96, .external_lex_state = 92}, - [4990] = {.lex_state = 96, .external_lex_state = 92}, - [4991] = {.lex_state = 96, .external_lex_state = 92}, - [4992] = {.lex_state = 516, .external_lex_state = 92}, - [4993] = {.lex_state = 96, .external_lex_state = 92}, - [4994] = {.lex_state = 96, .external_lex_state = 92}, - [4995] = {.lex_state = 96, .external_lex_state = 92}, - [4996] = {.lex_state = 96, .external_lex_state = 92}, - [4997] = {.lex_state = 96, .external_lex_state = 92}, - [4998] = {.lex_state = 96, .external_lex_state = 92}, - [4999] = {.lex_state = 95, .external_lex_state = 92}, - [5000] = {.lex_state = 96, .external_lex_state = 93}, - [5001] = {.lex_state = 96, .external_lex_state = 92}, - [5002] = {.lex_state = 96, .external_lex_state = 92}, - [5003] = {.lex_state = 96, .external_lex_state = 92}, - [5004] = {.lex_state = 96, .external_lex_state = 92}, - [5005] = {.lex_state = 96, .external_lex_state = 92}, - [5006] = {.lex_state = 516, .external_lex_state = 92}, - [5007] = {.lex_state = 480, .external_lex_state = 99}, - [5008] = {.lex_state = 515, .external_lex_state = 92}, - [5009] = {.lex_state = 515, .external_lex_state = 92}, - [5010] = {.lex_state = 96, .external_lex_state = 92}, - [5011] = {.lex_state = 96, .external_lex_state = 92}, - [5012] = {.lex_state = 515, .external_lex_state = 92}, - [5013] = {.lex_state = 96, .external_lex_state = 92}, - [5014] = {.lex_state = 95, .external_lex_state = 92}, - [5015] = {.lex_state = 96, .external_lex_state = 92}, - [5016] = {.lex_state = 96, .external_lex_state = 92}, - [5017] = {.lex_state = 95, .external_lex_state = 92}, - [5018] = {.lex_state = 96, .external_lex_state = 92}, - [5019] = {.lex_state = 96, .external_lex_state = 91}, - [5020] = {.lex_state = 457, .external_lex_state = 100}, - [5021] = {.lex_state = 457, .external_lex_state = 100}, - [5022] = {.lex_state = 468, .external_lex_state = 96}, - [5023] = {.lex_state = 468, .external_lex_state = 96}, - [5024] = {.lex_state = 468, .external_lex_state = 96}, - [5025] = {.lex_state = 468, .external_lex_state = 96}, - [5026] = {.lex_state = 468, .external_lex_state = 96}, - [5027] = {.lex_state = 468, .external_lex_state = 96}, - [5028] = {.lex_state = 468, .external_lex_state = 96}, - [5029] = {.lex_state = 468, .external_lex_state = 96}, - [5030] = {.lex_state = 468, .external_lex_state = 96}, - [5031] = {.lex_state = 468, .external_lex_state = 96}, - [5032] = {.lex_state = 468, .external_lex_state = 96}, - [5033] = {.lex_state = 468, .external_lex_state = 96}, - [5034] = {.lex_state = 480, .external_lex_state = 99}, - [5035] = {.lex_state = 480, .external_lex_state = 99}, - [5036] = {.lex_state = 480, .external_lex_state = 99}, - [5037] = {.lex_state = 480, .external_lex_state = 99}, - [5038] = {.lex_state = 445, .external_lex_state = 101}, - [5039] = {.lex_state = 457, .external_lex_state = 100}, - [5040] = {.lex_state = 457, .external_lex_state = 100}, - [5041] = {.lex_state = 457, .external_lex_state = 100}, - [5042] = {.lex_state = 284, .external_lex_state = 97}, - [5043] = {.lex_state = 284, .external_lex_state = 97}, - [5044] = {.lex_state = 480, .external_lex_state = 99}, - [5045] = {.lex_state = 480, .external_lex_state = 99}, - [5046] = {.lex_state = 457, .external_lex_state = 100}, - [5047] = {.lex_state = 480, .external_lex_state = 99}, - [5048] = {.lex_state = 480, .external_lex_state = 99}, - [5049] = {.lex_state = 445, .external_lex_state = 101}, - [5050] = {.lex_state = 296, .external_lex_state = 71}, - [5051] = {.lex_state = 515, .external_lex_state = 92}, - [5052] = {.lex_state = 468, .external_lex_state = 96}, - [5053] = {.lex_state = 284, .external_lex_state = 97}, - [5054] = {.lex_state = 284, .external_lex_state = 97}, - [5055] = {.lex_state = 284, .external_lex_state = 97}, - [5056] = {.lex_state = 468, .external_lex_state = 96}, - [5057] = {.lex_state = 95, .external_lex_state = 92}, - [5058] = {.lex_state = 95, .external_lex_state = 92}, - [5059] = {.lex_state = 468, .external_lex_state = 96}, - [5060] = {.lex_state = 468, .external_lex_state = 96}, - [5061] = {.lex_state = 445, .external_lex_state = 102}, - [5062] = {.lex_state = 468, .external_lex_state = 96}, - [5063] = {.lex_state = 468, .external_lex_state = 96}, - [5064] = {.lex_state = 468, .external_lex_state = 96}, - [5065] = {.lex_state = 468, .external_lex_state = 96}, - [5066] = {.lex_state = 468, .external_lex_state = 96}, - [5067] = {.lex_state = 95, .external_lex_state = 91}, - [5068] = {.lex_state = 480, .external_lex_state = 99}, - [5069] = {.lex_state = 480, .external_lex_state = 99}, - [5070] = {.lex_state = 468, .external_lex_state = 96}, - [5071] = {.lex_state = 468, .external_lex_state = 96}, - [5072] = {.lex_state = 480, .external_lex_state = 99}, - [5073] = {.lex_state = 468, .external_lex_state = 96}, - [5074] = {.lex_state = 468, .external_lex_state = 96}, - [5075] = {.lex_state = 468, .external_lex_state = 96}, - [5076] = {.lex_state = 96, .external_lex_state = 93}, - [5077] = {.lex_state = 96, .external_lex_state = 93}, - [5078] = {.lex_state = 95, .external_lex_state = 91}, - [5079] = {.lex_state = 95, .external_lex_state = 91}, - [5080] = {.lex_state = 468, .external_lex_state = 96}, - [5081] = {.lex_state = 468, .external_lex_state = 96}, - [5082] = {.lex_state = 468, .external_lex_state = 96}, - [5083] = {.lex_state = 468, .external_lex_state = 96}, - [5084] = {.lex_state = 468, .external_lex_state = 96}, - [5085] = {.lex_state = 468, .external_lex_state = 96}, - [5086] = {.lex_state = 468, .external_lex_state = 96}, - [5087] = {.lex_state = 468, .external_lex_state = 96}, - [5088] = {.lex_state = 468, .external_lex_state = 96}, - [5089] = {.lex_state = 468, .external_lex_state = 96}, - [5090] = {.lex_state = 468, .external_lex_state = 96}, - [5091] = {.lex_state = 515, .external_lex_state = 92}, - [5092] = {.lex_state = 468, .external_lex_state = 96}, - [5093] = {.lex_state = 477, .external_lex_state = 103}, - [5094] = {.lex_state = 445, .external_lex_state = 102}, - [5095] = {.lex_state = 515, .external_lex_state = 92}, - [5096] = {.lex_state = 515, .external_lex_state = 92}, - [5097] = {.lex_state = 468, .external_lex_state = 96}, - [5098] = {.lex_state = 515, .external_lex_state = 92}, - [5099] = {.lex_state = 515, .external_lex_state = 92}, - [5100] = {.lex_state = 478, .external_lex_state = 104}, - [5101] = {.lex_state = 445, .external_lex_state = 102}, - [5102] = {.lex_state = 469, .external_lex_state = 105}, - [5103] = {.lex_state = 96, .external_lex_state = 93}, - [5104] = {.lex_state = 96, .external_lex_state = 93}, - [5105] = {.lex_state = 96, .external_lex_state = 67}, - [5106] = {.lex_state = 96, .external_lex_state = 67}, - [5107] = {.lex_state = 95, .external_lex_state = 91}, - [5108] = {.lex_state = 95, .external_lex_state = 91}, - [5109] = {.lex_state = 95, .external_lex_state = 91}, - [5110] = {.lex_state = 95, .external_lex_state = 91}, - [5111] = {.lex_state = 95, .external_lex_state = 91}, - [5112] = {.lex_state = 95, .external_lex_state = 91}, - [5113] = {.lex_state = 95, .external_lex_state = 91}, - [5114] = {.lex_state = 481, .external_lex_state = 99}, - [5115] = {.lex_state = 96, .external_lex_state = 92}, - [5116] = {.lex_state = 466, .external_lex_state = 69}, - [5117] = {.lex_state = 481, .external_lex_state = 99}, - [5118] = {.lex_state = 481, .external_lex_state = 99}, - [5119] = {.lex_state = 94, .external_lex_state = 106}, - [5120] = {.lex_state = 466, .external_lex_state = 69}, - [5121] = {.lex_state = 481, .external_lex_state = 99}, - [5122] = {.lex_state = 481, .external_lex_state = 99}, - [5123] = {.lex_state = 477, .external_lex_state = 103}, - [5124] = {.lex_state = 477, .external_lex_state = 103}, - [5125] = {.lex_state = 457, .external_lex_state = 100}, - [5126] = {.lex_state = 457, .external_lex_state = 100}, - [5127] = {.lex_state = 457, .external_lex_state = 100}, - [5128] = {.lex_state = 466, .external_lex_state = 69}, - [5129] = {.lex_state = 457, .external_lex_state = 100}, - [5130] = {.lex_state = 457, .external_lex_state = 100}, - [5131] = {.lex_state = 468, .external_lex_state = 101}, - [5132] = {.lex_state = 457, .external_lex_state = 100}, - [5133] = {.lex_state = 457, .external_lex_state = 100}, - [5134] = {.lex_state = 445, .external_lex_state = 101}, - [5135] = {.lex_state = 468, .external_lex_state = 81}, - [5136] = {.lex_state = 466, .external_lex_state = 69}, - [5137] = {.lex_state = 445, .external_lex_state = 101}, - [5138] = {.lex_state = 481, .external_lex_state = 99}, - [5139] = {.lex_state = 481, .external_lex_state = 99}, - [5140] = {.lex_state = 480, .external_lex_state = 104}, - [5141] = {.lex_state = 480, .external_lex_state = 104}, - [5142] = {.lex_state = 457, .external_lex_state = 100}, - [5143] = {.lex_state = 457, .external_lex_state = 100}, - [5144] = {.lex_state = 457, .external_lex_state = 100}, - [5145] = {.lex_state = 457, .external_lex_state = 100}, - [5146] = {.lex_state = 457, .external_lex_state = 100}, - [5147] = {.lex_state = 480, .external_lex_state = 104}, - [5148] = {.lex_state = 480, .external_lex_state = 104}, - [5149] = {.lex_state = 457, .external_lex_state = 100}, - [5150] = {.lex_state = 457, .external_lex_state = 100}, - [5151] = {.lex_state = 466, .external_lex_state = 69}, - [5152] = {.lex_state = 457, .external_lex_state = 100}, - [5153] = {.lex_state = 457, .external_lex_state = 100}, - [5154] = {.lex_state = 457, .external_lex_state = 100}, - [5155] = {.lex_state = 457, .external_lex_state = 100}, - [5156] = {.lex_state = 457, .external_lex_state = 100}, - [5157] = {.lex_state = 94, .external_lex_state = 106}, - [5158] = {.lex_state = 481, .external_lex_state = 99}, - [5159] = {.lex_state = 481, .external_lex_state = 99}, - [5160] = {.lex_state = 94, .external_lex_state = 106}, - [5161] = {.lex_state = 481, .external_lex_state = 99}, - [5162] = {.lex_state = 466, .external_lex_state = 69}, - [5163] = {.lex_state = 96, .external_lex_state = 92}, - [5164] = {.lex_state = 95, .external_lex_state = 92}, - [5165] = {.lex_state = 96, .external_lex_state = 92}, - [5166] = {.lex_state = 96, .external_lex_state = 92}, - [5167] = {.lex_state = 96, .external_lex_state = 92}, - [5168] = {.lex_state = 95, .external_lex_state = 92}, - [5169] = {.lex_state = 95, .external_lex_state = 92}, - [5170] = {.lex_state = 96, .external_lex_state = 92}, - [5171] = {.lex_state = 468, .external_lex_state = 101}, - [5172] = {.lex_state = 481, .external_lex_state = 99}, - [5173] = {.lex_state = 468, .external_lex_state = 81}, - [5174] = {.lex_state = 481, .external_lex_state = 99}, - [5175] = {.lex_state = 468, .external_lex_state = 101}, - [5176] = {.lex_state = 480, .external_lex_state = 99}, - [5177] = {.lex_state = 466, .external_lex_state = 69}, - [5178] = {.lex_state = 480, .external_lex_state = 99}, - [5179] = {.lex_state = 480, .external_lex_state = 99}, - [5180] = {.lex_state = 480, .external_lex_state = 99}, - [5181] = {.lex_state = 96, .external_lex_state = 91}, - [5182] = {.lex_state = 96, .external_lex_state = 91}, - [5183] = {.lex_state = 480, .external_lex_state = 99}, - [5184] = {.lex_state = 466, .external_lex_state = 69}, - [5185] = {.lex_state = 466, .external_lex_state = 69}, - [5186] = {.lex_state = 466, .external_lex_state = 69}, - [5187] = {.lex_state = 445, .external_lex_state = 101}, - [5188] = {.lex_state = 480, .external_lex_state = 99}, - [5189] = {.lex_state = 466, .external_lex_state = 69}, - [5190] = {.lex_state = 477, .external_lex_state = 103}, - [5191] = {.lex_state = 468, .external_lex_state = 101}, - [5192] = {.lex_state = 477, .external_lex_state = 103}, - [5193] = {.lex_state = 445, .external_lex_state = 101}, - [5194] = {.lex_state = 477, .external_lex_state = 103}, - [5195] = {.lex_state = 466, .external_lex_state = 69}, - [5196] = {.lex_state = 480, .external_lex_state = 104}, - [5197] = {.lex_state = 480, .external_lex_state = 104}, - [5198] = {.lex_state = 466, .external_lex_state = 69}, - [5199] = {.lex_state = 468, .external_lex_state = 101}, - [5200] = {.lex_state = 480, .external_lex_state = 104}, - [5201] = {.lex_state = 480, .external_lex_state = 99}, - [5202] = {.lex_state = 480, .external_lex_state = 104}, - [5203] = {.lex_state = 480, .external_lex_state = 99}, - [5204] = {.lex_state = 480, .external_lex_state = 99}, - [5205] = {.lex_state = 466, .external_lex_state = 69}, - [5206] = {.lex_state = 480, .external_lex_state = 99}, - [5207] = {.lex_state = 480, .external_lex_state = 99}, - [5208] = {.lex_state = 480, .external_lex_state = 99}, - [5209] = {.lex_state = 480, .external_lex_state = 99}, - [5210] = {.lex_state = 480, .external_lex_state = 99}, - [5211] = {.lex_state = 480, .external_lex_state = 99}, - [5212] = {.lex_state = 468, .external_lex_state = 101}, - [5213] = {.lex_state = 466, .external_lex_state = 69}, - [5214] = {.lex_state = 480, .external_lex_state = 99}, - [5215] = {.lex_state = 480, .external_lex_state = 99}, - [5216] = {.lex_state = 480, .external_lex_state = 99}, - [5217] = {.lex_state = 477, .external_lex_state = 104}, - [5218] = {.lex_state = 480, .external_lex_state = 104}, - [5219] = {.lex_state = 480, .external_lex_state = 104}, - [5220] = {.lex_state = 480, .external_lex_state = 104}, - [5221] = {.lex_state = 468, .external_lex_state = 101}, - [5222] = {.lex_state = 445, .external_lex_state = 102}, - [5223] = {.lex_state = 466, .external_lex_state = 69}, - [5224] = {.lex_state = 468, .external_lex_state = 101}, - [5225] = {.lex_state = 445, .external_lex_state = 101}, - [5226] = {.lex_state = 466, .external_lex_state = 69}, - [5227] = {.lex_state = 466, .external_lex_state = 69}, - [5228] = {.lex_state = 468, .external_lex_state = 101}, - [5229] = {.lex_state = 466, .external_lex_state = 69}, - [5230] = {.lex_state = 466, .external_lex_state = 69}, - [5231] = {.lex_state = 466, .external_lex_state = 69}, - [5232] = {.lex_state = 466, .external_lex_state = 69}, - [5233] = {.lex_state = 466, .external_lex_state = 69}, - [5234] = {.lex_state = 468, .external_lex_state = 101}, - [5235] = {.lex_state = 445, .external_lex_state = 102}, - [5236] = {.lex_state = 96, .external_lex_state = 91}, - [5237] = {.lex_state = 96, .external_lex_state = 91}, - [5238] = {.lex_state = 96, .external_lex_state = 91}, - [5239] = {.lex_state = 96, .external_lex_state = 91}, - [5240] = {.lex_state = 96, .external_lex_state = 91}, - [5241] = {.lex_state = 96, .external_lex_state = 91}, - [5242] = {.lex_state = 96, .external_lex_state = 91}, - [5243] = {.lex_state = 96, .external_lex_state = 91}, - [5244] = {.lex_state = 466, .external_lex_state = 69}, - [5245] = {.lex_state = 480, .external_lex_state = 99}, - [5246] = {.lex_state = 477, .external_lex_state = 103}, - [5247] = {.lex_state = 468, .external_lex_state = 101}, - [5248] = {.lex_state = 454, .external_lex_state = 48}, - [5249] = {.lex_state = 480, .external_lex_state = 104}, - [5250] = {.lex_state = 454, .external_lex_state = 48}, - [5251] = {.lex_state = 454, .external_lex_state = 48}, - [5252] = {.lex_state = 477, .external_lex_state = 104}, - [5253] = {.lex_state = 477, .external_lex_state = 104}, + [4927] = {.lex_state = 450, .external_lex_state = 98}, + [4928] = {.lex_state = 516, .external_lex_state = 87}, + [4929] = {.lex_state = 516, .external_lex_state = 87}, + [4930] = {.lex_state = 516, .external_lex_state = 87}, + [4931] = {.lex_state = 516, .external_lex_state = 87}, + [4932] = {.lex_state = 450, .external_lex_state = 98}, + [4933] = {.lex_state = 450, .external_lex_state = 98}, + [4934] = {.lex_state = 450, .external_lex_state = 98}, + [4935] = {.lex_state = 450, .external_lex_state = 98}, + [4936] = {.lex_state = 98, .external_lex_state = 84}, + [4937] = {.lex_state = 450, .external_lex_state = 98}, + [4938] = {.lex_state = 450, .external_lex_state = 98}, + [4939] = {.lex_state = 516, .external_lex_state = 87}, + [4940] = {.lex_state = 516, .external_lex_state = 87}, + [4941] = {.lex_state = 450, .external_lex_state = 98}, + [4942] = {.lex_state = 450, .external_lex_state = 98}, + [4943] = {.lex_state = 450, .external_lex_state = 98}, + [4944] = {.lex_state = 450, .external_lex_state = 98}, + [4945] = {.lex_state = 450, .external_lex_state = 98}, + [4946] = {.lex_state = 468, .external_lex_state = 97}, + [4947] = {.lex_state = 297, .external_lex_state = 96}, + [4948] = {.lex_state = 98, .external_lex_state = 84}, + [4949] = {.lex_state = 468, .external_lex_state = 97}, + [4950] = {.lex_state = 450, .external_lex_state = 98}, + [4951] = {.lex_state = 98, .external_lex_state = 87}, + [4952] = {.lex_state = 97, .external_lex_state = 87}, + [4953] = {.lex_state = 98, .external_lex_state = 87}, + [4954] = {.lex_state = 98, .external_lex_state = 87}, + [4955] = {.lex_state = 98, .external_lex_state = 87}, + [4956] = {.lex_state = 515, .external_lex_state = 87}, + [4957] = {.lex_state = 98, .external_lex_state = 87}, + [4958] = {.lex_state = 98, .external_lex_state = 87}, + [4959] = {.lex_state = 98, .external_lex_state = 87}, + [4960] = {.lex_state = 98, .external_lex_state = 87}, + [4961] = {.lex_state = 445, .external_lex_state = 99}, + [4962] = {.lex_state = 98, .external_lex_state = 87}, + [4963] = {.lex_state = 98, .external_lex_state = 87}, + [4964] = {.lex_state = 516, .external_lex_state = 87}, + [4965] = {.lex_state = 98, .external_lex_state = 87}, + [4966] = {.lex_state = 98, .external_lex_state = 87}, + [4967] = {.lex_state = 98, .external_lex_state = 87}, + [4968] = {.lex_state = 98, .external_lex_state = 87}, + [4969] = {.lex_state = 98, .external_lex_state = 87}, + [4970] = {.lex_state = 98, .external_lex_state = 87}, + [4971] = {.lex_state = 98, .external_lex_state = 87}, + [4972] = {.lex_state = 98, .external_lex_state = 87}, + [4973] = {.lex_state = 98, .external_lex_state = 87}, + [4974] = {.lex_state = 98, .external_lex_state = 87}, + [4975] = {.lex_state = 98, .external_lex_state = 87}, + [4976] = {.lex_state = 98, .external_lex_state = 87}, + [4977] = {.lex_state = 98, .external_lex_state = 87}, + [4978] = {.lex_state = 98, .external_lex_state = 87}, + [4979] = {.lex_state = 98, .external_lex_state = 87}, + [4980] = {.lex_state = 98, .external_lex_state = 92}, + [4981] = {.lex_state = 98, .external_lex_state = 87}, + [4982] = {.lex_state = 98, .external_lex_state = 87}, + [4983] = {.lex_state = 98, .external_lex_state = 87}, + [4984] = {.lex_state = 98, .external_lex_state = 87}, + [4985] = {.lex_state = 98, .external_lex_state = 87}, + [4986] = {.lex_state = 516, .external_lex_state = 87}, + [4987] = {.lex_state = 98, .external_lex_state = 87}, + [4988] = {.lex_state = 296, .external_lex_state = 71}, + [4989] = {.lex_state = 515, .external_lex_state = 87}, + [4990] = {.lex_state = 98, .external_lex_state = 87}, + [4991] = {.lex_state = 98, .external_lex_state = 87}, + [4992] = {.lex_state = 98, .external_lex_state = 87}, + [4993] = {.lex_state = 98, .external_lex_state = 87}, + [4994] = {.lex_state = 98, .external_lex_state = 87}, + [4995] = {.lex_state = 98, .external_lex_state = 87}, + [4996] = {.lex_state = 98, .external_lex_state = 87}, + [4997] = {.lex_state = 445, .external_lex_state = 100}, + [4998] = {.lex_state = 515, .external_lex_state = 87}, + [4999] = {.lex_state = 98, .external_lex_state = 87}, + [5000] = {.lex_state = 98, .external_lex_state = 87}, + [5001] = {.lex_state = 98, .external_lex_state = 87}, + [5002] = {.lex_state = 296, .external_lex_state = 71}, + [5003] = {.lex_state = 98, .external_lex_state = 87}, + [5004] = {.lex_state = 98, .external_lex_state = 87}, + [5005] = {.lex_state = 98, .external_lex_state = 87}, + [5006] = {.lex_state = 98, .external_lex_state = 87}, + [5007] = {.lex_state = 98, .external_lex_state = 87}, + [5008] = {.lex_state = 98, .external_lex_state = 87}, + [5009] = {.lex_state = 98, .external_lex_state = 87}, + [5010] = {.lex_state = 98, .external_lex_state = 87}, + [5011] = {.lex_state = 515, .external_lex_state = 87}, + [5012] = {.lex_state = 481, .external_lex_state = 101}, + [5013] = {.lex_state = 515, .external_lex_state = 87}, + [5014] = {.lex_state = 98, .external_lex_state = 87}, + [5015] = {.lex_state = 515, .external_lex_state = 87}, + [5016] = {.lex_state = 98, .external_lex_state = 87}, + [5017] = {.lex_state = 97, .external_lex_state = 93}, + [5018] = {.lex_state = 445, .external_lex_state = 99}, + [5019] = {.lex_state = 445, .external_lex_state = 100}, + [5020] = {.lex_state = 515, .external_lex_state = 87}, + [5021] = {.lex_state = 445, .external_lex_state = 100}, + [5022] = {.lex_state = 98, .external_lex_state = 87}, + [5023] = {.lex_state = 98, .external_lex_state = 87}, + [5024] = {.lex_state = 98, .external_lex_state = 87}, + [5025] = {.lex_state = 98, .external_lex_state = 87}, + [5026] = {.lex_state = 515, .external_lex_state = 87}, + [5027] = {.lex_state = 97, .external_lex_state = 87}, + [5028] = {.lex_state = 98, .external_lex_state = 87}, + [5029] = {.lex_state = 98, .external_lex_state = 87}, + [5030] = {.lex_state = 98, .external_lex_state = 93}, + [5031] = {.lex_state = 468, .external_lex_state = 99}, + [5032] = {.lex_state = 457, .external_lex_state = 102}, + [5033] = {.lex_state = 457, .external_lex_state = 102}, + [5034] = {.lex_state = 468, .external_lex_state = 97}, + [5035] = {.lex_state = 468, .external_lex_state = 97}, + [5036] = {.lex_state = 468, .external_lex_state = 97}, + [5037] = {.lex_state = 468, .external_lex_state = 97}, + [5038] = {.lex_state = 468, .external_lex_state = 97}, + [5039] = {.lex_state = 468, .external_lex_state = 97}, + [5040] = {.lex_state = 468, .external_lex_state = 97}, + [5041] = {.lex_state = 468, .external_lex_state = 97}, + [5042] = {.lex_state = 468, .external_lex_state = 97}, + [5043] = {.lex_state = 468, .external_lex_state = 97}, + [5044] = {.lex_state = 468, .external_lex_state = 97}, + [5045] = {.lex_state = 468, .external_lex_state = 97}, + [5046] = {.lex_state = 481, .external_lex_state = 101}, + [5047] = {.lex_state = 481, .external_lex_state = 101}, + [5048] = {.lex_state = 481, .external_lex_state = 101}, + [5049] = {.lex_state = 481, .external_lex_state = 101}, + [5050] = {.lex_state = 286, .external_lex_state = 96}, + [5051] = {.lex_state = 286, .external_lex_state = 96}, + [5052] = {.lex_state = 468, .external_lex_state = 99}, + [5053] = {.lex_state = 468, .external_lex_state = 97}, + [5054] = {.lex_state = 457, .external_lex_state = 102}, + [5055] = {.lex_state = 457, .external_lex_state = 102}, + [5056] = {.lex_state = 457, .external_lex_state = 102}, + [5057] = {.lex_state = 481, .external_lex_state = 101}, + [5058] = {.lex_state = 481, .external_lex_state = 101}, + [5059] = {.lex_state = 481, .external_lex_state = 101}, + [5060] = {.lex_state = 481, .external_lex_state = 101}, + [5061] = {.lex_state = 457, .external_lex_state = 102}, + [5062] = {.lex_state = 468, .external_lex_state = 99}, + [5063] = {.lex_state = 468, .external_lex_state = 97}, + [5064] = {.lex_state = 468, .external_lex_state = 97}, + [5065] = {.lex_state = 468, .external_lex_state = 97}, + [5066] = {.lex_state = 296, .external_lex_state = 71}, + [5067] = {.lex_state = 468, .external_lex_state = 97}, + [5068] = {.lex_state = 286, .external_lex_state = 96}, + [5069] = {.lex_state = 286, .external_lex_state = 96}, + [5070] = {.lex_state = 286, .external_lex_state = 96}, + [5071] = {.lex_state = 468, .external_lex_state = 97}, + [5072] = {.lex_state = 98, .external_lex_state = 87}, + [5073] = {.lex_state = 468, .external_lex_state = 97}, + [5074] = {.lex_state = 468, .external_lex_state = 97}, + [5075] = {.lex_state = 98, .external_lex_state = 87}, + [5076] = {.lex_state = 468, .external_lex_state = 97}, + [5077] = {.lex_state = 468, .external_lex_state = 97}, + [5078] = {.lex_state = 468, .external_lex_state = 97}, + [5079] = {.lex_state = 468, .external_lex_state = 99}, + [5080] = {.lex_state = 468, .external_lex_state = 97}, + [5081] = {.lex_state = 468, .external_lex_state = 97}, + [5082] = {.lex_state = 468, .external_lex_state = 97}, + [5083] = {.lex_state = 468, .external_lex_state = 97}, + [5084] = {.lex_state = 468, .external_lex_state = 97}, + [5085] = {.lex_state = 468, .external_lex_state = 97}, + [5086] = {.lex_state = 97, .external_lex_state = 93}, + [5087] = {.lex_state = 468, .external_lex_state = 97}, + [5088] = {.lex_state = 468, .external_lex_state = 97}, + [5089] = {.lex_state = 468, .external_lex_state = 97}, + [5090] = {.lex_state = 468, .external_lex_state = 97}, + [5091] = {.lex_state = 98, .external_lex_state = 87}, + [5092] = {.lex_state = 97, .external_lex_state = 87}, + [5093] = {.lex_state = 98, .external_lex_state = 87}, + [5094] = {.lex_state = 468, .external_lex_state = 97}, + [5095] = {.lex_state = 98, .external_lex_state = 87}, + [5096] = {.lex_state = 98, .external_lex_state = 87}, + [5097] = {.lex_state = 97, .external_lex_state = 87}, + [5098] = {.lex_state = 97, .external_lex_state = 87}, + [5099] = {.lex_state = 468, .external_lex_state = 97}, + [5100] = {.lex_state = 468, .external_lex_state = 97}, + [5101] = {.lex_state = 477, .external_lex_state = 101}, + [5102] = {.lex_state = 481, .external_lex_state = 101}, + [5103] = {.lex_state = 98, .external_lex_state = 92}, + [5104] = {.lex_state = 98, .external_lex_state = 92}, + [5105] = {.lex_state = 481, .external_lex_state = 101}, + [5106] = {.lex_state = 97, .external_lex_state = 93}, + [5107] = {.lex_state = 97, .external_lex_state = 93}, + [5108] = {.lex_state = 481, .external_lex_state = 101}, + [5109] = {.lex_state = 468, .external_lex_state = 99}, + [5110] = {.lex_state = 468, .external_lex_state = 97}, + [5111] = {.lex_state = 478, .external_lex_state = 103}, + [5112] = {.lex_state = 468, .external_lex_state = 99}, + [5113] = {.lex_state = 445, .external_lex_state = 100}, + [5114] = {.lex_state = 469, .external_lex_state = 104}, + [5115] = {.lex_state = 468, .external_lex_state = 97}, + [5116] = {.lex_state = 468, .external_lex_state = 99}, + [5117] = {.lex_state = 515, .external_lex_state = 87}, + [5118] = {.lex_state = 515, .external_lex_state = 87}, + [5119] = {.lex_state = 480, .external_lex_state = 105}, + [5120] = {.lex_state = 445, .external_lex_state = 100}, + [5121] = {.lex_state = 468, .external_lex_state = 99}, + [5122] = {.lex_state = 98, .external_lex_state = 92}, + [5123] = {.lex_state = 98, .external_lex_state = 92}, + [5124] = {.lex_state = 468, .external_lex_state = 99}, + [5125] = {.lex_state = 468, .external_lex_state = 99}, + [5126] = {.lex_state = 98, .external_lex_state = 67}, + [5127] = {.lex_state = 98, .external_lex_state = 67}, + [5128] = {.lex_state = 97, .external_lex_state = 93}, + [5129] = {.lex_state = 97, .external_lex_state = 93}, + [5130] = {.lex_state = 97, .external_lex_state = 93}, + [5131] = {.lex_state = 97, .external_lex_state = 93}, + [5132] = {.lex_state = 97, .external_lex_state = 93}, + [5133] = {.lex_state = 97, .external_lex_state = 93}, + [5134] = {.lex_state = 97, .external_lex_state = 93}, + [5135] = {.lex_state = 468, .external_lex_state = 97}, + [5136] = {.lex_state = 466, .external_lex_state = 68}, + [5137] = {.lex_state = 466, .external_lex_state = 68}, + [5138] = {.lex_state = 466, .external_lex_state = 68}, + [5139] = {.lex_state = 457, .external_lex_state = 102}, + [5140] = {.lex_state = 445, .external_lex_state = 99}, + [5141] = {.lex_state = 457, .external_lex_state = 102}, + [5142] = {.lex_state = 457, .external_lex_state = 102}, + [5143] = {.lex_state = 457, .external_lex_state = 102}, + [5144] = {.lex_state = 457, .external_lex_state = 102}, + [5145] = {.lex_state = 466, .external_lex_state = 68}, + [5146] = {.lex_state = 466, .external_lex_state = 68}, + [5147] = {.lex_state = 445, .external_lex_state = 99}, + [5148] = {.lex_state = 477, .external_lex_state = 101}, + [5149] = {.lex_state = 457, .external_lex_state = 102}, + [5150] = {.lex_state = 445, .external_lex_state = 99}, + [5151] = {.lex_state = 466, .external_lex_state = 68}, + [5152] = {.lex_state = 468, .external_lex_state = 100}, + [5153] = {.lex_state = 477, .external_lex_state = 101}, + [5154] = {.lex_state = 445, .external_lex_state = 99}, + [5155] = {.lex_state = 96, .external_lex_state = 106}, + [5156] = {.lex_state = 445, .external_lex_state = 100}, + [5157] = {.lex_state = 481, .external_lex_state = 105}, + [5158] = {.lex_state = 477, .external_lex_state = 101}, + [5159] = {.lex_state = 477, .external_lex_state = 101}, + [5160] = {.lex_state = 466, .external_lex_state = 68}, + [5161] = {.lex_state = 466, .external_lex_state = 68}, + [5162] = {.lex_state = 481, .external_lex_state = 105}, + [5163] = {.lex_state = 477, .external_lex_state = 101}, + [5164] = {.lex_state = 481, .external_lex_state = 101}, + [5165] = {.lex_state = 96, .external_lex_state = 106}, + [5166] = {.lex_state = 481, .external_lex_state = 105}, + [5167] = {.lex_state = 98, .external_lex_state = 93}, + [5168] = {.lex_state = 98, .external_lex_state = 93}, + [5169] = {.lex_state = 481, .external_lex_state = 105}, + [5170] = {.lex_state = 96, .external_lex_state = 106}, + [5171] = {.lex_state = 477, .external_lex_state = 101}, + [5172] = {.lex_state = 481, .external_lex_state = 101}, + [5173] = {.lex_state = 481, .external_lex_state = 101}, + [5174] = {.lex_state = 445, .external_lex_state = 100}, + [5175] = {.lex_state = 457, .external_lex_state = 102}, + [5176] = {.lex_state = 481, .external_lex_state = 101}, + [5177] = {.lex_state = 481, .external_lex_state = 101}, + [5178] = {.lex_state = 481, .external_lex_state = 101}, + [5179] = {.lex_state = 481, .external_lex_state = 101}, + [5180] = {.lex_state = 477, .external_lex_state = 103}, + [5181] = {.lex_state = 477, .external_lex_state = 103}, + [5182] = {.lex_state = 445, .external_lex_state = 100}, + [5183] = {.lex_state = 445, .external_lex_state = 99}, + [5184] = {.lex_state = 457, .external_lex_state = 102}, + [5185] = {.lex_state = 477, .external_lex_state = 103}, + [5186] = {.lex_state = 457, .external_lex_state = 102}, + [5187] = {.lex_state = 481, .external_lex_state = 105}, + [5188] = {.lex_state = 481, .external_lex_state = 105}, + [5189] = {.lex_state = 481, .external_lex_state = 105}, + [5190] = {.lex_state = 477, .external_lex_state = 101}, + [5191] = {.lex_state = 481, .external_lex_state = 105}, + [5192] = {.lex_state = 481, .external_lex_state = 101}, + [5193] = {.lex_state = 481, .external_lex_state = 101}, + [5194] = {.lex_state = 481, .external_lex_state = 101}, + [5195] = {.lex_state = 481, .external_lex_state = 101}, + [5196] = {.lex_state = 466, .external_lex_state = 68}, + [5197] = {.lex_state = 481, .external_lex_state = 101}, + [5198] = {.lex_state = 481, .external_lex_state = 101}, + [5199] = {.lex_state = 481, .external_lex_state = 101}, + [5200] = {.lex_state = 481, .external_lex_state = 101}, + [5201] = {.lex_state = 477, .external_lex_state = 101}, + [5202] = {.lex_state = 477, .external_lex_state = 103}, + [5203] = {.lex_state = 477, .external_lex_state = 103}, + [5204] = {.lex_state = 477, .external_lex_state = 101}, + [5205] = {.lex_state = 481, .external_lex_state = 101}, + [5206] = {.lex_state = 481, .external_lex_state = 101}, + [5207] = {.lex_state = 481, .external_lex_state = 101}, + [5208] = {.lex_state = 466, .external_lex_state = 68}, + [5209] = {.lex_state = 466, .external_lex_state = 68}, + [5210] = {.lex_state = 478, .external_lex_state = 105}, + [5211] = {.lex_state = 481, .external_lex_state = 105}, + [5212] = {.lex_state = 481, .external_lex_state = 105}, + [5213] = {.lex_state = 466, .external_lex_state = 68}, + [5214] = {.lex_state = 481, .external_lex_state = 105}, + [5215] = {.lex_state = 466, .external_lex_state = 68}, + [5216] = {.lex_state = 466, .external_lex_state = 68}, + [5217] = {.lex_state = 466, .external_lex_state = 68}, + [5218] = {.lex_state = 457, .external_lex_state = 102}, + [5219] = {.lex_state = 466, .external_lex_state = 68}, + [5220] = {.lex_state = 468, .external_lex_state = 100}, + [5221] = {.lex_state = 468, .external_lex_state = 100}, + [5222] = {.lex_state = 466, .external_lex_state = 68}, + [5223] = {.lex_state = 468, .external_lex_state = 81}, + [5224] = {.lex_state = 466, .external_lex_state = 68}, + [5225] = {.lex_state = 466, .external_lex_state = 68}, + [5226] = {.lex_state = 457, .external_lex_state = 102}, + [5227] = {.lex_state = 477, .external_lex_state = 101}, + [5228] = {.lex_state = 457, .external_lex_state = 102}, + [5229] = {.lex_state = 457, .external_lex_state = 102}, + [5230] = {.lex_state = 466, .external_lex_state = 68}, + [5231] = {.lex_state = 466, .external_lex_state = 68}, + [5232] = {.lex_state = 466, .external_lex_state = 68}, + [5233] = {.lex_state = 468, .external_lex_state = 100}, + [5234] = {.lex_state = 466, .external_lex_state = 68}, + [5235] = {.lex_state = 457, .external_lex_state = 102}, + [5236] = {.lex_state = 468, .external_lex_state = 100}, + [5237] = {.lex_state = 98, .external_lex_state = 93}, + [5238] = {.lex_state = 98, .external_lex_state = 93}, + [5239] = {.lex_state = 98, .external_lex_state = 93}, + [5240] = {.lex_state = 98, .external_lex_state = 93}, + [5241] = {.lex_state = 98, .external_lex_state = 93}, + [5242] = {.lex_state = 98, .external_lex_state = 93}, + [5243] = {.lex_state = 98, .external_lex_state = 93}, + [5244] = {.lex_state = 98, .external_lex_state = 93}, + [5245] = {.lex_state = 457, .external_lex_state = 102}, + [5246] = {.lex_state = 477, .external_lex_state = 101}, + [5247] = {.lex_state = 457, .external_lex_state = 102}, + [5248] = {.lex_state = 457, .external_lex_state = 102}, + [5249] = {.lex_state = 468, .external_lex_state = 81}, + [5250] = {.lex_state = 457, .external_lex_state = 102}, + [5251] = {.lex_state = 466, .external_lex_state = 68}, + [5252] = {.lex_state = 457, .external_lex_state = 102}, + [5253] = {.lex_state = 481, .external_lex_state = 101}, [5254] = {.lex_state = 454, .external_lex_state = 48}, [5255] = {.lex_state = 454, .external_lex_state = 48}, - [5256] = {.lex_state = 480, .external_lex_state = 104}, - [5257] = {.lex_state = 454, .external_lex_state = 48}, - [5258] = {.lex_state = 454, .external_lex_state = 48}, + [5256] = {.lex_state = 454, .external_lex_state = 78}, + [5257] = {.lex_state = 468, .external_lex_state = 99}, + [5258] = {.lex_state = 468, .external_lex_state = 99}, [5259] = {.lex_state = 454, .external_lex_state = 48}, - [5260] = {.lex_state = 480, .external_lex_state = 104}, - [5261] = {.lex_state = 478, .external_lex_state = 102}, - [5262] = {.lex_state = 454, .external_lex_state = 48}, - [5263] = {.lex_state = 468, .external_lex_state = 101}, - [5264] = {.lex_state = 454, .external_lex_state = 48}, - [5265] = {.lex_state = 454, .external_lex_state = 48}, - [5266] = {.lex_state = 468, .external_lex_state = 101}, - [5267] = {.lex_state = 454, .external_lex_state = 48}, - [5268] = {.lex_state = 454, .external_lex_state = 48}, + [5260] = {.lex_state = 481, .external_lex_state = 105}, + [5261] = {.lex_state = 478, .external_lex_state = 81}, + [5262] = {.lex_state = 481, .external_lex_state = 105}, + [5263] = {.lex_state = 481, .external_lex_state = 105}, + [5264] = {.lex_state = 481, .external_lex_state = 105}, + [5265] = {.lex_state = 481, .external_lex_state = 105}, + [5266] = {.lex_state = 454, .external_lex_state = 48}, + [5267] = {.lex_state = 96, .external_lex_state = 107}, + [5268] = {.lex_state = 257, .external_lex_state = 71}, [5269] = {.lex_state = 454, .external_lex_state = 48}, - [5270] = {.lex_state = 477, .external_lex_state = 104}, - [5271] = {.lex_state = 477, .external_lex_state = 104}, - [5272] = {.lex_state = 454, .external_lex_state = 48}, + [5270] = {.lex_state = 481, .external_lex_state = 105}, + [5271] = {.lex_state = 481, .external_lex_state = 105}, + [5272] = {.lex_state = 481, .external_lex_state = 105}, [5273] = {.lex_state = 454, .external_lex_state = 48}, - [5274] = {.lex_state = 454, .external_lex_state = 48}, - [5275] = {.lex_state = 477, .external_lex_state = 103}, - [5276] = {.lex_state = 468, .external_lex_state = 101}, - [5277] = {.lex_state = 454, .external_lex_state = 48}, - [5278] = {.lex_state = 445, .external_lex_state = 101}, - [5279] = {.lex_state = 478, .external_lex_state = 102}, - [5280] = {.lex_state = 477, .external_lex_state = 103}, - [5281] = {.lex_state = 477, .external_lex_state = 103}, - [5282] = {.lex_state = 454, .external_lex_state = 48}, - [5283] = {.lex_state = 454, .external_lex_state = 48}, - [5284] = {.lex_state = 477, .external_lex_state = 103}, - [5285] = {.lex_state = 477, .external_lex_state = 103}, - [5286] = {.lex_state = 481, .external_lex_state = 99}, - [5287] = {.lex_state = 477, .external_lex_state = 81}, + [5274] = {.lex_state = 468, .external_lex_state = 99}, + [5275] = {.lex_state = 477, .external_lex_state = 105}, + [5276] = {.lex_state = 477, .external_lex_state = 105}, + [5277] = {.lex_state = 481, .external_lex_state = 105}, + [5278] = {.lex_state = 477, .external_lex_state = 105}, + [5279] = {.lex_state = 477, .external_lex_state = 105}, + [5280] = {.lex_state = 454, .external_lex_state = 78}, + [5281] = {.lex_state = 481, .external_lex_state = 105}, + [5282] = {.lex_state = 96, .external_lex_state = 107}, + [5283] = {.lex_state = 96, .external_lex_state = 107}, + [5284] = {.lex_state = 480, .external_lex_state = 100}, + [5285] = {.lex_state = 454, .external_lex_state = 48}, + [5286] = {.lex_state = 454, .external_lex_state = 48}, + [5287] = {.lex_state = 480, .external_lex_state = 100}, [5288] = {.lex_state = 454, .external_lex_state = 48}, - [5289] = {.lex_state = 481, .external_lex_state = 99}, - [5290] = {.lex_state = 481, .external_lex_state = 99}, - [5291] = {.lex_state = 481, .external_lex_state = 99}, - [5292] = {.lex_state = 445, .external_lex_state = 102}, + [5289] = {.lex_state = 469, .external_lex_state = 108}, + [5290] = {.lex_state = 96, .external_lex_state = 107}, + [5291] = {.lex_state = 468, .external_lex_state = 99}, + [5292] = {.lex_state = 98, .external_lex_state = 87}, [5293] = {.lex_state = 454, .external_lex_state = 48}, - [5294] = {.lex_state = 481, .external_lex_state = 99}, - [5295] = {.lex_state = 480, .external_lex_state = 104}, + [5294] = {.lex_state = 454, .external_lex_state = 48}, + [5295] = {.lex_state = 98, .external_lex_state = 87}, [5296] = {.lex_state = 454, .external_lex_state = 48}, - [5297] = {.lex_state = 481, .external_lex_state = 99}, - [5298] = {.lex_state = 481, .external_lex_state = 99}, - [5299] = {.lex_state = 478, .external_lex_state = 102}, - [5300] = {.lex_state = 454, .external_lex_state = 48}, + [5297] = {.lex_state = 454, .external_lex_state = 48}, + [5298] = {.lex_state = 454, .external_lex_state = 48}, + [5299] = {.lex_state = 96, .external_lex_state = 107}, + [5300] = {.lex_state = 96, .external_lex_state = 107}, [5301] = {.lex_state = 454, .external_lex_state = 48}, - [5302] = {.lex_state = 481, .external_lex_state = 99}, - [5303] = {.lex_state = 477, .external_lex_state = 81}, - [5304] = {.lex_state = 480, .external_lex_state = 104}, - [5305] = {.lex_state = 477, .external_lex_state = 103}, - [5306] = {.lex_state = 468, .external_lex_state = 102}, - [5307] = {.lex_state = 481, .external_lex_state = 99}, - [5308] = {.lex_state = 477, .external_lex_state = 103}, - [5309] = {.lex_state = 480, .external_lex_state = 104}, - [5310] = {.lex_state = 445, .external_lex_state = 102}, + [5302] = {.lex_state = 454, .external_lex_state = 48}, + [5303] = {.lex_state = 454, .external_lex_state = 48}, + [5304] = {.lex_state = 454, .external_lex_state = 48}, + [5305] = {.lex_state = 454, .external_lex_state = 48}, + [5306] = {.lex_state = 454, .external_lex_state = 48}, + [5307] = {.lex_state = 454, .external_lex_state = 48}, + [5308] = {.lex_state = 477, .external_lex_state = 101}, + [5309] = {.lex_state = 477, .external_lex_state = 101}, + [5310] = {.lex_state = 477, .external_lex_state = 101}, [5311] = {.lex_state = 454, .external_lex_state = 48}, - [5312] = {.lex_state = 478, .external_lex_state = 102}, - [5313] = {.lex_state = 454, .external_lex_state = 48}, - [5314] = {.lex_state = 454, .external_lex_state = 48}, + [5312] = {.lex_state = 477, .external_lex_state = 101}, + [5313] = {.lex_state = 477, .external_lex_state = 101}, + [5314] = {.lex_state = 96, .external_lex_state = 107}, [5315] = {.lex_state = 454, .external_lex_state = 48}, - [5316] = {.lex_state = 454, .external_lex_state = 48}, - [5317] = {.lex_state = 454, .external_lex_state = 48}, - [5318] = {.lex_state = 481, .external_lex_state = 99}, - [5319] = {.lex_state = 481, .external_lex_state = 99}, - [5320] = {.lex_state = 481, .external_lex_state = 99}, - [5321] = {.lex_state = 481, .external_lex_state = 99}, - [5322] = {.lex_state = 454, .external_lex_state = 48}, - [5323] = {.lex_state = 454, .external_lex_state = 48}, - [5324] = {.lex_state = 469, .external_lex_state = 107}, - [5325] = {.lex_state = 445, .external_lex_state = 102}, + [5316] = {.lex_state = 96, .external_lex_state = 107}, + [5317] = {.lex_state = 477, .external_lex_state = 105}, + [5318] = {.lex_state = 477, .external_lex_state = 101}, + [5319] = {.lex_state = 477, .external_lex_state = 105}, + [5320] = {.lex_state = 454, .external_lex_state = 48}, + [5321] = {.lex_state = 454, .external_lex_state = 48}, + [5322] = {.lex_state = 477, .external_lex_state = 101}, + [5323] = {.lex_state = 96, .external_lex_state = 107}, + [5324] = {.lex_state = 96, .external_lex_state = 107}, + [5325] = {.lex_state = 454, .external_lex_state = 48}, [5326] = {.lex_state = 454, .external_lex_state = 48}, - [5327] = {.lex_state = 481, .external_lex_state = 99}, - [5328] = {.lex_state = 481, .external_lex_state = 99}, - [5329] = {.lex_state = 477, .external_lex_state = 104}, - [5330] = {.lex_state = 480, .external_lex_state = 104}, - [5331] = {.lex_state = 477, .external_lex_state = 104}, - [5332] = {.lex_state = 477, .external_lex_state = 104}, + [5327] = {.lex_state = 468, .external_lex_state = 99}, + [5328] = {.lex_state = 477, .external_lex_state = 105}, + [5329] = {.lex_state = 454, .external_lex_state = 48}, + [5330] = {.lex_state = 481, .external_lex_state = 105}, + [5331] = {.lex_state = 481, .external_lex_state = 105}, + [5332] = {.lex_state = 454, .external_lex_state = 48}, [5333] = {.lex_state = 454, .external_lex_state = 48}, - [5334] = {.lex_state = 480, .external_lex_state = 104}, - [5335] = {.lex_state = 454, .external_lex_state = 48}, + [5334] = {.lex_state = 477, .external_lex_state = 103}, + [5335] = {.lex_state = 445, .external_lex_state = 99}, [5336] = {.lex_state = 454, .external_lex_state = 48}, [5337] = {.lex_state = 477, .external_lex_state = 103}, - [5338] = {.lex_state = 257, .external_lex_state = 71}, - [5339] = {.lex_state = 454, .external_lex_state = 48}, + [5338] = {.lex_state = 477, .external_lex_state = 103}, + [5339] = {.lex_state = 477, .external_lex_state = 103}, [5340] = {.lex_state = 477, .external_lex_state = 103}, - [5341] = {.lex_state = 480, .external_lex_state = 104}, - [5342] = {.lex_state = 480, .external_lex_state = 104}, - [5343] = {.lex_state = 481, .external_lex_state = 99}, - [5344] = {.lex_state = 454, .external_lex_state = 48}, - [5345] = {.lex_state = 477, .external_lex_state = 103}, - [5346] = {.lex_state = 477, .external_lex_state = 103}, - [5347] = {.lex_state = 480, .external_lex_state = 104}, - [5348] = {.lex_state = 477, .external_lex_state = 104}, - [5349] = {.lex_state = 480, .external_lex_state = 104}, - [5350] = {.lex_state = 477, .external_lex_state = 104}, - [5351] = {.lex_state = 480, .external_lex_state = 104}, - [5352] = {.lex_state = 480, .external_lex_state = 104}, - [5353] = {.lex_state = 94, .external_lex_state = 106}, - [5354] = {.lex_state = 454, .external_lex_state = 48}, - [5355] = {.lex_state = 480, .external_lex_state = 104}, - [5356] = {.lex_state = 454, .external_lex_state = 48}, + [5341] = {.lex_state = 477, .external_lex_state = 101}, + [5342] = {.lex_state = 454, .external_lex_state = 48}, + [5343] = {.lex_state = 477, .external_lex_state = 101}, + [5344] = {.lex_state = 480, .external_lex_state = 100}, + [5345] = {.lex_state = 477, .external_lex_state = 101}, + [5346] = {.lex_state = 477, .external_lex_state = 101}, + [5347] = {.lex_state = 477, .external_lex_state = 101}, + [5348] = {.lex_state = 454, .external_lex_state = 48}, + [5349] = {.lex_state = 454, .external_lex_state = 48}, + [5350] = {.lex_state = 477, .external_lex_state = 101}, + [5351] = {.lex_state = 477, .external_lex_state = 101}, + [5352] = {.lex_state = 480, .external_lex_state = 100}, + [5353] = {.lex_state = 477, .external_lex_state = 101}, + [5354] = {.lex_state = 478, .external_lex_state = 81}, + [5355] = {.lex_state = 477, .external_lex_state = 103}, + [5356] = {.lex_state = 477, .external_lex_state = 101}, [5357] = {.lex_state = 477, .external_lex_state = 103}, - [5358] = {.lex_state = 477, .external_lex_state = 103}, - [5359] = {.lex_state = 478, .external_lex_state = 102}, - [5360] = {.lex_state = 481, .external_lex_state = 99}, - [5361] = {.lex_state = 454, .external_lex_state = 48}, - [5362] = {.lex_state = 454, .external_lex_state = 48}, - [5363] = {.lex_state = 454, .external_lex_state = 48}, - [5364] = {.lex_state = 454, .external_lex_state = 48}, - [5365] = {.lex_state = 477, .external_lex_state = 103}, + [5358] = {.lex_state = 477, .external_lex_state = 101}, + [5359] = {.lex_state = 477, .external_lex_state = 101}, + [5360] = {.lex_state = 477, .external_lex_state = 101}, + [5361] = {.lex_state = 96, .external_lex_state = 106}, + [5362] = {.lex_state = 477, .external_lex_state = 105}, + [5363] = {.lex_state = 477, .external_lex_state = 105}, + [5364] = {.lex_state = 477, .external_lex_state = 105}, + [5365] = {.lex_state = 454, .external_lex_state = 48}, [5366] = {.lex_state = 454, .external_lex_state = 48}, - [5367] = {.lex_state = 477, .external_lex_state = 103}, + [5367] = {.lex_state = 454, .external_lex_state = 48}, [5368] = {.lex_state = 454, .external_lex_state = 48}, - [5369] = {.lex_state = 454, .external_lex_state = 48}, - [5370] = {.lex_state = 477, .external_lex_state = 103}, - [5371] = {.lex_state = 468, .external_lex_state = 102}, - [5372] = {.lex_state = 454, .external_lex_state = 48}, - [5373] = {.lex_state = 468, .external_lex_state = 102}, + [5369] = {.lex_state = 477, .external_lex_state = 103}, + [5370] = {.lex_state = 454, .external_lex_state = 48}, + [5371] = {.lex_state = 477, .external_lex_state = 103}, + [5372] = {.lex_state = 481, .external_lex_state = 105}, + [5373] = {.lex_state = 481, .external_lex_state = 105}, [5374] = {.lex_state = 454, .external_lex_state = 48}, - [5375] = {.lex_state = 480, .external_lex_state = 104}, + [5375] = {.lex_state = 454, .external_lex_state = 48}, [5376] = {.lex_state = 454, .external_lex_state = 48}, - [5377] = {.lex_state = 480, .external_lex_state = 104}, + [5377] = {.lex_state = 454, .external_lex_state = 48}, [5378] = {.lex_state = 454, .external_lex_state = 48}, - [5379] = {.lex_state = 454, .external_lex_state = 48}, - [5380] = {.lex_state = 454, .external_lex_state = 48}, - [5381] = {.lex_state = 468, .external_lex_state = 102}, - [5382] = {.lex_state = 477, .external_lex_state = 103}, + [5379] = {.lex_state = 477, .external_lex_state = 103}, + [5380] = {.lex_state = 477, .external_lex_state = 103}, + [5381] = {.lex_state = 481, .external_lex_state = 105}, + [5382] = {.lex_state = 454, .external_lex_state = 48}, [5383] = {.lex_state = 454, .external_lex_state = 48}, - [5384] = {.lex_state = 477, .external_lex_state = 103}, + [5384] = {.lex_state = 454, .external_lex_state = 48}, [5385] = {.lex_state = 454, .external_lex_state = 48}, - [5386] = {.lex_state = 480, .external_lex_state = 104}, - [5387] = {.lex_state = 454, .external_lex_state = 48}, - [5388] = {.lex_state = 454, .external_lex_state = 78}, + [5386] = {.lex_state = 454, .external_lex_state = 48}, + [5387] = {.lex_state = 481, .external_lex_state = 105}, + [5388] = {.lex_state = 481, .external_lex_state = 105}, [5389] = {.lex_state = 454, .external_lex_state = 48}, - [5390] = {.lex_state = 454, .external_lex_state = 78}, - [5391] = {.lex_state = 481, .external_lex_state = 99}, - [5392] = {.lex_state = 480, .external_lex_state = 104}, - [5393] = {.lex_state = 481, .external_lex_state = 99}, - [5394] = {.lex_state = 468, .external_lex_state = 101}, - [5395] = {.lex_state = 477, .external_lex_state = 104}, - [5396] = {.lex_state = 468, .external_lex_state = 102}, - [5397] = {.lex_state = 477, .external_lex_state = 104}, - [5398] = {.lex_state = 454, .external_lex_state = 48}, - [5399] = {.lex_state = 454, .external_lex_state = 48}, + [5390] = {.lex_state = 454, .external_lex_state = 48}, + [5391] = {.lex_state = 481, .external_lex_state = 105}, + [5392] = {.lex_state = 454, .external_lex_state = 48}, + [5393] = {.lex_state = 481, .external_lex_state = 105}, + [5394] = {.lex_state = 454, .external_lex_state = 48}, + [5395] = {.lex_state = 477, .external_lex_state = 103}, + [5396] = {.lex_state = 477, .external_lex_state = 103}, + [5397] = {.lex_state = 480, .external_lex_state = 100}, + [5398] = {.lex_state = 477, .external_lex_state = 103}, + [5399] = {.lex_state = 477, .external_lex_state = 103}, [5400] = {.lex_state = 454, .external_lex_state = 48}, - [5401] = {.lex_state = 454, .external_lex_state = 48}, + [5401] = {.lex_state = 477, .external_lex_state = 103}, [5402] = {.lex_state = 454, .external_lex_state = 48}, [5403] = {.lex_state = 454, .external_lex_state = 48}, - [5404] = {.lex_state = 477, .external_lex_state = 104}, - [5405] = {.lex_state = 477, .external_lex_state = 102}, - [5406] = {.lex_state = 477, .external_lex_state = 104}, - [5407] = {.lex_state = 445, .external_lex_state = 101}, - [5408] = {.lex_state = 445, .external_lex_state = 101}, - [5409] = {.lex_state = 454, .external_lex_state = 78}, - [5410] = {.lex_state = 94, .external_lex_state = 108}, - [5411] = {.lex_state = 477, .external_lex_state = 81}, - [5412] = {.lex_state = 96, .external_lex_state = 92}, - [5413] = {.lex_state = 477, .external_lex_state = 102}, - [5414] = {.lex_state = 97, .external_lex_state = 109}, - [5415] = {.lex_state = 445, .external_lex_state = 101}, - [5416] = {.lex_state = 96, .external_lex_state = 92}, - [5417] = {.lex_state = 94, .external_lex_state = 108}, - [5418] = {.lex_state = 94, .external_lex_state = 108}, - [5419] = {.lex_state = 477, .external_lex_state = 104}, - [5420] = {.lex_state = 477, .external_lex_state = 104}, - [5421] = {.lex_state = 94, .external_lex_state = 108}, - [5422] = {.lex_state = 477, .external_lex_state = 104}, - [5423] = {.lex_state = 477, .external_lex_state = 104}, - [5424] = {.lex_state = 477, .external_lex_state = 104}, - [5425] = {.lex_state = 477, .external_lex_state = 104}, - [5426] = {.lex_state = 94, .external_lex_state = 108}, - [5427] = {.lex_state = 468, .external_lex_state = 101}, - [5428] = {.lex_state = 477, .external_lex_state = 104}, - [5429] = {.lex_state = 477, .external_lex_state = 104}, - [5430] = {.lex_state = 477, .external_lex_state = 104}, - [5431] = {.lex_state = 477, .external_lex_state = 102}, - [5432] = {.lex_state = 94, .external_lex_state = 106}, - [5433] = {.lex_state = 445, .external_lex_state = 101}, - [5434] = {.lex_state = 477, .external_lex_state = 102}, - [5435] = {.lex_state = 94, .external_lex_state = 108}, - [5436] = {.lex_state = 94, .external_lex_state = 108}, - [5437] = {.lex_state = 477, .external_lex_state = 104}, - [5438] = {.lex_state = 478, .external_lex_state = 102}, - [5439] = {.lex_state = 477, .external_lex_state = 104}, - [5440] = {.lex_state = 477, .external_lex_state = 104}, - [5441] = {.lex_state = 96, .external_lex_state = 92}, - [5442] = {.lex_state = 477, .external_lex_state = 104}, - [5443] = {.lex_state = 96, .external_lex_state = 92}, - [5444] = {.lex_state = 477, .external_lex_state = 102}, - [5445] = {.lex_state = 94, .external_lex_state = 108}, - [5446] = {.lex_state = 94, .external_lex_state = 108}, - [5447] = {.lex_state = 257, .external_lex_state = 71}, - [5448] = {.lex_state = 477, .external_lex_state = 104}, - [5449] = {.lex_state = 477, .external_lex_state = 104}, - [5450] = {.lex_state = 477, .external_lex_state = 104}, - [5451] = {.lex_state = 94, .external_lex_state = 108}, - [5452] = {.lex_state = 94, .external_lex_state = 106}, - [5453] = {.lex_state = 477, .external_lex_state = 104}, - [5454] = {.lex_state = 94, .external_lex_state = 106}, - [5455] = {.lex_state = 468, .external_lex_state = 101}, - [5456] = {.lex_state = 445, .external_lex_state = 102}, - [5457] = {.lex_state = 94, .external_lex_state = 108}, - [5458] = {.lex_state = 468, .external_lex_state = 102}, - [5459] = {.lex_state = 468, .external_lex_state = 101}, - [5460] = {.lex_state = 468, .external_lex_state = 101}, - [5461] = {.lex_state = 468, .external_lex_state = 101}, - [5462] = {.lex_state = 97, .external_lex_state = 109}, - [5463] = {.lex_state = 445, .external_lex_state = 102}, - [5464] = {.lex_state = 468, .external_lex_state = 101}, - [5465] = {.lex_state = 468, .external_lex_state = 101}, - [5466] = {.lex_state = 468, .external_lex_state = 101}, - [5467] = {.lex_state = 468, .external_lex_state = 101}, - [5468] = {.lex_state = 468, .external_lex_state = 101}, - [5469] = {.lex_state = 468, .external_lex_state = 101}, - [5470] = {.lex_state = 468, .external_lex_state = 101}, - [5471] = {.lex_state = 468, .external_lex_state = 101}, - [5472] = {.lex_state = 468, .external_lex_state = 101}, - [5473] = {.lex_state = 468, .external_lex_state = 101}, - [5474] = {.lex_state = 445, .external_lex_state = 102}, - [5475] = {.lex_state = 468, .external_lex_state = 101}, - [5476] = {.lex_state = 468, .external_lex_state = 101}, - [5477] = {.lex_state = 468, .external_lex_state = 101}, - [5478] = {.lex_state = 468, .external_lex_state = 101}, - [5479] = {.lex_state = 468, .external_lex_state = 101}, - [5480] = {.lex_state = 468, .external_lex_state = 101}, - [5481] = {.lex_state = 468, .external_lex_state = 101}, - [5482] = {.lex_state = 445, .external_lex_state = 102}, - [5483] = {.lex_state = 97, .external_lex_state = 109}, - [5484] = {.lex_state = 445, .external_lex_state = 102}, - [5485] = {.lex_state = 445, .external_lex_state = 102}, - [5486] = {.lex_state = 97, .external_lex_state = 109}, - [5487] = {.lex_state = 468, .external_lex_state = 101}, - [5488] = {.lex_state = 468, .external_lex_state = 101}, - [5489] = {.lex_state = 97, .external_lex_state = 109}, - [5490] = {.lex_state = 445, .external_lex_state = 76}, - [5491] = {.lex_state = 468, .external_lex_state = 102}, - [5492] = {.lex_state = 477, .external_lex_state = 102}, - [5493] = {.lex_state = 445, .external_lex_state = 102}, - [5494] = {.lex_state = 270, .external_lex_state = 110}, - [5495] = {.lex_state = 468, .external_lex_state = 81}, - [5496] = {.lex_state = 97, .external_lex_state = 109}, - [5497] = {.lex_state = 445, .external_lex_state = 102}, - [5498] = {.lex_state = 97, .external_lex_state = 109}, - [5499] = {.lex_state = 270, .external_lex_state = 110}, - [5500] = {.lex_state = 468, .external_lex_state = 102}, - [5501] = {.lex_state = 468, .external_lex_state = 102}, - [5502] = {.lex_state = 468, .external_lex_state = 101}, - [5503] = {.lex_state = 97, .external_lex_state = 109}, - [5504] = {.lex_state = 445, .external_lex_state = 102}, - [5505] = {.lex_state = 468, .external_lex_state = 101}, - [5506] = {.lex_state = 445, .external_lex_state = 102}, - [5507] = {.lex_state = 468, .external_lex_state = 81}, - [5508] = {.lex_state = 445, .external_lex_state = 102}, - [5509] = {.lex_state = 468, .external_lex_state = 102}, - [5510] = {.lex_state = 468, .external_lex_state = 102}, - [5511] = {.lex_state = 445, .external_lex_state = 102}, - [5512] = {.lex_state = 468, .external_lex_state = 102}, - [5513] = {.lex_state = 97, .external_lex_state = 109}, - [5514] = {.lex_state = 445, .external_lex_state = 102}, - [5515] = {.lex_state = 445, .external_lex_state = 102}, - [5516] = {.lex_state = 468, .external_lex_state = 102}, - [5517] = {.lex_state = 468, .external_lex_state = 102}, - [5518] = {.lex_state = 468, .external_lex_state = 102}, - [5519] = {.lex_state = 468, .external_lex_state = 102}, - [5520] = {.lex_state = 468, .external_lex_state = 102}, - [5521] = {.lex_state = 445, .external_lex_state = 102}, - [5522] = {.lex_state = 468, .external_lex_state = 81}, - [5523] = {.lex_state = 445, .external_lex_state = 102}, - [5524] = {.lex_state = 97, .external_lex_state = 109}, - [5525] = {.lex_state = 97, .external_lex_state = 109}, - [5526] = {.lex_state = 445, .external_lex_state = 102}, - [5527] = {.lex_state = 97, .external_lex_state = 109}, - [5528] = {.lex_state = 445, .external_lex_state = 102}, - [5529] = {.lex_state = 97, .external_lex_state = 109}, - [5530] = {.lex_state = 468, .external_lex_state = 102}, - [5531] = {.lex_state = 97, .external_lex_state = 109}, - [5532] = {.lex_state = 97, .external_lex_state = 109}, - [5533] = {.lex_state = 468, .external_lex_state = 102}, - [5534] = {.lex_state = 97, .external_lex_state = 109}, - [5535] = {.lex_state = 468, .external_lex_state = 102}, - [5536] = {.lex_state = 468, .external_lex_state = 102}, - [5537] = {.lex_state = 468, .external_lex_state = 102}, - [5538] = {.lex_state = 468, .external_lex_state = 102}, - [5539] = {.lex_state = 468, .external_lex_state = 102}, - [5540] = {.lex_state = 468, .external_lex_state = 102}, - [5541] = {.lex_state = 97, .external_lex_state = 109}, - [5542] = {.lex_state = 468, .external_lex_state = 102}, - [5543] = {.lex_state = 468, .external_lex_state = 102}, - [5544] = {.lex_state = 468, .external_lex_state = 102}, - [5545] = {.lex_state = 97, .external_lex_state = 109}, - [5546] = {.lex_state = 97, .external_lex_state = 109}, - [5547] = {.lex_state = 468, .external_lex_state = 102}, - [5548] = {.lex_state = 468, .external_lex_state = 102}, - [5549] = {.lex_state = 468, .external_lex_state = 102}, - [5550] = {.lex_state = 468, .external_lex_state = 102}, - [5551] = {.lex_state = 468, .external_lex_state = 102}, - [5552] = {.lex_state = 97, .external_lex_state = 108}, - [5553] = {.lex_state = 468, .external_lex_state = 102}, - [5554] = {.lex_state = 468, .external_lex_state = 102}, - [5555] = {.lex_state = 97, .external_lex_state = 109}, - [5556] = {.lex_state = 97, .external_lex_state = 109}, - [5557] = {.lex_state = 97, .external_lex_state = 109}, - [5558] = {.lex_state = 97, .external_lex_state = 108}, - [5559] = {.lex_state = 97, .external_lex_state = 109}, - [5560] = {.lex_state = 468, .external_lex_state = 102}, - [5561] = {.lex_state = 97, .external_lex_state = 109}, - [5562] = {.lex_state = 468, .external_lex_state = 102}, - [5563] = {.lex_state = 468, .external_lex_state = 102}, - [5564] = {.lex_state = 468, .external_lex_state = 102}, - [5565] = {.lex_state = 468, .external_lex_state = 102}, - [5566] = {.lex_state = 468, .external_lex_state = 102}, - [5567] = {.lex_state = 468, .external_lex_state = 102}, - [5568] = {.lex_state = 468, .external_lex_state = 102}, - [5569] = {.lex_state = 468, .external_lex_state = 102}, - [5570] = {.lex_state = 468, .external_lex_state = 102}, - [5571] = {.lex_state = 97, .external_lex_state = 109}, - [5572] = {.lex_state = 97, .external_lex_state = 109}, - [5573] = {.lex_state = 468, .external_lex_state = 102}, - [5574] = {.lex_state = 468, .external_lex_state = 102}, - [5575] = {.lex_state = 468, .external_lex_state = 102}, - [5576] = {.lex_state = 468, .external_lex_state = 102}, - [5577] = {.lex_state = 468, .external_lex_state = 102}, - [5578] = {.lex_state = 468, .external_lex_state = 102}, - [5579] = {.lex_state = 468, .external_lex_state = 102}, - [5580] = {.lex_state = 468, .external_lex_state = 102}, - [5581] = {.lex_state = 468, .external_lex_state = 102}, - [5582] = {.lex_state = 468, .external_lex_state = 102}, - [5583] = {.lex_state = 468, .external_lex_state = 102}, - [5584] = {.lex_state = 468, .external_lex_state = 102}, - [5585] = {.lex_state = 468, .external_lex_state = 102}, - [5586] = {.lex_state = 468, .external_lex_state = 102}, - [5587] = {.lex_state = 468, .external_lex_state = 102}, - [5588] = {.lex_state = 468, .external_lex_state = 102}, - [5589] = {.lex_state = 468, .external_lex_state = 102}, - [5590] = {.lex_state = 468, .external_lex_state = 102}, - [5591] = {.lex_state = 468, .external_lex_state = 102}, - [5592] = {.lex_state = 468, .external_lex_state = 102}, - [5593] = {.lex_state = 468, .external_lex_state = 102}, - [5594] = {.lex_state = 468, .external_lex_state = 102}, - [5595] = {.lex_state = 97, .external_lex_state = 108}, - [5596] = {.lex_state = 97, .external_lex_state = 108}, - [5597] = {.lex_state = 468, .external_lex_state = 102}, - [5598] = {.lex_state = 97, .external_lex_state = 109}, - [5599] = {.lex_state = 468, .external_lex_state = 102}, - [5600] = {.lex_state = 97, .external_lex_state = 108}, - [5601] = {.lex_state = 468, .external_lex_state = 102}, - [5602] = {.lex_state = 468, .external_lex_state = 102}, - [5603] = {.lex_state = 97, .external_lex_state = 109}, - [5604] = {.lex_state = 468, .external_lex_state = 102}, - [5605] = {.lex_state = 468, .external_lex_state = 102}, - [5606] = {.lex_state = 97, .external_lex_state = 109}, - [5607] = {.lex_state = 97, .external_lex_state = 109}, - [5608] = {.lex_state = 468, .external_lex_state = 102}, - [5609] = {.lex_state = 97, .external_lex_state = 109}, - [5610] = {.lex_state = 97, .external_lex_state = 108}, - [5611] = {.lex_state = 94, .external_lex_state = 108}, - [5612] = {.lex_state = 94, .external_lex_state = 108}, - [5613] = {.lex_state = 94, .external_lex_state = 108}, - [5614] = {.lex_state = 94, .external_lex_state = 108}, - [5615] = {.lex_state = 442, .external_lex_state = 111}, + [5404] = {.lex_state = 454, .external_lex_state = 48}, + [5405] = {.lex_state = 454, .external_lex_state = 48}, + [5406] = {.lex_state = 454, .external_lex_state = 48}, + [5407] = {.lex_state = 477, .external_lex_state = 103}, + [5408] = {.lex_state = 477, .external_lex_state = 103}, + [5409] = {.lex_state = 477, .external_lex_state = 103}, + [5410] = {.lex_state = 454, .external_lex_state = 48}, + [5411] = {.lex_state = 454, .external_lex_state = 48}, + [5412] = {.lex_state = 454, .external_lex_state = 48}, + [5413] = {.lex_state = 454, .external_lex_state = 48}, + [5414] = {.lex_state = 454, .external_lex_state = 48}, + [5415] = {.lex_state = 477, .external_lex_state = 105}, + [5416] = {.lex_state = 477, .external_lex_state = 105}, + [5417] = {.lex_state = 478, .external_lex_state = 100}, + [5418] = {.lex_state = 468, .external_lex_state = 99}, + [5419] = {.lex_state = 478, .external_lex_state = 100}, + [5420] = {.lex_state = 478, .external_lex_state = 100}, + [5421] = {.lex_state = 445, .external_lex_state = 99}, + [5422] = {.lex_state = 96, .external_lex_state = 107}, + [5423] = {.lex_state = 96, .external_lex_state = 106}, + [5424] = {.lex_state = 468, .external_lex_state = 100}, + [5425] = {.lex_state = 478, .external_lex_state = 100}, + [5426] = {.lex_state = 445, .external_lex_state = 99}, + [5427] = {.lex_state = 477, .external_lex_state = 105}, + [5428] = {.lex_state = 477, .external_lex_state = 105}, + [5429] = {.lex_state = 454, .external_lex_state = 78}, + [5430] = {.lex_state = 96, .external_lex_state = 106}, + [5431] = {.lex_state = 478, .external_lex_state = 81}, + [5432] = {.lex_state = 477, .external_lex_state = 105}, + [5433] = {.lex_state = 477, .external_lex_state = 105}, + [5434] = {.lex_state = 96, .external_lex_state = 106}, + [5435] = {.lex_state = 99, .external_lex_state = 109}, + [5436] = {.lex_state = 477, .external_lex_state = 105}, + [5437] = {.lex_state = 445, .external_lex_state = 99}, + [5438] = {.lex_state = 468, .external_lex_state = 100}, + [5439] = {.lex_state = 477, .external_lex_state = 105}, + [5440] = {.lex_state = 477, .external_lex_state = 105}, + [5441] = {.lex_state = 477, .external_lex_state = 105}, + [5442] = {.lex_state = 477, .external_lex_state = 105}, + [5443] = {.lex_state = 477, .external_lex_state = 105}, + [5444] = {.lex_state = 477, .external_lex_state = 105}, + [5445] = {.lex_state = 468, .external_lex_state = 100}, + [5446] = {.lex_state = 477, .external_lex_state = 105}, + [5447] = {.lex_state = 477, .external_lex_state = 105}, + [5448] = {.lex_state = 477, .external_lex_state = 105}, + [5449] = {.lex_state = 468, .external_lex_state = 100}, + [5450] = {.lex_state = 477, .external_lex_state = 105}, + [5451] = {.lex_state = 477, .external_lex_state = 105}, + [5452] = {.lex_state = 478, .external_lex_state = 100}, + [5453] = {.lex_state = 468, .external_lex_state = 100}, + [5454] = {.lex_state = 468, .external_lex_state = 100}, + [5455] = {.lex_state = 480, .external_lex_state = 100}, + [5456] = {.lex_state = 257, .external_lex_state = 71}, + [5457] = {.lex_state = 98, .external_lex_state = 87}, + [5458] = {.lex_state = 98, .external_lex_state = 87}, + [5459] = {.lex_state = 468, .external_lex_state = 100}, + [5460] = {.lex_state = 468, .external_lex_state = 100}, + [5461] = {.lex_state = 468, .external_lex_state = 100}, + [5462] = {.lex_state = 445, .external_lex_state = 99}, + [5463] = {.lex_state = 477, .external_lex_state = 105}, + [5464] = {.lex_state = 477, .external_lex_state = 105}, + [5465] = {.lex_state = 468, .external_lex_state = 81}, + [5466] = {.lex_state = 445, .external_lex_state = 100}, + [5467] = {.lex_state = 445, .external_lex_state = 100}, + [5468] = {.lex_state = 468, .external_lex_state = 99}, + [5469] = {.lex_state = 99, .external_lex_state = 109}, + [5470] = {.lex_state = 445, .external_lex_state = 100}, + [5471] = {.lex_state = 468, .external_lex_state = 99}, + [5472] = {.lex_state = 445, .external_lex_state = 100}, + [5473] = {.lex_state = 445, .external_lex_state = 100}, + [5474] = {.lex_state = 99, .external_lex_state = 109}, + [5475] = {.lex_state = 468, .external_lex_state = 99}, + [5476] = {.lex_state = 445, .external_lex_state = 100}, + [5477] = {.lex_state = 468, .external_lex_state = 99}, + [5478] = {.lex_state = 468, .external_lex_state = 99}, + [5479] = {.lex_state = 99, .external_lex_state = 109}, + [5480] = {.lex_state = 445, .external_lex_state = 100}, + [5481] = {.lex_state = 468, .external_lex_state = 99}, + [5482] = {.lex_state = 468, .external_lex_state = 99}, + [5483] = {.lex_state = 468, .external_lex_state = 81}, + [5484] = {.lex_state = 468, .external_lex_state = 99}, + [5485] = {.lex_state = 468, .external_lex_state = 99}, + [5486] = {.lex_state = 468, .external_lex_state = 99}, + [5487] = {.lex_state = 445, .external_lex_state = 100}, + [5488] = {.lex_state = 468, .external_lex_state = 99}, + [5489] = {.lex_state = 468, .external_lex_state = 99}, + [5490] = {.lex_state = 468, .external_lex_state = 99}, + [5491] = {.lex_state = 468, .external_lex_state = 99}, + [5492] = {.lex_state = 468, .external_lex_state = 99}, + [5493] = {.lex_state = 445, .external_lex_state = 100}, + [5494] = {.lex_state = 468, .external_lex_state = 99}, + [5495] = {.lex_state = 468, .external_lex_state = 99}, + [5496] = {.lex_state = 445, .external_lex_state = 100}, + [5497] = {.lex_state = 468, .external_lex_state = 99}, + [5498] = {.lex_state = 468, .external_lex_state = 99}, + [5499] = {.lex_state = 445, .external_lex_state = 100}, + [5500] = {.lex_state = 445, .external_lex_state = 100}, + [5501] = {.lex_state = 445, .external_lex_state = 100}, + [5502] = {.lex_state = 468, .external_lex_state = 100}, + [5503] = {.lex_state = 270, .external_lex_state = 110}, + [5504] = {.lex_state = 445, .external_lex_state = 100}, + [5505] = {.lex_state = 468, .external_lex_state = 99}, + [5506] = {.lex_state = 468, .external_lex_state = 99}, + [5507] = {.lex_state = 445, .external_lex_state = 100}, + [5508] = {.lex_state = 468, .external_lex_state = 99}, + [5509] = {.lex_state = 270, .external_lex_state = 110}, + [5510] = {.lex_state = 445, .external_lex_state = 100}, + [5511] = {.lex_state = 468, .external_lex_state = 100}, + [5512] = {.lex_state = 99, .external_lex_state = 109}, + [5513] = {.lex_state = 478, .external_lex_state = 100}, + [5514] = {.lex_state = 99, .external_lex_state = 109}, + [5515] = {.lex_state = 468, .external_lex_state = 100}, + [5516] = {.lex_state = 468, .external_lex_state = 81}, + [5517] = {.lex_state = 99, .external_lex_state = 109}, + [5518] = {.lex_state = 99, .external_lex_state = 109}, + [5519] = {.lex_state = 468, .external_lex_state = 99}, + [5520] = {.lex_state = 468, .external_lex_state = 99}, + [5521] = {.lex_state = 99, .external_lex_state = 109}, + [5522] = {.lex_state = 99, .external_lex_state = 109}, + [5523] = {.lex_state = 445, .external_lex_state = 100}, + [5524] = {.lex_state = 445, .external_lex_state = 76}, + [5525] = {.lex_state = 99, .external_lex_state = 109}, + [5526] = {.lex_state = 99, .external_lex_state = 109}, + [5527] = {.lex_state = 445, .external_lex_state = 100}, + [5528] = {.lex_state = 468, .external_lex_state = 99}, + [5529] = {.lex_state = 99, .external_lex_state = 107}, + [5530] = {.lex_state = 99, .external_lex_state = 109}, + [5531] = {.lex_state = 99, .external_lex_state = 109}, + [5532] = {.lex_state = 468, .external_lex_state = 100}, + [5533] = {.lex_state = 99, .external_lex_state = 109}, + [5534] = {.lex_state = 99, .external_lex_state = 107}, + [5535] = {.lex_state = 468, .external_lex_state = 100}, + [5536] = {.lex_state = 468, .external_lex_state = 100}, + [5537] = {.lex_state = 99, .external_lex_state = 109}, + [5538] = {.lex_state = 99, .external_lex_state = 109}, + [5539] = {.lex_state = 468, .external_lex_state = 100}, + [5540] = {.lex_state = 468, .external_lex_state = 100}, + [5541] = {.lex_state = 468, .external_lex_state = 100}, + [5542] = {.lex_state = 468, .external_lex_state = 100}, + [5543] = {.lex_state = 468, .external_lex_state = 100}, + [5544] = {.lex_state = 99, .external_lex_state = 109}, + [5545] = {.lex_state = 468, .external_lex_state = 100}, + [5546] = {.lex_state = 99, .external_lex_state = 109}, + [5547] = {.lex_state = 99, .external_lex_state = 109}, + [5548] = {.lex_state = 468, .external_lex_state = 100}, + [5549] = {.lex_state = 468, .external_lex_state = 100}, + [5550] = {.lex_state = 468, .external_lex_state = 100}, + [5551] = {.lex_state = 468, .external_lex_state = 100}, + [5552] = {.lex_state = 468, .external_lex_state = 100}, + [5553] = {.lex_state = 99, .external_lex_state = 109}, + [5554] = {.lex_state = 468, .external_lex_state = 100}, + [5555] = {.lex_state = 468, .external_lex_state = 100}, + [5556] = {.lex_state = 468, .external_lex_state = 100}, + [5557] = {.lex_state = 468, .external_lex_state = 100}, + [5558] = {.lex_state = 468, .external_lex_state = 100}, + [5559] = {.lex_state = 468, .external_lex_state = 100}, + [5560] = {.lex_state = 468, .external_lex_state = 100}, + [5561] = {.lex_state = 468, .external_lex_state = 100}, + [5562] = {.lex_state = 468, .external_lex_state = 100}, + [5563] = {.lex_state = 468, .external_lex_state = 100}, + [5564] = {.lex_state = 468, .external_lex_state = 100}, + [5565] = {.lex_state = 468, .external_lex_state = 100}, + [5566] = {.lex_state = 468, .external_lex_state = 100}, + [5567] = {.lex_state = 468, .external_lex_state = 100}, + [5568] = {.lex_state = 468, .external_lex_state = 100}, + [5569] = {.lex_state = 468, .external_lex_state = 100}, + [5570] = {.lex_state = 468, .external_lex_state = 100}, + [5571] = {.lex_state = 99, .external_lex_state = 109}, + [5572] = {.lex_state = 99, .external_lex_state = 107}, + [5573] = {.lex_state = 468, .external_lex_state = 100}, + [5574] = {.lex_state = 468, .external_lex_state = 100}, + [5575] = {.lex_state = 99, .external_lex_state = 109}, + [5576] = {.lex_state = 468, .external_lex_state = 100}, + [5577] = {.lex_state = 99, .external_lex_state = 109}, + [5578] = {.lex_state = 468, .external_lex_state = 100}, + [5579] = {.lex_state = 468, .external_lex_state = 100}, + [5580] = {.lex_state = 468, .external_lex_state = 100}, + [5581] = {.lex_state = 468, .external_lex_state = 100}, + [5582] = {.lex_state = 468, .external_lex_state = 100}, + [5583] = {.lex_state = 99, .external_lex_state = 107}, + [5584] = {.lex_state = 468, .external_lex_state = 100}, + [5585] = {.lex_state = 468, .external_lex_state = 100}, + [5586] = {.lex_state = 99, .external_lex_state = 109}, + [5587] = {.lex_state = 468, .external_lex_state = 100}, + [5588] = {.lex_state = 468, .external_lex_state = 100}, + [5589] = {.lex_state = 468, .external_lex_state = 100}, + [5590] = {.lex_state = 99, .external_lex_state = 109}, + [5591] = {.lex_state = 468, .external_lex_state = 100}, + [5592] = {.lex_state = 468, .external_lex_state = 100}, + [5593] = {.lex_state = 468, .external_lex_state = 100}, + [5594] = {.lex_state = 99, .external_lex_state = 109}, + [5595] = {.lex_state = 99, .external_lex_state = 109}, + [5596] = {.lex_state = 468, .external_lex_state = 100}, + [5597] = {.lex_state = 468, .external_lex_state = 100}, + [5598] = {.lex_state = 99, .external_lex_state = 107}, + [5599] = {.lex_state = 468, .external_lex_state = 100}, + [5600] = {.lex_state = 468, .external_lex_state = 100}, + [5601] = {.lex_state = 468, .external_lex_state = 100}, + [5602] = {.lex_state = 468, .external_lex_state = 100}, + [5603] = {.lex_state = 99, .external_lex_state = 109}, + [5604] = {.lex_state = 468, .external_lex_state = 100}, + [5605] = {.lex_state = 468, .external_lex_state = 100}, + [5606] = {.lex_state = 99, .external_lex_state = 109}, + [5607] = {.lex_state = 99, .external_lex_state = 109}, + [5608] = {.lex_state = 468, .external_lex_state = 100}, + [5609] = {.lex_state = 468, .external_lex_state = 100}, + [5610] = {.lex_state = 99, .external_lex_state = 107}, + [5611] = {.lex_state = 96, .external_lex_state = 107}, + [5612] = {.lex_state = 442, .external_lex_state = 111}, + [5613] = {.lex_state = 442, .external_lex_state = 111}, + [5614] = {.lex_state = 96, .external_lex_state = 107}, + [5615] = {.lex_state = 449, .external_lex_state = 111}, [5616] = {.lex_state = 449, .external_lex_state = 111}, - [5617] = {.lex_state = 442, .external_lex_state = 111}, - [5618] = {.lex_state = 449, .external_lex_state = 111}, + [5617] = {.lex_state = 96, .external_lex_state = 107}, + [5618] = {.lex_state = 96, .external_lex_state = 107}, [5619] = {.lex_state = 474}, [5620] = {.lex_state = 474}, [5621] = {.lex_state = 474}, @@ -26884,110 +26891,110 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [5771] = {.lex_state = 474}, [5772] = {.lex_state = 474}, [5773] = {.lex_state = 474}, - [5774] = {.lex_state = 443, .external_lex_state = 111}, + [5774] = {.lex_state = 445, .external_lex_state = 112}, [5775] = {.lex_state = 443, .external_lex_state = 111}, - [5776] = {.lex_state = 443, .external_lex_state = 111}, + [5776] = {.lex_state = 444, .external_lex_state = 111}, [5777] = {.lex_state = 444, .external_lex_state = 111}, - [5778] = {.lex_state = 445, .external_lex_state = 112}, - [5779] = {.lex_state = 443, .external_lex_state = 111}, + [5778] = {.lex_state = 443, .external_lex_state = 111}, + [5779] = {.lex_state = 444, .external_lex_state = 111}, [5780] = {.lex_state = 443, .external_lex_state = 111}, - [5781] = {.lex_state = 444, .external_lex_state = 111}, + [5781] = {.lex_state = 443, .external_lex_state = 111}, [5782] = {.lex_state = 443, .external_lex_state = 111}, [5783] = {.lex_state = 443, .external_lex_state = 111}, - [5784] = {.lex_state = 443, .external_lex_state = 111}, - [5785] = {.lex_state = 445, .external_lex_state = 112}, + [5784] = {.lex_state = 444, .external_lex_state = 111}, + [5785] = {.lex_state = 443, .external_lex_state = 111}, [5786] = {.lex_state = 443, .external_lex_state = 111}, [5787] = {.lex_state = 443, .external_lex_state = 111}, - [5788] = {.lex_state = 444, .external_lex_state = 111}, - [5789] = {.lex_state = 443, .external_lex_state = 111}, + [5788] = {.lex_state = 443, .external_lex_state = 111}, + [5789] = {.lex_state = 444, .external_lex_state = 111}, [5790] = {.lex_state = 443, .external_lex_state = 111}, [5791] = {.lex_state = 443, .external_lex_state = 111}, [5792] = {.lex_state = 443, .external_lex_state = 111}, - [5793] = {.lex_state = 444, .external_lex_state = 111}, - [5794] = {.lex_state = 443, .external_lex_state = 111}, - [5795] = {.lex_state = 443, .external_lex_state = 111}, + [5793] = {.lex_state = 443, .external_lex_state = 111}, + [5794] = {.lex_state = 444, .external_lex_state = 111}, + [5795] = {.lex_state = 445, .external_lex_state = 112}, [5796] = {.lex_state = 443, .external_lex_state = 111}, - [5797] = {.lex_state = 445, .external_lex_state = 112}, + [5797] = {.lex_state = 444, .external_lex_state = 111}, [5798] = {.lex_state = 443, .external_lex_state = 111}, - [5799] = {.lex_state = 444, .external_lex_state = 111}, - [5800] = {.lex_state = 443, .external_lex_state = 111}, - [5801] = {.lex_state = 444, .external_lex_state = 111}, + [5799] = {.lex_state = 443, .external_lex_state = 111}, + [5800] = {.lex_state = 444, .external_lex_state = 111}, + [5801] = {.lex_state = 443, .external_lex_state = 111}, [5802] = {.lex_state = 443, .external_lex_state = 111}, [5803] = {.lex_state = 443, .external_lex_state = 111}, - [5804] = {.lex_state = 444, .external_lex_state = 111}, + [5804] = {.lex_state = 443, .external_lex_state = 111}, [5805] = {.lex_state = 443, .external_lex_state = 111}, [5806] = {.lex_state = 443, .external_lex_state = 111}, [5807] = {.lex_state = 444, .external_lex_state = 111}, - [5808] = {.lex_state = 443, .external_lex_state = 111}, + [5808] = {.lex_state = 444, .external_lex_state = 111}, [5809] = {.lex_state = 443, .external_lex_state = 111}, [5810] = {.lex_state = 443, .external_lex_state = 111}, [5811] = {.lex_state = 443, .external_lex_state = 111}, - [5812] = {.lex_state = 444, .external_lex_state = 111}, + [5812] = {.lex_state = 443, .external_lex_state = 111}, [5813] = {.lex_state = 443, .external_lex_state = 111}, [5814] = {.lex_state = 443, .external_lex_state = 111}, [5815] = {.lex_state = 444, .external_lex_state = 111}, [5816] = {.lex_state = 443, .external_lex_state = 111}, [5817] = {.lex_state = 443, .external_lex_state = 111}, - [5818] = {.lex_state = 443, .external_lex_state = 111}, + [5818] = {.lex_state = 444, .external_lex_state = 111}, [5819] = {.lex_state = 443, .external_lex_state = 111}, - [5820] = {.lex_state = 444, .external_lex_state = 111}, + [5820] = {.lex_state = 443, .external_lex_state = 111}, [5821] = {.lex_state = 443, .external_lex_state = 111}, [5822] = {.lex_state = 443, .external_lex_state = 111}, - [5823] = {.lex_state = 443, .external_lex_state = 111}, - [5824] = {.lex_state = 443, .external_lex_state = 111}, + [5823] = {.lex_state = 444, .external_lex_state = 111}, + [5824] = {.lex_state = 444, .external_lex_state = 111}, [5825] = {.lex_state = 443, .external_lex_state = 111}, - [5826] = {.lex_state = 444, .external_lex_state = 111}, + [5826] = {.lex_state = 443, .external_lex_state = 111}, [5827] = {.lex_state = 443, .external_lex_state = 111}, [5828] = {.lex_state = 443, .external_lex_state = 111}, [5829] = {.lex_state = 443, .external_lex_state = 111}, - [5830] = {.lex_state = 444, .external_lex_state = 111}, + [5830] = {.lex_state = 443, .external_lex_state = 111}, [5831] = {.lex_state = 444, .external_lex_state = 111}, - [5832] = {.lex_state = 443, .external_lex_state = 111}, + [5832] = {.lex_state = 444, .external_lex_state = 111}, [5833] = {.lex_state = 443, .external_lex_state = 111}, [5834] = {.lex_state = 443, .external_lex_state = 111}, [5835] = {.lex_state = 443, .external_lex_state = 111}, [5836] = {.lex_state = 444, .external_lex_state = 111}, - [5837] = {.lex_state = 443, .external_lex_state = 111}, + [5837] = {.lex_state = 444, .external_lex_state = 111}, [5838] = {.lex_state = 443, .external_lex_state = 111}, - [5839] = {.lex_state = 444, .external_lex_state = 111}, + [5839] = {.lex_state = 443, .external_lex_state = 111}, [5840] = {.lex_state = 443, .external_lex_state = 111}, - [5841] = {.lex_state = 444, .external_lex_state = 111}, - [5842] = {.lex_state = 444, .external_lex_state = 111}, - [5843] = {.lex_state = 443, .external_lex_state = 111}, + [5841] = {.lex_state = 443, .external_lex_state = 111}, + [5842] = {.lex_state = 443, .external_lex_state = 111}, + [5843] = {.lex_state = 444, .external_lex_state = 111}, [5844] = {.lex_state = 443, .external_lex_state = 111}, [5845] = {.lex_state = 443, .external_lex_state = 111}, - [5846] = {.lex_state = 444, .external_lex_state = 111}, - [5847] = {.lex_state = 443, .external_lex_state = 111}, + [5846] = {.lex_state = 443, .external_lex_state = 111}, + [5847] = {.lex_state = 444, .external_lex_state = 111}, [5848] = {.lex_state = 443, .external_lex_state = 111}, - [5849] = {.lex_state = 443, .external_lex_state = 111}, - [5850] = {.lex_state = 444, .external_lex_state = 111}, - [5851] = {.lex_state = 444, .external_lex_state = 111}, + [5849] = {.lex_state = 444, .external_lex_state = 111}, + [5850] = {.lex_state = 443, .external_lex_state = 111}, + [5851] = {.lex_state = 443, .external_lex_state = 111}, [5852] = {.lex_state = 443, .external_lex_state = 111}, [5853] = {.lex_state = 443, .external_lex_state = 111}, - [5854] = {.lex_state = 445, .external_lex_state = 112}, + [5854] = {.lex_state = 443, .external_lex_state = 111}, [5855] = {.lex_state = 443, .external_lex_state = 111}, - [5856] = {.lex_state = 443, .external_lex_state = 111}, - [5857] = {.lex_state = 443, .external_lex_state = 111}, - [5858] = {.lex_state = 444, .external_lex_state = 111}, + [5856] = {.lex_state = 444, .external_lex_state = 111}, + [5857] = {.lex_state = 444, .external_lex_state = 111}, + [5858] = {.lex_state = 443, .external_lex_state = 111}, [5859] = {.lex_state = 444, .external_lex_state = 111}, [5860] = {.lex_state = 443, .external_lex_state = 111}, [5861] = {.lex_state = 443, .external_lex_state = 111}, [5862] = {.lex_state = 443, .external_lex_state = 111}, - [5863] = {.lex_state = 443, .external_lex_state = 111}, + [5863] = {.lex_state = 444, .external_lex_state = 111}, [5864] = {.lex_state = 443, .external_lex_state = 111}, - [5865] = {.lex_state = 443, .external_lex_state = 111}, - [5866] = {.lex_state = 444, .external_lex_state = 111}, - [5867] = {.lex_state = 444, .external_lex_state = 111}, + [5865] = {.lex_state = 444, .external_lex_state = 111}, + [5866] = {.lex_state = 443, .external_lex_state = 111}, + [5867] = {.lex_state = 443, .external_lex_state = 111}, [5868] = {.lex_state = 443, .external_lex_state = 111}, [5869] = {.lex_state = 443, .external_lex_state = 111}, - [5870] = {.lex_state = 443, .external_lex_state = 111}, + [5870] = {.lex_state = 444, .external_lex_state = 111}, [5871] = {.lex_state = 443, .external_lex_state = 111}, [5872] = {.lex_state = 443, .external_lex_state = 111}, [5873] = {.lex_state = 444, .external_lex_state = 111}, - [5874] = {.lex_state = 443, .external_lex_state = 111}, + [5874] = {.lex_state = 444, .external_lex_state = 111}, [5875] = {.lex_state = 443, .external_lex_state = 111}, [5876] = {.lex_state = 443, .external_lex_state = 111}, - [5877] = {.lex_state = 444, .external_lex_state = 111}, + [5877] = {.lex_state = 443, .external_lex_state = 111}, [5878] = {.lex_state = 443, .external_lex_state = 111}, [5879] = {.lex_state = 443, .external_lex_state = 111}, [5880] = {.lex_state = 444, .external_lex_state = 111}, @@ -26995,137 +27002,137 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [5882] = {.lex_state = 443, .external_lex_state = 111}, [5883] = {.lex_state = 444, .external_lex_state = 111}, [5884] = {.lex_state = 443, .external_lex_state = 111}, - [5885] = {.lex_state = 443, .external_lex_state = 111}, + [5885] = {.lex_state = 444, .external_lex_state = 111}, [5886] = {.lex_state = 443, .external_lex_state = 111}, - [5887] = {.lex_state = 444, .external_lex_state = 111}, + [5887] = {.lex_state = 443, .external_lex_state = 111}, [5888] = {.lex_state = 443, .external_lex_state = 111}, - [5889] = {.lex_state = 443, .external_lex_state = 111}, - [5890] = {.lex_state = 443, .external_lex_state = 111}, + [5889] = {.lex_state = 444, .external_lex_state = 111}, + [5890] = {.lex_state = 444, .external_lex_state = 111}, [5891] = {.lex_state = 443, .external_lex_state = 111}, [5892] = {.lex_state = 443, .external_lex_state = 111}, - [5893] = {.lex_state = 444, .external_lex_state = 111}, + [5893] = {.lex_state = 443, .external_lex_state = 111}, [5894] = {.lex_state = 443, .external_lex_state = 111}, - [5895] = {.lex_state = 444, .external_lex_state = 111}, - [5896] = {.lex_state = 443, .external_lex_state = 111}, + [5895] = {.lex_state = 443, .external_lex_state = 111}, + [5896] = {.lex_state = 444, .external_lex_state = 111}, [5897] = {.lex_state = 443, .external_lex_state = 111}, - [5898] = {.lex_state = 443, .external_lex_state = 111}, + [5898] = {.lex_state = 444, .external_lex_state = 111}, [5899] = {.lex_state = 443, .external_lex_state = 111}, - [5900] = {.lex_state = 444, .external_lex_state = 111}, + [5900] = {.lex_state = 443, .external_lex_state = 111}, [5901] = {.lex_state = 444, .external_lex_state = 111}, - [5902] = {.lex_state = 443, .external_lex_state = 111}, - [5903] = {.lex_state = 445, .external_lex_state = 112}, - [5904] = {.lex_state = 443, .external_lex_state = 111}, - [5905] = {.lex_state = 443, .external_lex_state = 111}, - [5906] = {.lex_state = 444, .external_lex_state = 111}, + [5902] = {.lex_state = 444, .external_lex_state = 111}, + [5903] = {.lex_state = 443, .external_lex_state = 111}, + [5904] = {.lex_state = 444, .external_lex_state = 111}, + [5905] = {.lex_state = 444, .external_lex_state = 111}, + [5906] = {.lex_state = 443, .external_lex_state = 111}, [5907] = {.lex_state = 443, .external_lex_state = 111}, [5908] = {.lex_state = 443, .external_lex_state = 111}, - [5909] = {.lex_state = 443, .external_lex_state = 111}, - [5910] = {.lex_state = 443, .external_lex_state = 111}, + [5909] = {.lex_state = 444, .external_lex_state = 111}, + [5910] = {.lex_state = 445, .external_lex_state = 112}, [5911] = {.lex_state = 443, .external_lex_state = 111}, - [5912] = {.lex_state = 444, .external_lex_state = 111}, + [5912] = {.lex_state = 443, .external_lex_state = 111}, [5913] = {.lex_state = 443, .external_lex_state = 111}, - [5914] = {.lex_state = 443, .external_lex_state = 111}, - [5915] = {.lex_state = 443, .external_lex_state = 111}, + [5914] = {.lex_state = 444, .external_lex_state = 111}, + [5915] = {.lex_state = 444, .external_lex_state = 111}, [5916] = {.lex_state = 443, .external_lex_state = 111}, - [5917] = {.lex_state = 444, .external_lex_state = 111}, + [5917] = {.lex_state = 443, .external_lex_state = 111}, [5918] = {.lex_state = 443, .external_lex_state = 111}, - [5919] = {.lex_state = 443, .external_lex_state = 111}, - [5920] = {.lex_state = 443, .external_lex_state = 111}, - [5921] = {.lex_state = 444, .external_lex_state = 111}, + [5919] = {.lex_state = 444, .external_lex_state = 111}, + [5920] = {.lex_state = 445, .external_lex_state = 112}, + [5921] = {.lex_state = 443, .external_lex_state = 111}, [5922] = {.lex_state = 443, .external_lex_state = 111}, [5923] = {.lex_state = 443, .external_lex_state = 111}, - [5924] = {.lex_state = 443, .external_lex_state = 111}, + [5924] = {.lex_state = 444, .external_lex_state = 111}, [5925] = {.lex_state = 444, .external_lex_state = 111}, [5926] = {.lex_state = 443, .external_lex_state = 111}, - [5927] = {.lex_state = 443, .external_lex_state = 111}, - [5928] = {.lex_state = 444, .external_lex_state = 111}, - [5929] = {.lex_state = 444, .external_lex_state = 111}, + [5927] = {.lex_state = 444, .external_lex_state = 111}, + [5928] = {.lex_state = 443, .external_lex_state = 111}, + [5929] = {.lex_state = 443, .external_lex_state = 111}, [5930] = {.lex_state = 444, .external_lex_state = 111}, [5931] = {.lex_state = 443, .external_lex_state = 111}, - [5932] = {.lex_state = 443, .external_lex_state = 111}, - [5933] = {.lex_state = 445, .external_lex_state = 112}, + [5932] = {.lex_state = 444, .external_lex_state = 111}, + [5933] = {.lex_state = 443, .external_lex_state = 111}, [5934] = {.lex_state = 443, .external_lex_state = 111}, - [5935] = {.lex_state = 444, .external_lex_state = 111}, - [5936] = {.lex_state = 443, .external_lex_state = 111}, + [5935] = {.lex_state = 443, .external_lex_state = 111}, + [5936] = {.lex_state = 444, .external_lex_state = 111}, [5937] = {.lex_state = 443, .external_lex_state = 111}, [5938] = {.lex_state = 443, .external_lex_state = 111}, [5939] = {.lex_state = 443, .external_lex_state = 111}, - [5940] = {.lex_state = 444, .external_lex_state = 111}, - [5941] = {.lex_state = 443, .external_lex_state = 111}, + [5940] = {.lex_state = 443, .external_lex_state = 111}, + [5941] = {.lex_state = 444, .external_lex_state = 111}, [5942] = {.lex_state = 443, .external_lex_state = 111}, - [5943] = {.lex_state = 443, .external_lex_state = 111}, + [5943] = {.lex_state = 445, .external_lex_state = 112}, [5944] = {.lex_state = 444, .external_lex_state = 111}, [5945] = {.lex_state = 443, .external_lex_state = 111}, [5946] = {.lex_state = 443, .external_lex_state = 111}, [5947] = {.lex_state = 443, .external_lex_state = 111}, [5948] = {.lex_state = 444, .external_lex_state = 111}, - [5949] = {.lex_state = 444, .external_lex_state = 111}, - [5950] = {.lex_state = 443, .external_lex_state = 111}, - [5951] = {.lex_state = 444, .external_lex_state = 111}, + [5949] = {.lex_state = 443, .external_lex_state = 111}, + [5950] = {.lex_state = 444, .external_lex_state = 111}, + [5951] = {.lex_state = 445, .external_lex_state = 112}, [5952] = {.lex_state = 443, .external_lex_state = 111}, - [5953] = {.lex_state = 443, .external_lex_state = 111}, - [5954] = {.lex_state = 443, .external_lex_state = 111}, + [5953] = {.lex_state = 444, .external_lex_state = 111}, + [5954] = {.lex_state = 444, .external_lex_state = 111}, [5955] = {.lex_state = 443, .external_lex_state = 111}, - [5956] = {.lex_state = 444, .external_lex_state = 111}, - [5957] = {.lex_state = 444, .external_lex_state = 111}, - [5958] = {.lex_state = 443, .external_lex_state = 111}, + [5956] = {.lex_state = 443, .external_lex_state = 111}, + [5957] = {.lex_state = 443, .external_lex_state = 111}, + [5958] = {.lex_state = 444, .external_lex_state = 111}, [5959] = {.lex_state = 443, .external_lex_state = 111}, [5960] = {.lex_state = 443, .external_lex_state = 111}, [5961] = {.lex_state = 443, .external_lex_state = 111}, - [5962] = {.lex_state = 444, .external_lex_state = 111}, + [5962] = {.lex_state = 443, .external_lex_state = 111}, [5963] = {.lex_state = 443, .external_lex_state = 111}, - [5964] = {.lex_state = 445, .external_lex_state = 112}, + [5964] = {.lex_state = 444, .external_lex_state = 111}, [5965] = {.lex_state = 443, .external_lex_state = 111}, [5966] = {.lex_state = 443, .external_lex_state = 111}, - [5967] = {.lex_state = 443, .external_lex_state = 111}, - [5968] = {.lex_state = 444, .external_lex_state = 111}, + [5967] = {.lex_state = 444, .external_lex_state = 111}, + [5968] = {.lex_state = 443, .external_lex_state = 111}, [5969] = {.lex_state = 443, .external_lex_state = 111}, - [5970] = {.lex_state = 444, .external_lex_state = 111}, + [5970] = {.lex_state = 443, .external_lex_state = 111}, [5971] = {.lex_state = 443, .external_lex_state = 111}, [5972] = {.lex_state = 444, .external_lex_state = 111}, - [5973] = {.lex_state = 444, .external_lex_state = 111}, + [5973] = {.lex_state = 445, .external_lex_state = 112}, [5974] = {.lex_state = 443, .external_lex_state = 111}, - [5975] = {.lex_state = 444, .external_lex_state = 111}, - [5976] = {.lex_state = 444, .external_lex_state = 111}, + [5975] = {.lex_state = 443, .external_lex_state = 111}, + [5976] = {.lex_state = 443, .external_lex_state = 111}, [5977] = {.lex_state = 443, .external_lex_state = 111}, [5978] = {.lex_state = 443, .external_lex_state = 111}, [5979] = {.lex_state = 443, .external_lex_state = 111}, - [5980] = {.lex_state = 445, .external_lex_state = 112}, + [5980] = {.lex_state = 444, .external_lex_state = 111}, [5981] = {.lex_state = 443, .external_lex_state = 111}, [5982] = {.lex_state = 443, .external_lex_state = 111}, [5983] = {.lex_state = 443, .external_lex_state = 111}, [5984] = {.lex_state = 443, .external_lex_state = 111}, [5985] = {.lex_state = 444, .external_lex_state = 111}, - [5986] = {.lex_state = 444, .external_lex_state = 111}, + [5986] = {.lex_state = 443, .external_lex_state = 111}, [5987] = {.lex_state = 443, .external_lex_state = 111}, [5988] = {.lex_state = 444, .external_lex_state = 111}, [5989] = {.lex_state = 443, .external_lex_state = 111}, - [5990] = {.lex_state = 444, .external_lex_state = 111}, + [5990] = {.lex_state = 443, .external_lex_state = 111}, [5991] = {.lex_state = 443, .external_lex_state = 111}, - [5992] = {.lex_state = 443, .external_lex_state = 111}, + [5992] = {.lex_state = 444, .external_lex_state = 111}, [5993] = {.lex_state = 443, .external_lex_state = 111}, - [5994] = {.lex_state = 444, .external_lex_state = 111}, - [5995] = {.lex_state = 444, .external_lex_state = 111}, - [5996] = {.lex_state = 443, .external_lex_state = 111}, + [5994] = {.lex_state = 443, .external_lex_state = 111}, + [5995] = {.lex_state = 443, .external_lex_state = 111}, + [5996] = {.lex_state = 445, .external_lex_state = 112}, [5997] = {.lex_state = 443, .external_lex_state = 111}, - [5998] = {.lex_state = 444, .external_lex_state = 111}, + [5998] = {.lex_state = 443, .external_lex_state = 111}, [5999] = {.lex_state = 443, .external_lex_state = 111}, [6000] = {.lex_state = 468, .external_lex_state = 112}, [6001] = {.lex_state = 468, .external_lex_state = 112}, [6002] = {.lex_state = 468, .external_lex_state = 112}, [6003] = {.lex_state = 468, .external_lex_state = 112}, - [6004] = {.lex_state = 94, .external_lex_state = 106}, - [6005] = {.lex_state = 94, .external_lex_state = 106}, - [6006] = {.lex_state = 468, .external_lex_state = 112}, - [6007] = {.lex_state = 468, .external_lex_state = 112}, + [6004] = {.lex_state = 468, .external_lex_state = 112}, + [6005] = {.lex_state = 468, .external_lex_state = 112}, + [6006] = {.lex_state = 96, .external_lex_state = 106}, + [6007] = {.lex_state = 96, .external_lex_state = 106}, [6008] = {.lex_state = 468, .external_lex_state = 112}, [6009] = {.lex_state = 468, .external_lex_state = 112}, - [6010] = {.lex_state = 446, .external_lex_state = 111}, - [6011] = {.lex_state = 468, .external_lex_state = 112}, + [6010] = {.lex_state = 468, .external_lex_state = 112}, + [6011] = {.lex_state = 446, .external_lex_state = 111}, [6012] = {.lex_state = 479}, - [6013] = {.lex_state = 427, .external_lex_state = 113}, - [6014] = {.lex_state = 479}, - [6015] = {.lex_state = 469, .external_lex_state = 114}, + [6013] = {.lex_state = 479}, + [6014] = {.lex_state = 447, .external_lex_state = 111}, + [6015] = {.lex_state = 479}, [6016] = {.lex_state = 447, .external_lex_state = 111}, [6017] = {.lex_state = 479}, [6018] = {.lex_state = 479}, @@ -27133,1417 +27140,1417 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [6020] = {.lex_state = 479}, [6021] = {.lex_state = 479}, [6022] = {.lex_state = 479}, - [6023] = {.lex_state = 427, .external_lex_state = 113}, - [6024] = {.lex_state = 447, .external_lex_state = 111}, + [6023] = {.lex_state = 479}, + [6024] = {.lex_state = 479}, [6025] = {.lex_state = 479}, [6026] = {.lex_state = 479}, [6027] = {.lex_state = 479}, - [6028] = {.lex_state = 447, .external_lex_state = 111}, - [6029] = {.lex_state = 479}, - [6030] = {.lex_state = 447, .external_lex_state = 111}, - [6031] = {.lex_state = 427, .external_lex_state = 113}, - [6032] = {.lex_state = 447, .external_lex_state = 111}, + [6028] = {.lex_state = 479}, + [6029] = {.lex_state = 447, .external_lex_state = 111}, + [6030] = {.lex_state = 479}, + [6031] = {.lex_state = 479}, + [6032] = {.lex_state = 479}, [6033] = {.lex_state = 479}, - [6034] = {.lex_state = 479}, + [6034] = {.lex_state = 447, .external_lex_state = 111}, [6035] = {.lex_state = 479}, - [6036] = {.lex_state = 479}, + [6036] = {.lex_state = 427, .external_lex_state = 113}, [6037] = {.lex_state = 479}, - [6038] = {.lex_state = 479}, + [6038] = {.lex_state = 447, .external_lex_state = 111}, [6039] = {.lex_state = 479}, [6040] = {.lex_state = 479}, [6041] = {.lex_state = 447, .external_lex_state = 111}, - [6042] = {.lex_state = 479}, - [6043] = {.lex_state = 479}, + [6042] = {.lex_state = 447, .external_lex_state = 111}, + [6043] = {.lex_state = 469, .external_lex_state = 114}, [6044] = {.lex_state = 479}, - [6045] = {.lex_state = 447, .external_lex_state = 111}, + [6045] = {.lex_state = 427, .external_lex_state = 113}, [6046] = {.lex_state = 479}, - [6047] = {.lex_state = 479}, + [6047] = {.lex_state = 427, .external_lex_state = 113}, [6048] = {.lex_state = 479}, [6049] = {.lex_state = 479}, - [6050] = {.lex_state = 447, .external_lex_state = 111}, - [6051] = {.lex_state = 479}, - [6052] = {.lex_state = 479, .external_lex_state = 96}, - [6053] = {.lex_state = 479, .external_lex_state = 96}, - [6054] = {.lex_state = 479, .external_lex_state = 96}, - [6055] = {.lex_state = 474, .external_lex_state = 115}, + [6050] = {.lex_state = 479}, + [6051] = {.lex_state = 447, .external_lex_state = 111}, + [6052] = {.lex_state = 479, .external_lex_state = 97}, + [6053] = {.lex_state = 479, .external_lex_state = 97}, + [6054] = {.lex_state = 479, .external_lex_state = 97}, + [6055] = {.lex_state = 479, .external_lex_state = 97}, [6056] = {.lex_state = 474, .external_lex_state = 115}, - [6057] = {.lex_state = 479, .external_lex_state = 96}, - [6058] = {.lex_state = 479, .external_lex_state = 96}, - [6059] = {.lex_state = 479, .external_lex_state = 96}, - [6060] = {.lex_state = 474, .external_lex_state = 115}, - [6061] = {.lex_state = 479, .external_lex_state = 96}, - [6062] = {.lex_state = 479, .external_lex_state = 96}, - [6063] = {.lex_state = 474, .external_lex_state = 115}, - [6064] = {.lex_state = 479, .external_lex_state = 96}, - [6065] = {.lex_state = 479, .external_lex_state = 96}, - [6066] = {.lex_state = 479, .external_lex_state = 96}, - [6067] = {.lex_state = 479, .external_lex_state = 96}, - [6068] = {.lex_state = 479, .external_lex_state = 96}, - [6069] = {.lex_state = 474, .external_lex_state = 115}, + [6057] = {.lex_state = 474, .external_lex_state = 115}, + [6058] = {.lex_state = 479, .external_lex_state = 97}, + [6059] = {.lex_state = 479, .external_lex_state = 97}, + [6060] = {.lex_state = 479, .external_lex_state = 97}, + [6061] = {.lex_state = 479, .external_lex_state = 97}, + [6062] = {.lex_state = 479, .external_lex_state = 97}, + [6063] = {.lex_state = 479, .external_lex_state = 97}, + [6064] = {.lex_state = 474, .external_lex_state = 115}, + [6065] = {.lex_state = 479, .external_lex_state = 97}, + [6066] = {.lex_state = 479, .external_lex_state = 97}, + [6067] = {.lex_state = 479, .external_lex_state = 97}, + [6068] = {.lex_state = 479, .external_lex_state = 97}, + [6069] = {.lex_state = 481}, [6070] = {.lex_state = 474, .external_lex_state = 115}, - [6071] = {.lex_state = 479, .external_lex_state = 96}, - [6072] = {.lex_state = 479, .external_lex_state = 96}, - [6073] = {.lex_state = 479, .external_lex_state = 96}, - [6074] = {.lex_state = 479, .external_lex_state = 96}, - [6075] = {.lex_state = 474, .external_lex_state = 115}, - [6076] = {.lex_state = 469}, - [6077] = {.lex_state = 474, .external_lex_state = 115}, - [6078] = {.lex_state = 479, .external_lex_state = 96}, - [6079] = {.lex_state = 479, .external_lex_state = 96}, + [6071] = {.lex_state = 479, .external_lex_state = 97}, + [6072] = {.lex_state = 479, .external_lex_state = 97}, + [6073] = {.lex_state = 479, .external_lex_state = 97}, + [6074] = {.lex_state = 474, .external_lex_state = 115}, + [6075] = {.lex_state = 479, .external_lex_state = 97}, + [6076] = {.lex_state = 474, .external_lex_state = 115}, + [6077] = {.lex_state = 479, .external_lex_state = 97}, + [6078] = {.lex_state = 479, .external_lex_state = 97}, + [6079] = {.lex_state = 474, .external_lex_state = 115}, [6080] = {.lex_state = 474, .external_lex_state = 115}, - [6081] = {.lex_state = 479, .external_lex_state = 96}, - [6082] = {.lex_state = 474, .external_lex_state = 115}, - [6083] = {.lex_state = 474, .external_lex_state = 115}, - [6084] = {.lex_state = 479, .external_lex_state = 96}, - [6085] = {.lex_state = 480}, - [6086] = {.lex_state = 479, .external_lex_state = 96}, - [6087] = {.lex_state = 479, .external_lex_state = 96}, - [6088] = {.lex_state = 479, .external_lex_state = 96}, - [6089] = {.lex_state = 474}, - [6090] = {.lex_state = 98, .external_lex_state = 116}, - [6091] = {.lex_state = 470, .external_lex_state = 117}, + [6081] = {.lex_state = 474, .external_lex_state = 115}, + [6082] = {.lex_state = 479, .external_lex_state = 97}, + [6083] = {.lex_state = 469}, + [6084] = {.lex_state = 479, .external_lex_state = 97}, + [6085] = {.lex_state = 479, .external_lex_state = 97}, + [6086] = {.lex_state = 474, .external_lex_state = 115}, + [6087] = {.lex_state = 479, .external_lex_state = 97}, + [6088] = {.lex_state = 474, .external_lex_state = 115}, + [6089] = {.lex_state = 100, .external_lex_state = 116}, + [6090] = {.lex_state = 470, .external_lex_state = 117}, + [6091] = {.lex_state = 474}, [6092] = {.lex_state = 474}, - [6093] = {.lex_state = 98, .external_lex_state = 116}, - [6094] = {.lex_state = 471, .external_lex_state = 118}, - [6095] = {.lex_state = 477}, - [6096] = {.lex_state = 98, .external_lex_state = 116}, + [6093] = {.lex_state = 100, .external_lex_state = 116}, + [6094] = {.lex_state = 100, .external_lex_state = 116}, + [6095] = {.lex_state = 100, .external_lex_state = 116}, + [6096] = {.lex_state = 100, .external_lex_state = 116}, [6097] = {.lex_state = 471, .external_lex_state = 118}, - [6098] = {.lex_state = 98, .external_lex_state = 116}, - [6099] = {.lex_state = 98, .external_lex_state = 116}, - [6100] = {.lex_state = 471, .external_lex_state = 118}, - [6101] = {.lex_state = 98, .external_lex_state = 116}, - [6102] = {.lex_state = 98, .external_lex_state = 116}, - [6103] = {.lex_state = 98, .external_lex_state = 116}, - [6104] = {.lex_state = 477}, - [6105] = {.lex_state = 98, .external_lex_state = 116}, - [6106] = {.lex_state = 98, .external_lex_state = 116}, - [6107] = {.lex_state = 98, .external_lex_state = 116}, - [6108] = {.lex_state = 98, .external_lex_state = 116}, - [6109] = {.lex_state = 470, .external_lex_state = 114}, - [6110] = {.lex_state = 98, .external_lex_state = 116}, - [6111] = {.lex_state = 427, .external_lex_state = 113}, - [6112] = {.lex_state = 98, .external_lex_state = 119}, - [6113] = {.lex_state = 98, .external_lex_state = 116}, + [6098] = {.lex_state = 471, .external_lex_state = 118}, + [6099] = {.lex_state = 100, .external_lex_state = 116}, + [6100] = {.lex_state = 100, .external_lex_state = 116}, + [6101] = {.lex_state = 100, .external_lex_state = 116}, + [6102] = {.lex_state = 477}, + [6103] = {.lex_state = 100, .external_lex_state = 116}, + [6104] = {.lex_state = 100, .external_lex_state = 116}, + [6105] = {.lex_state = 100, .external_lex_state = 116}, + [6106] = {.lex_state = 471, .external_lex_state = 118}, + [6107] = {.lex_state = 477}, + [6108] = {.lex_state = 100, .external_lex_state = 116}, + [6109] = {.lex_state = 100, .external_lex_state = 116}, + [6110] = {.lex_state = 427, .external_lex_state = 113}, + [6111] = {.lex_state = 100, .external_lex_state = 116}, + [6112] = {.lex_state = 100, .external_lex_state = 116}, + [6113] = {.lex_state = 100, .external_lex_state = 116}, [6114] = {.lex_state = 470, .external_lex_state = 114}, - [6115] = {.lex_state = 470, .external_lex_state = 114}, - [6116] = {.lex_state = 470, .external_lex_state = 114}, - [6117] = {.lex_state = 98, .external_lex_state = 119}, + [6115] = {.lex_state = 427, .external_lex_state = 113}, + [6116] = {.lex_state = 100, .external_lex_state = 119}, + [6117] = {.lex_state = 470, .external_lex_state = 114}, [6118] = {.lex_state = 427, .external_lex_state = 113}, - [6119] = {.lex_state = 427, .external_lex_state = 113}, - [6120] = {.lex_state = 427, .external_lex_state = 113}, - [6121] = {.lex_state = 98, .external_lex_state = 119}, - [6122] = {.lex_state = 98, .external_lex_state = 116}, - [6123] = {.lex_state = 98, .external_lex_state = 116}, - [6124] = {.lex_state = 98, .external_lex_state = 116}, - [6125] = {.lex_state = 98, .external_lex_state = 116}, - [6126] = {.lex_state = 98, .external_lex_state = 116}, - [6127] = {.lex_state = 98, .external_lex_state = 116}, - [6128] = {.lex_state = 470, .external_lex_state = 114}, - [6129] = {.lex_state = 470, .external_lex_state = 114}, - [6130] = {.lex_state = 470, .external_lex_state = 114}, - [6131] = {.lex_state = 98, .external_lex_state = 116}, - [6132] = {.lex_state = 98, .external_lex_state = 116}, - [6133] = {.lex_state = 98, .external_lex_state = 119}, - [6134] = {.lex_state = 98, .external_lex_state = 116}, + [6119] = {.lex_state = 100, .external_lex_state = 116}, + [6120] = {.lex_state = 100, .external_lex_state = 116}, + [6121] = {.lex_state = 100, .external_lex_state = 116}, + [6122] = {.lex_state = 100, .external_lex_state = 116}, + [6123] = {.lex_state = 470, .external_lex_state = 114}, + [6124] = {.lex_state = 100, .external_lex_state = 119}, + [6125] = {.lex_state = 470, .external_lex_state = 114}, + [6126] = {.lex_state = 100, .external_lex_state = 116}, + [6127] = {.lex_state = 100, .external_lex_state = 116}, + [6128] = {.lex_state = 100, .external_lex_state = 116}, + [6129] = {.lex_state = 100, .external_lex_state = 119}, + [6130] = {.lex_state = 100, .external_lex_state = 116}, + [6131] = {.lex_state = 100, .external_lex_state = 116}, + [6132] = {.lex_state = 470, .external_lex_state = 114}, + [6133] = {.lex_state = 427, .external_lex_state = 113}, + [6134] = {.lex_state = 100, .external_lex_state = 116}, [6135] = {.lex_state = 470, .external_lex_state = 114}, - [6136] = {.lex_state = 98, .external_lex_state = 119}, - [6137] = {.lex_state = 98, .external_lex_state = 116}, - [6138] = {.lex_state = 98, .external_lex_state = 116}, + [6136] = {.lex_state = 470, .external_lex_state = 114}, + [6137] = {.lex_state = 470, .external_lex_state = 114}, + [6138] = {.lex_state = 100, .external_lex_state = 116}, [6139] = {.lex_state = 470, .external_lex_state = 114}, - [6140] = {.lex_state = 470, .external_lex_state = 114}, - [6141] = {.lex_state = 98, .external_lex_state = 116}, - [6142] = {.lex_state = 98, .external_lex_state = 116}, - [6143] = {.lex_state = 98, .external_lex_state = 116}, - [6144] = {.lex_state = 427, .external_lex_state = 113}, - [6145] = {.lex_state = 98, .external_lex_state = 116}, - [6146] = {.lex_state = 98, .external_lex_state = 116}, - [6147] = {.lex_state = 470, .external_lex_state = 114}, - [6148] = {.lex_state = 427, .external_lex_state = 113}, - [6149] = {.lex_state = 98, .external_lex_state = 116}, + [6140] = {.lex_state = 427, .external_lex_state = 113}, + [6141] = {.lex_state = 427, .external_lex_state = 113}, + [6142] = {.lex_state = 100, .external_lex_state = 116}, + [6143] = {.lex_state = 100, .external_lex_state = 119}, + [6144] = {.lex_state = 470, .external_lex_state = 114}, + [6145] = {.lex_state = 470, .external_lex_state = 114}, + [6146] = {.lex_state = 470, .external_lex_state = 114}, + [6147] = {.lex_state = 100, .external_lex_state = 116}, + [6148] = {.lex_state = 100, .external_lex_state = 116}, + [6149] = {.lex_state = 100, .external_lex_state = 119}, [6150] = {.lex_state = 427, .external_lex_state = 113}, - [6151] = {.lex_state = 470, .external_lex_state = 114}, - [6152] = {.lex_state = 453, .external_lex_state = 115}, + [6151] = {.lex_state = 100, .external_lex_state = 116}, + [6152] = {.lex_state = 481}, [6153] = {.lex_state = 453, .external_lex_state = 115}, [6154] = {.lex_state = 427}, - [6155] = {.lex_state = 427}, - [6156] = {.lex_state = 427}, + [6155] = {.lex_state = 470, .external_lex_state = 114}, + [6156] = {.lex_state = 481}, [6157] = {.lex_state = 470, .external_lex_state = 114}, [6158] = {.lex_state = 427}, - [6159] = {.lex_state = 470, .external_lex_state = 114}, - [6160] = {.lex_state = 427}, - [6161] = {.lex_state = 470, .external_lex_state = 114}, + [6159] = {.lex_state = 479}, + [6160] = {.lex_state = 470, .external_lex_state = 114}, + [6161] = {.lex_state = 453, .external_lex_state = 115}, [6162] = {.lex_state = 427}, - [6163] = {.lex_state = 427}, - [6164] = {.lex_state = 427}, - [6165] = {.lex_state = 470, .external_lex_state = 114}, - [6166] = {.lex_state = 427}, - [6167] = {.lex_state = 427}, - [6168] = {.lex_state = 93, .external_lex_state = 119}, - [6169] = {.lex_state = 427}, - [6170] = {.lex_state = 427}, - [6171] = {.lex_state = 470, .external_lex_state = 114}, - [6172] = {.lex_state = 427}, - [6173] = {.lex_state = 470, .external_lex_state = 114}, - [6174] = {.lex_state = 470, .external_lex_state = 114}, - [6175] = {.lex_state = 470, .external_lex_state = 114}, - [6176] = {.lex_state = 479}, - [6177] = {.lex_state = 480}, - [6178] = {.lex_state = 93, .external_lex_state = 119}, + [6163] = {.lex_state = 453, .external_lex_state = 115}, + [6164] = {.lex_state = 100, .external_lex_state = 119}, + [6165] = {.lex_state = 427}, + [6166] = {.lex_state = 479}, + [6167] = {.lex_state = 471, .external_lex_state = 118}, + [6168] = {.lex_state = 481}, + [6169] = {.lex_state = 95, .external_lex_state = 119}, + [6170] = {.lex_state = 481}, + [6171] = {.lex_state = 427}, + [6172] = {.lex_state = 95, .external_lex_state = 119}, + [6173] = {.lex_state = 427}, + [6174] = {.lex_state = 427}, + [6175] = {.lex_state = 453, .external_lex_state = 115}, + [6176] = {.lex_state = 427}, + [6177] = {.lex_state = 427}, + [6178] = {.lex_state = 427}, [6179] = {.lex_state = 427}, - [6180] = {.lex_state = 427}, - [6181] = {.lex_state = 480}, + [6180] = {.lex_state = 95, .external_lex_state = 119}, + [6181] = {.lex_state = 481}, [6182] = {.lex_state = 427}, - [6183] = {.lex_state = 427}, - [6184] = {.lex_state = 427}, - [6185] = {.lex_state = 427}, + [6183] = {.lex_state = 453, .external_lex_state = 115}, + [6184] = {.lex_state = 481}, + [6185] = {.lex_state = 482, .external_lex_state = 120}, [6186] = {.lex_state = 427}, [6187] = {.lex_state = 427}, - [6188] = {.lex_state = 93, .external_lex_state = 119}, - [6189] = {.lex_state = 427}, - [6190] = {.lex_state = 453, .external_lex_state = 115}, + [6188] = {.lex_state = 427}, + [6189] = {.lex_state = 470, .external_lex_state = 114}, + [6190] = {.lex_state = 470, .external_lex_state = 114}, [6191] = {.lex_state = 470, .external_lex_state = 114}, - [6192] = {.lex_state = 427}, + [6192] = {.lex_state = 470, .external_lex_state = 114}, [6193] = {.lex_state = 427}, - [6194] = {.lex_state = 479}, - [6195] = {.lex_state = 427}, + [6194] = {.lex_state = 427}, + [6195] = {.lex_state = 95, .external_lex_state = 119}, [6196] = {.lex_state = 427}, - [6197] = {.lex_state = 482, .external_lex_state = 120}, - [6198] = {.lex_state = 453, .external_lex_state = 115}, - [6199] = {.lex_state = 453, .external_lex_state = 115}, - [6200] = {.lex_state = 480}, - [6201] = {.lex_state = 427}, - [6202] = {.lex_state = 427}, + [6197] = {.lex_state = 470, .external_lex_state = 114}, + [6198] = {.lex_state = 470, .external_lex_state = 114}, + [6199] = {.lex_state = 427}, + [6200] = {.lex_state = 470, .external_lex_state = 114}, + [6201] = {.lex_state = 470, .external_lex_state = 114}, + [6202] = {.lex_state = 471, .external_lex_state = 118}, [6203] = {.lex_state = 427}, - [6204] = {.lex_state = 453, .external_lex_state = 115}, - [6205] = {.lex_state = 470, .external_lex_state = 114}, - [6206] = {.lex_state = 93, .external_lex_state = 119}, - [6207] = {.lex_state = 427}, + [6204] = {.lex_state = 427}, + [6205] = {.lex_state = 427}, + [6206] = {.lex_state = 427}, + [6207] = {.lex_state = 95, .external_lex_state = 119}, [6208] = {.lex_state = 470, .external_lex_state = 114}, [6209] = {.lex_state = 427}, [6210] = {.lex_state = 427}, [6211] = {.lex_state = 427}, - [6212] = {.lex_state = 427}, + [6212] = {.lex_state = 453, .external_lex_state = 115}, [6213] = {.lex_state = 427}, [6214] = {.lex_state = 427}, [6215] = {.lex_state = 427}, - [6216] = {.lex_state = 470, .external_lex_state = 114}, - [6217] = {.lex_state = 427}, - [6218] = {.lex_state = 479}, - [6219] = {.lex_state = 480}, + [6216] = {.lex_state = 453, .external_lex_state = 115}, + [6217] = {.lex_state = 95, .external_lex_state = 119}, + [6218] = {.lex_state = 427}, + [6219] = {.lex_state = 453, .external_lex_state = 115}, [6220] = {.lex_state = 427}, [6221] = {.lex_state = 427}, - [6222] = {.lex_state = 480}, - [6223] = {.lex_state = 453, .external_lex_state = 115}, - [6224] = {.lex_state = 482, .external_lex_state = 120}, - [6225] = {.lex_state = 471, .external_lex_state = 118}, - [6226] = {.lex_state = 427}, - [6227] = {.lex_state = 93, .external_lex_state = 119}, + [6222] = {.lex_state = 427}, + [6223] = {.lex_state = 427}, + [6224] = {.lex_state = 470, .external_lex_state = 114}, + [6225] = {.lex_state = 95, .external_lex_state = 119}, + [6226] = {.lex_state = 470, .external_lex_state = 114}, + [6227] = {.lex_state = 479}, [6228] = {.lex_state = 427}, - [6229] = {.lex_state = 480}, + [6229] = {.lex_state = 427}, [6230] = {.lex_state = 427}, - [6231] = {.lex_state = 427}, - [6232] = {.lex_state = 482, .external_lex_state = 120}, - [6233] = {.lex_state = 98, .external_lex_state = 119}, + [6231] = {.lex_state = 481}, + [6232] = {.lex_state = 427}, + [6233] = {.lex_state = 453, .external_lex_state = 115}, [6234] = {.lex_state = 427}, [6235] = {.lex_state = 427}, - [6236] = {.lex_state = 427}, + [6236] = {.lex_state = 470, .external_lex_state = 114}, [6237] = {.lex_state = 427}, [6238] = {.lex_state = 427}, - [6239] = {.lex_state = 470, .external_lex_state = 114}, - [6240] = {.lex_state = 93, .external_lex_state = 119}, - [6241] = {.lex_state = 427}, - [6242] = {.lex_state = 93, .external_lex_state = 119}, + [6239] = {.lex_state = 427}, + [6240] = {.lex_state = 427}, + [6241] = {.lex_state = 471, .external_lex_state = 118}, + [6242] = {.lex_state = 427}, [6243] = {.lex_state = 427}, [6244] = {.lex_state = 427}, - [6245] = {.lex_state = 471, .external_lex_state = 118}, - [6246] = {.lex_state = 453, .external_lex_state = 115}, - [6247] = {.lex_state = 480}, - [6248] = {.lex_state = 453, .external_lex_state = 115}, - [6249] = {.lex_state = 470, .external_lex_state = 114}, + [6245] = {.lex_state = 481}, + [6246] = {.lex_state = 427}, + [6247] = {.lex_state = 427}, + [6248] = {.lex_state = 427}, + [6249] = {.lex_state = 427}, [6250] = {.lex_state = 427}, [6251] = {.lex_state = 427}, [6252] = {.lex_state = 427}, - [6253] = {.lex_state = 470, .external_lex_state = 114}, + [6253] = {.lex_state = 427}, [6254] = {.lex_state = 427}, [6255] = {.lex_state = 427}, - [6256] = {.lex_state = 471, .external_lex_state = 118}, + [6256] = {.lex_state = 427}, [6257] = {.lex_state = 427}, [6258] = {.lex_state = 427}, - [6259] = {.lex_state = 427}, + [6259] = {.lex_state = 470, .external_lex_state = 114}, [6260] = {.lex_state = 427}, - [6261] = {.lex_state = 479}, - [6262] = {.lex_state = 427}, - [6263] = {.lex_state = 427}, + [6261] = {.lex_state = 427}, + [6262] = {.lex_state = 482, .external_lex_state = 120}, + [6263] = {.lex_state = 479}, [6264] = {.lex_state = 427}, - [6265] = {.lex_state = 470, .external_lex_state = 114}, + [6265] = {.lex_state = 427}, [6266] = {.lex_state = 427}, - [6267] = {.lex_state = 93, .external_lex_state = 119}, - [6268] = {.lex_state = 427}, + [6267] = {.lex_state = 482, .external_lex_state = 120}, + [6268] = {.lex_state = 471, .external_lex_state = 118}, [6269] = {.lex_state = 427}, - [6270] = {.lex_state = 480}, - [6271] = {.lex_state = 427}, - [6272] = {.lex_state = 471, .external_lex_state = 118}, + [6270] = {.lex_state = 427}, + [6271] = {.lex_state = 95, .external_lex_state = 119}, + [6272] = {.lex_state = 427}, [6273] = {.lex_state = 427}, [6274] = {.lex_state = 427}, [6275] = {.lex_state = 482, .external_lex_state = 121}, - [6276] = {.lex_state = 434, .external_lex_state = 122}, - [6277] = {.lex_state = 434, .external_lex_state = 123}, - [6278] = {.lex_state = 452}, - [6279] = {.lex_state = 540, .external_lex_state = 124}, - [6280] = {.lex_state = 540, .external_lex_state = 124}, - [6281] = {.lex_state = 540, .external_lex_state = 124}, - [6282] = {.lex_state = 540, .external_lex_state = 124}, - [6283] = {.lex_state = 540, .external_lex_state = 124}, - [6284] = {.lex_state = 540, .external_lex_state = 124}, - [6285] = {.lex_state = 540, .external_lex_state = 124}, - [6286] = {.lex_state = 540, .external_lex_state = 124}, - [6287] = {.lex_state = 540, .external_lex_state = 124}, - [6288] = {.lex_state = 540, .external_lex_state = 124}, - [6289] = {.lex_state = 540, .external_lex_state = 124}, - [6290] = {.lex_state = 540, .external_lex_state = 124}, - [6291] = {.lex_state = 540, .external_lex_state = 124}, - [6292] = {.lex_state = 482, .external_lex_state = 121}, - [6293] = {.lex_state = 540, .external_lex_state = 124}, - [6294] = {.lex_state = 434, .external_lex_state = 123}, - [6295] = {.lex_state = 434, .external_lex_state = 123}, - [6296] = {.lex_state = 434, .external_lex_state = 123}, - [6297] = {.lex_state = 540, .external_lex_state = 124}, - [6298] = {.lex_state = 540, .external_lex_state = 124}, - [6299] = {.lex_state = 540, .external_lex_state = 124}, - [6300] = {.lex_state = 479}, - [6301] = {.lex_state = 98, .external_lex_state = 119}, - [6302] = {.lex_state = 540, .external_lex_state = 124}, - [6303] = {.lex_state = 453, .external_lex_state = 115}, - [6304] = {.lex_state = 482, .external_lex_state = 120}, - [6305] = {.lex_state = 434, .external_lex_state = 123}, - [6306] = {.lex_state = 434, .external_lex_state = 122}, - [6307] = {.lex_state = 452}, - [6308] = {.lex_state = 479}, - [6309] = {.lex_state = 482, .external_lex_state = 121}, - [6310] = {.lex_state = 482, .external_lex_state = 121}, - [6311] = {.lex_state = 434, .external_lex_state = 123}, + [6276] = {.lex_state = 452}, + [6277] = {.lex_state = 100, .external_lex_state = 119}, + [6278] = {.lex_state = 100, .external_lex_state = 119}, + [6279] = {.lex_state = 482, .external_lex_state = 121}, + [6280] = {.lex_state = 482, .external_lex_state = 121}, + [6281] = {.lex_state = 434, .external_lex_state = 122}, + [6282] = {.lex_state = 482, .external_lex_state = 121}, + [6283] = {.lex_state = 453, .external_lex_state = 115}, + [6284] = {.lex_state = 540, .external_lex_state = 123}, + [6285] = {.lex_state = 453, .external_lex_state = 115}, + [6286] = {.lex_state = 434, .external_lex_state = 124}, + [6287] = {.lex_state = 453, .external_lex_state = 115}, + [6288] = {.lex_state = 434, .external_lex_state = 124}, + [6289] = {.lex_state = 434, .external_lex_state = 122}, + [6290] = {.lex_state = 100, .external_lex_state = 119}, + [6291] = {.lex_state = 100, .external_lex_state = 119}, + [6292] = {.lex_state = 540, .external_lex_state = 123}, + [6293] = {.lex_state = 540, .external_lex_state = 123}, + [6294] = {.lex_state = 434, .external_lex_state = 122}, + [6295] = {.lex_state = 540, .external_lex_state = 123}, + [6296] = {.lex_state = 540, .external_lex_state = 123}, + [6297] = {.lex_state = 434, .external_lex_state = 122}, + [6298] = {.lex_state = 434, .external_lex_state = 122}, + [6299] = {.lex_state = 434, .external_lex_state = 122}, + [6300] = {.lex_state = 434, .external_lex_state = 122}, + [6301] = {.lex_state = 540, .external_lex_state = 123}, + [6302] = {.lex_state = 100, .external_lex_state = 119}, + [6303] = {.lex_state = 100, .external_lex_state = 119}, + [6304] = {.lex_state = 100, .external_lex_state = 119}, + [6305] = {.lex_state = 453, .external_lex_state = 115}, + [6306] = {.lex_state = 453, .external_lex_state = 115}, + [6307] = {.lex_state = 478}, + [6308] = {.lex_state = 434, .external_lex_state = 122}, + [6309] = {.lex_state = 434, .external_lex_state = 122}, + [6310] = {.lex_state = 452}, + [6311] = {.lex_state = 482, .external_lex_state = 121}, [6312] = {.lex_state = 482, .external_lex_state = 121}, - [6313] = {.lex_state = 453, .external_lex_state = 115}, - [6314] = {.lex_state = 482, .external_lex_state = 121}, - [6315] = {.lex_state = 482, .external_lex_state = 121}, - [6316] = {.lex_state = 482, .external_lex_state = 120}, - [6317] = {.lex_state = 434, .external_lex_state = 123}, - [6318] = {.lex_state = 434, .external_lex_state = 123}, - [6319] = {.lex_state = 540, .external_lex_state = 124}, - [6320] = {.lex_state = 98, .external_lex_state = 119}, - [6321] = {.lex_state = 540, .external_lex_state = 124}, - [6322] = {.lex_state = 540, .external_lex_state = 124}, - [6323] = {.lex_state = 478}, - [6324] = {.lex_state = 453, .external_lex_state = 115}, - [6325] = {.lex_state = 482, .external_lex_state = 120}, - [6326] = {.lex_state = 479}, - [6327] = {.lex_state = 98, .external_lex_state = 119}, - [6328] = {.lex_state = 540, .external_lex_state = 124}, - [6329] = {.lex_state = 540, .external_lex_state = 124}, - [6330] = {.lex_state = 540, .external_lex_state = 124}, - [6331] = {.lex_state = 98, .external_lex_state = 119}, - [6332] = {.lex_state = 540, .external_lex_state = 124}, - [6333] = {.lex_state = 540, .external_lex_state = 124}, - [6334] = {.lex_state = 434, .external_lex_state = 122}, - [6335] = {.lex_state = 480}, - [6336] = {.lex_state = 540, .external_lex_state = 124}, - [6337] = {.lex_state = 540, .external_lex_state = 124}, - [6338] = {.lex_state = 540, .external_lex_state = 124}, - [6339] = {.lex_state = 540, .external_lex_state = 124}, - [6340] = {.lex_state = 540, .external_lex_state = 124}, - [6341] = {.lex_state = 434, .external_lex_state = 123}, - [6342] = {.lex_state = 540, .external_lex_state = 124}, - [6343] = {.lex_state = 540, .external_lex_state = 124}, - [6344] = {.lex_state = 540, .external_lex_state = 124}, - [6345] = {.lex_state = 434, .external_lex_state = 123}, - [6346] = {.lex_state = 479}, - [6347] = {.lex_state = 452}, - [6348] = {.lex_state = 540, .external_lex_state = 124}, - [6349] = {.lex_state = 434, .external_lex_state = 123}, - [6350] = {.lex_state = 540, .external_lex_state = 124}, - [6351] = {.lex_state = 540, .external_lex_state = 124}, - [6352] = {.lex_state = 540, .external_lex_state = 124}, - [6353] = {.lex_state = 540, .external_lex_state = 124}, - [6354] = {.lex_state = 540, .external_lex_state = 124}, - [6355] = {.lex_state = 540, .external_lex_state = 124}, + [6313] = {.lex_state = 479}, + [6314] = {.lex_state = 95, .external_lex_state = 119}, + [6315] = {.lex_state = 434, .external_lex_state = 122}, + [6316] = {.lex_state = 434, .external_lex_state = 124}, + [6317] = {.lex_state = 540, .external_lex_state = 123}, + [6318] = {.lex_state = 479}, + [6319] = {.lex_state = 540, .external_lex_state = 123}, + [6320] = {.lex_state = 540, .external_lex_state = 123}, + [6321] = {.lex_state = 540, .external_lex_state = 123}, + [6322] = {.lex_state = 540, .external_lex_state = 123}, + [6323] = {.lex_state = 540, .external_lex_state = 123}, + [6324] = {.lex_state = 540, .external_lex_state = 123}, + [6325] = {.lex_state = 540, .external_lex_state = 123}, + [6326] = {.lex_state = 540, .external_lex_state = 123}, + [6327] = {.lex_state = 540, .external_lex_state = 123}, + [6328] = {.lex_state = 540, .external_lex_state = 123}, + [6329] = {.lex_state = 434, .external_lex_state = 124}, + [6330] = {.lex_state = 100, .external_lex_state = 119}, + [6331] = {.lex_state = 482, .external_lex_state = 121}, + [6332] = {.lex_state = 540, .external_lex_state = 123}, + [6333] = {.lex_state = 540, .external_lex_state = 123}, + [6334] = {.lex_state = 540, .external_lex_state = 123}, + [6335] = {.lex_state = 540, .external_lex_state = 123}, + [6336] = {.lex_state = 434, .external_lex_state = 122}, + [6337] = {.lex_state = 540, .external_lex_state = 123}, + [6338] = {.lex_state = 540, .external_lex_state = 123}, + [6339] = {.lex_state = 479}, + [6340] = {.lex_state = 540, .external_lex_state = 123}, + [6341] = {.lex_state = 540, .external_lex_state = 123}, + [6342] = {.lex_state = 540, .external_lex_state = 123}, + [6343] = {.lex_state = 540, .external_lex_state = 123}, + [6344] = {.lex_state = 540, .external_lex_state = 123}, + [6345] = {.lex_state = 540, .external_lex_state = 123}, + [6346] = {.lex_state = 540, .external_lex_state = 123}, + [6347] = {.lex_state = 540, .external_lex_state = 123}, + [6348] = {.lex_state = 540, .external_lex_state = 123}, + [6349] = {.lex_state = 540, .external_lex_state = 123}, + [6350] = {.lex_state = 540, .external_lex_state = 123}, + [6351] = {.lex_state = 482, .external_lex_state = 120}, + [6352] = {.lex_state = 481}, + [6353] = {.lex_state = 452}, + [6354] = {.lex_state = 482, .external_lex_state = 120}, + [6355] = {.lex_state = 482, .external_lex_state = 120}, [6356] = {.lex_state = 452}, - [6357] = {.lex_state = 540, .external_lex_state = 124}, - [6358] = {.lex_state = 540, .external_lex_state = 124}, - [6359] = {.lex_state = 98, .external_lex_state = 119}, - [6360] = {.lex_state = 540, .external_lex_state = 124}, - [6361] = {.lex_state = 93, .external_lex_state = 119}, - [6362] = {.lex_state = 540, .external_lex_state = 124}, - [6363] = {.lex_state = 540, .external_lex_state = 124}, - [6364] = {.lex_state = 98, .external_lex_state = 119}, - [6365] = {.lex_state = 540, .external_lex_state = 124}, - [6366] = {.lex_state = 540, .external_lex_state = 124}, - [6367] = {.lex_state = 540, .external_lex_state = 124}, - [6368] = {.lex_state = 540, .external_lex_state = 124}, - [6369] = {.lex_state = 540, .external_lex_state = 124}, - [6370] = {.lex_state = 540, .external_lex_state = 124}, - [6371] = {.lex_state = 482, .external_lex_state = 121}, - [6372] = {.lex_state = 540, .external_lex_state = 124}, - [6373] = {.lex_state = 98, .external_lex_state = 119}, - [6374] = {.lex_state = 434, .external_lex_state = 122}, - [6375] = {.lex_state = 98, .external_lex_state = 119}, - [6376] = {.lex_state = 540, .external_lex_state = 124}, - [6377] = {.lex_state = 434, .external_lex_state = 123}, - [6378] = {.lex_state = 540, .external_lex_state = 124}, - [6379] = {.lex_state = 434, .external_lex_state = 123}, - [6380] = {.lex_state = 540, .external_lex_state = 124}, - [6381] = {.lex_state = 540, .external_lex_state = 124}, - [6382] = {.lex_state = 453, .external_lex_state = 115}, - [6383] = {.lex_state = 453, .external_lex_state = 115}, - [6384] = {.lex_state = 540, .external_lex_state = 124}, - [6385] = {.lex_state = 540, .external_lex_state = 124}, - [6386] = {.lex_state = 540, .external_lex_state = 124}, - [6387] = {.lex_state = 453, .external_lex_state = 115}, - [6388] = {.lex_state = 453, .external_lex_state = 115}, - [6389] = {.lex_state = 453, .external_lex_state = 115}, - [6390] = {.lex_state = 453, .external_lex_state = 115}, - [6391] = {.lex_state = 434, .external_lex_state = 123}, - [6392] = {.lex_state = 434, .external_lex_state = 123}, - [6393] = {.lex_state = 434, .external_lex_state = 123}, - [6394] = {.lex_state = 452}, - [6395] = {.lex_state = 93, .external_lex_state = 119}, - [6396] = {.lex_state = 434, .external_lex_state = 123}, - [6397] = {.lex_state = 427, .external_lex_state = 125}, - [6398] = {.lex_state = 470, .external_lex_state = 114}, - [6399] = {.lex_state = 434, .external_lex_state = 123}, - [6400] = {.lex_state = 434, .external_lex_state = 123}, - [6401] = {.lex_state = 453, .external_lex_state = 115}, - [6402] = {.lex_state = 453, .external_lex_state = 115}, - [6403] = {.lex_state = 453, .external_lex_state = 115}, - [6404] = {.lex_state = 453, .external_lex_state = 115}, - [6405] = {.lex_state = 453, .external_lex_state = 115}, - [6406] = {.lex_state = 453, .external_lex_state = 115}, - [6407] = {.lex_state = 453, .external_lex_state = 115}, - [6408] = {.lex_state = 453, .external_lex_state = 115}, + [6357] = {.lex_state = 540, .external_lex_state = 123}, + [6358] = {.lex_state = 479}, + [6359] = {.lex_state = 540, .external_lex_state = 123}, + [6360] = {.lex_state = 540, .external_lex_state = 123}, + [6361] = {.lex_state = 540, .external_lex_state = 123}, + [6362] = {.lex_state = 540, .external_lex_state = 123}, + [6363] = {.lex_state = 540, .external_lex_state = 123}, + [6364] = {.lex_state = 540, .external_lex_state = 123}, + [6365] = {.lex_state = 540, .external_lex_state = 123}, + [6366] = {.lex_state = 540, .external_lex_state = 123}, + [6367] = {.lex_state = 540, .external_lex_state = 123}, + [6368] = {.lex_state = 540, .external_lex_state = 123}, + [6369] = {.lex_state = 540, .external_lex_state = 123}, + [6370] = {.lex_state = 482, .external_lex_state = 121}, + [6371] = {.lex_state = 540, .external_lex_state = 123}, + [6372] = {.lex_state = 540, .external_lex_state = 123}, + [6373] = {.lex_state = 540, .external_lex_state = 123}, + [6374] = {.lex_state = 540, .external_lex_state = 123}, + [6375] = {.lex_state = 540, .external_lex_state = 123}, + [6376] = {.lex_state = 540, .external_lex_state = 123}, + [6377] = {.lex_state = 540, .external_lex_state = 123}, + [6378] = {.lex_state = 540, .external_lex_state = 123}, + [6379] = {.lex_state = 540, .external_lex_state = 123}, + [6380] = {.lex_state = 540, .external_lex_state = 123}, + [6381] = {.lex_state = 540, .external_lex_state = 123}, + [6382] = {.lex_state = 540, .external_lex_state = 123}, + [6383] = {.lex_state = 434, .external_lex_state = 122}, + [6384] = {.lex_state = 540, .external_lex_state = 123}, + [6385] = {.lex_state = 434, .external_lex_state = 122}, + [6386] = {.lex_state = 540, .external_lex_state = 123}, + [6387] = {.lex_state = 434, .external_lex_state = 122}, + [6388] = {.lex_state = 427, .external_lex_state = 125}, + [6389] = {.lex_state = 95, .external_lex_state = 119}, + [6390] = {.lex_state = 482, .external_lex_state = 121}, + [6391] = {.lex_state = 453, .external_lex_state = 115}, + [6392] = {.lex_state = 453, .external_lex_state = 115}, + [6393] = {.lex_state = 453, .external_lex_state = 115}, + [6394] = {.lex_state = 482, .external_lex_state = 121}, + [6395] = {.lex_state = 482, .external_lex_state = 121}, + [6396] = {.lex_state = 434, .external_lex_state = 122}, + [6397] = {.lex_state = 482, .external_lex_state = 121}, + [6398] = {.lex_state = 427, .external_lex_state = 125}, + [6399] = {.lex_state = 482, .external_lex_state = 121}, + [6400] = {.lex_state = 434, .external_lex_state = 122}, + [6401] = {.lex_state = 95, .external_lex_state = 119}, + [6402] = {.lex_state = 427, .external_lex_state = 125}, + [6403] = {.lex_state = 482, .external_lex_state = 121}, + [6404] = {.lex_state = 482, .external_lex_state = 121}, + [6405] = {.lex_state = 482, .external_lex_state = 121}, + [6406] = {.lex_state = 427, .external_lex_state = 125}, + [6407] = {.lex_state = 452}, + [6408] = {.lex_state = 427, .external_lex_state = 125}, [6409] = {.lex_state = 427, .external_lex_state = 125}, - [6410] = {.lex_state = 453, .external_lex_state = 115}, - [6411] = {.lex_state = 453, .external_lex_state = 115}, - [6412] = {.lex_state = 453, .external_lex_state = 115}, - [6413] = {.lex_state = 452}, - [6414] = {.lex_state = 427, .external_lex_state = 125}, + [6410] = {.lex_state = 427, .external_lex_state = 125}, + [6411] = {.lex_state = 427, .external_lex_state = 125}, + [6412] = {.lex_state = 427, .external_lex_state = 125}, + [6413] = {.lex_state = 434, .external_lex_state = 122}, + [6414] = {.lex_state = 453, .external_lex_state = 115}, [6415] = {.lex_state = 453, .external_lex_state = 115}, [6416] = {.lex_state = 427, .external_lex_state = 125}, - [6417] = {.lex_state = 427, .external_lex_state = 125}, - [6418] = {.lex_state = 434, .external_lex_state = 123}, - [6419] = {.lex_state = 470, .external_lex_state = 114}, - [6420] = {.lex_state = 470, .external_lex_state = 114}, - [6421] = {.lex_state = 482, .external_lex_state = 121}, - [6422] = {.lex_state = 482, .external_lex_state = 121}, - [6423] = {.lex_state = 427, .external_lex_state = 125}, - [6424] = {.lex_state = 482, .external_lex_state = 121}, + [6417] = {.lex_state = 453, .external_lex_state = 115}, + [6418] = {.lex_state = 452}, + [6419] = {.lex_state = 453, .external_lex_state = 115}, + [6420] = {.lex_state = 453, .external_lex_state = 115}, + [6421] = {.lex_state = 434, .external_lex_state = 122}, + [6422] = {.lex_state = 453, .external_lex_state = 115}, + [6423] = {.lex_state = 453, .external_lex_state = 115}, + [6424] = {.lex_state = 470, .external_lex_state = 114}, [6425] = {.lex_state = 482, .external_lex_state = 121}, - [6426] = {.lex_state = 482, .external_lex_state = 121}, - [6427] = {.lex_state = 482, .external_lex_state = 121}, - [6428] = {.lex_state = 482, .external_lex_state = 121}, - [6429] = {.lex_state = 93, .external_lex_state = 119}, - [6430] = {.lex_state = 482, .external_lex_state = 121}, - [6431] = {.lex_state = 482, .external_lex_state = 121}, - [6432] = {.lex_state = 482, .external_lex_state = 121}, - [6433] = {.lex_state = 470, .external_lex_state = 114}, + [6426] = {.lex_state = 453, .external_lex_state = 115}, + [6427] = {.lex_state = 427, .external_lex_state = 125}, + [6428] = {.lex_state = 434, .external_lex_state = 122}, + [6429] = {.lex_state = 453, .external_lex_state = 115}, + [6430] = {.lex_state = 470, .external_lex_state = 114}, + [6431] = {.lex_state = 453, .external_lex_state = 115}, + [6432] = {.lex_state = 453, .external_lex_state = 115}, + [6433] = {.lex_state = 453, .external_lex_state = 115}, [6434] = {.lex_state = 482, .external_lex_state = 121}, [6435] = {.lex_state = 482, .external_lex_state = 121}, - [6436] = {.lex_state = 434, .external_lex_state = 123}, - [6437] = {.lex_state = 434, .external_lex_state = 121}, - [6438] = {.lex_state = 482, .external_lex_state = 121}, - [6439] = {.lex_state = 93, .external_lex_state = 119}, - [6440] = {.lex_state = 427, .external_lex_state = 125}, - [6441] = {.lex_state = 427, .external_lex_state = 125}, - [6442] = {.lex_state = 427, .external_lex_state = 125}, + [6436] = {.lex_state = 470, .external_lex_state = 114}, + [6437] = {.lex_state = 482, .external_lex_state = 121}, + [6438] = {.lex_state = 453, .external_lex_state = 115}, + [6439] = {.lex_state = 482, .external_lex_state = 121}, + [6440] = {.lex_state = 482, .external_lex_state = 121}, + [6441] = {.lex_state = 470, .external_lex_state = 114}, + [6442] = {.lex_state = 95, .external_lex_state = 119}, [6443] = {.lex_state = 427, .external_lex_state = 125}, - [6444] = {.lex_state = 427, .external_lex_state = 125}, + [6444] = {.lex_state = 434, .external_lex_state = 121}, [6445] = {.lex_state = 453, .external_lex_state = 115}, - [6446] = {.lex_state = 453, .external_lex_state = 115}, - [6447] = {.lex_state = 453, .external_lex_state = 115}, - [6448] = {.lex_state = 427, .external_lex_state = 125}, - [6449] = {.lex_state = 482, .external_lex_state = 121}, - [6450] = {.lex_state = 429}, - [6451] = {.lex_state = 429}, - [6452] = {.lex_state = 429}, - [6453] = {.lex_state = 540}, - [6454] = {.lex_state = 429}, - [6455] = {.lex_state = 540}, - [6456] = {.lex_state = 540}, - [6457] = {.lex_state = 482}, - [6458] = {.lex_state = 540}, - [6459] = {.lex_state = 429}, - [6460] = {.lex_state = 482}, - [6461] = {.lex_state = 429}, - [6462] = {.lex_state = 413}, - [6463] = {.lex_state = 482}, + [6446] = {.lex_state = 434, .external_lex_state = 122}, + [6447] = {.lex_state = 434, .external_lex_state = 122}, + [6448] = {.lex_state = 453, .external_lex_state = 115}, + [6449] = {.lex_state = 453, .external_lex_state = 115}, + [6450] = {.lex_state = 540}, + [6451] = {.lex_state = 482}, + [6452] = {.lex_state = 482}, + [6453] = {.lex_state = 429}, + [6454] = {.lex_state = 482}, + [6455] = {.lex_state = 429}, + [6456] = {.lex_state = 482}, + [6457] = {.lex_state = 470, .external_lex_state = 114}, + [6458] = {.lex_state = 429}, + [6459] = {.lex_state = 482}, + [6460] = {.lex_state = 429}, + [6461] = {.lex_state = 482}, + [6462] = {.lex_state = 482}, + [6463] = {.lex_state = 470, .external_lex_state = 114}, [6464] = {.lex_state = 429}, - [6465] = {.lex_state = 482}, - [6466] = {.lex_state = 429}, - [6467] = {.lex_state = 429}, - [6468] = {.lex_state = 429}, - [6469] = {.lex_state = 482}, - [6470] = {.lex_state = 482}, + [6465] = {.lex_state = 429}, + [6466] = {.lex_state = 452}, + [6467] = {.lex_state = 540}, + [6468] = {.lex_state = 470, .external_lex_state = 114}, + [6469] = {.lex_state = 429}, + [6470] = {.lex_state = 429}, [6471] = {.lex_state = 429}, [6472] = {.lex_state = 429}, - [6473] = {.lex_state = 540}, - [6474] = {.lex_state = 482}, + [6473] = {.lex_state = 429}, + [6474] = {.lex_state = 427}, [6475] = {.lex_state = 429}, - [6476] = {.lex_state = 482}, + [6476] = {.lex_state = 540}, [6477] = {.lex_state = 429}, - [6478] = {.lex_state = 429}, - [6479] = {.lex_state = 470, .external_lex_state = 114}, - [6480] = {.lex_state = 482}, - [6481] = {.lex_state = 482}, + [6478] = {.lex_state = 427}, + [6479] = {.lex_state = 429}, + [6480] = {.lex_state = 540}, + [6481] = {.lex_state = 429}, [6482] = {.lex_state = 429}, [6483] = {.lex_state = 429}, - [6484] = {.lex_state = 452}, - [6485] = {.lex_state = 470, .external_lex_state = 114}, - [6486] = {.lex_state = 482}, - [6487] = {.lex_state = 429}, + [6484] = {.lex_state = 429}, + [6485] = {.lex_state = 429}, + [6486] = {.lex_state = 429}, + [6487] = {.lex_state = 482}, [6488] = {.lex_state = 540}, - [6489] = {.lex_state = 482}, - [6490] = {.lex_state = 540}, - [6491] = {.lex_state = 482}, - [6492] = {.lex_state = 470, .external_lex_state = 114}, - [6493] = {.lex_state = 540}, - [6494] = {.lex_state = 429}, - [6495] = {.lex_state = 482}, - [6496] = {.lex_state = 482}, - [6497] = {.lex_state = 429}, - [6498] = {.lex_state = 540}, - [6499] = {.lex_state = 427}, - [6500] = {.lex_state = 540}, - [6501] = {.lex_state = 540}, - [6502] = {.lex_state = 540}, - [6503] = {.lex_state = 429}, - [6504] = {.lex_state = 427}, - [6505] = {.lex_state = 429}, - [6506] = {.lex_state = 429}, + [6489] = {.lex_state = 429}, + [6490] = {.lex_state = 429}, + [6491] = {.lex_state = 429}, + [6492] = {.lex_state = 429}, + [6493] = {.lex_state = 429}, + [6494] = {.lex_state = 412}, + [6495] = {.lex_state = 429}, + [6496] = {.lex_state = 540}, + [6497] = {.lex_state = 482}, + [6498] = {.lex_state = 429}, + [6499] = {.lex_state = 429}, + [6500] = {.lex_state = 429}, + [6501] = {.lex_state = 429}, + [6502] = {.lex_state = 429}, + [6503] = {.lex_state = 470, .external_lex_state = 117}, + [6504] = {.lex_state = 540}, + [6505] = {.lex_state = 540}, + [6506] = {.lex_state = 540}, [6507] = {.lex_state = 429}, - [6508] = {.lex_state = 429}, + [6508] = {.lex_state = 540}, [6509] = {.lex_state = 429}, - [6510] = {.lex_state = 427}, - [6511] = {.lex_state = 540}, + [6510] = {.lex_state = 482}, + [6511] = {.lex_state = 470, .external_lex_state = 117}, [6512] = {.lex_state = 429}, - [6513] = {.lex_state = 540}, - [6514] = {.lex_state = 429}, - [6515] = {.lex_state = 429}, - [6516] = {.lex_state = 429}, + [6513] = {.lex_state = 429}, + [6514] = {.lex_state = 470, .external_lex_state = 117}, + [6515] = {.lex_state = 468, .external_lex_state = 115}, + [6516] = {.lex_state = 468, .external_lex_state = 115}, [6517] = {.lex_state = 429}, - [6518] = {.lex_state = 540}, + [6518] = {.lex_state = 470, .external_lex_state = 117}, [6519] = {.lex_state = 429}, - [6520] = {.lex_state = 413}, + [6520] = {.lex_state = 412}, [6521] = {.lex_state = 429}, - [6522] = {.lex_state = 429}, + [6522] = {.lex_state = 427}, [6523] = {.lex_state = 429}, - [6524] = {.lex_state = 468, .external_lex_state = 115}, - [6525] = {.lex_state = 468, .external_lex_state = 115}, + [6524] = {.lex_state = 412}, + [6525] = {.lex_state = 429}, [6526] = {.lex_state = 429}, [6527] = {.lex_state = 429}, - [6528] = {.lex_state = 470, .external_lex_state = 117}, - [6529] = {.lex_state = 429}, + [6528] = {.lex_state = 427}, + [6529] = {.lex_state = 412}, [6530] = {.lex_state = 429}, [6531] = {.lex_state = 429}, [6532] = {.lex_state = 429}, - [6533] = {.lex_state = 470, .external_lex_state = 117}, - [6534] = {.lex_state = 427}, - [6535] = {.lex_state = 470, .external_lex_state = 117}, - [6536] = {.lex_state = 429}, - [6537] = {.lex_state = 427}, - [6538] = {.lex_state = 540, .external_lex_state = 126}, - [6539] = {.lex_state = 427}, + [6533] = {.lex_state = 412}, + [6534] = {.lex_state = 429}, + [6535] = {.lex_state = 412}, + [6536] = {.lex_state = 482}, + [6537] = {.lex_state = 412}, + [6538] = {.lex_state = 412}, + [6539] = {.lex_state = 540}, [6540] = {.lex_state = 429}, - [6541] = {.lex_state = 540}, + [6541] = {.lex_state = 429}, [6542] = {.lex_state = 429}, - [6543] = {.lex_state = 470, .external_lex_state = 117}, + [6543] = {.lex_state = 429}, [6544] = {.lex_state = 429}, - [6545] = {.lex_state = 540}, - [6546] = {.lex_state = 540}, + [6545] = {.lex_state = 429}, + [6546] = {.lex_state = 412}, [6547] = {.lex_state = 429}, [6548] = {.lex_state = 429}, - [6549] = {.lex_state = 429}, + [6549] = {.lex_state = 427}, [6550] = {.lex_state = 429}, - [6551] = {.lex_state = 429}, - [6552] = {.lex_state = 429}, - [6553] = {.lex_state = 429}, - [6554] = {.lex_state = 429}, - [6555] = {.lex_state = 413}, - [6556] = {.lex_state = 482}, + [6551] = {.lex_state = 482}, + [6552] = {.lex_state = 468, .external_lex_state = 115}, + [6553] = {.lex_state = 412}, + [6554] = {.lex_state = 540}, + [6555] = {.lex_state = 429}, + [6556] = {.lex_state = 540}, [6557] = {.lex_state = 429}, [6558] = {.lex_state = 429}, - [6559] = {.lex_state = 482}, + [6559] = {.lex_state = 429}, [6560] = {.lex_state = 429}, - [6561] = {.lex_state = 540}, - [6562] = {.lex_state = 427}, + [6561] = {.lex_state = 412}, + [6562] = {.lex_state = 412}, [6563] = {.lex_state = 429}, [6564] = {.lex_state = 429}, - [6565] = {.lex_state = 429}, + [6565] = {.lex_state = 412}, [6566] = {.lex_state = 429}, - [6567] = {.lex_state = 399, .external_lex_state = 115}, + [6567] = {.lex_state = 412}, [6568] = {.lex_state = 429}, - [6569] = {.lex_state = 540, .external_lex_state = 126}, - [6570] = {.lex_state = 540, .external_lex_state = 126}, - [6571] = {.lex_state = 540}, - [6572] = {.lex_state = 429}, - [6573] = {.lex_state = 413}, - [6574] = {.lex_state = 540, .external_lex_state = 126}, - [6575] = {.lex_state = 540}, - [6576] = {.lex_state = 540, .external_lex_state = 126}, - [6577] = {.lex_state = 540, .external_lex_state = 126}, - [6578] = {.lex_state = 429}, - [6579] = {.lex_state = 429}, - [6580] = {.lex_state = 429}, - [6581] = {.lex_state = 429}, - [6582] = {.lex_state = 429}, - [6583] = {.lex_state = 413}, - [6584] = {.lex_state = 429}, - [6585] = {.lex_state = 429}, - [6586] = {.lex_state = 429}, - [6587] = {.lex_state = 482}, - [6588] = {.lex_state = 482}, - [6589] = {.lex_state = 540}, - [6590] = {.lex_state = 540}, - [6591] = {.lex_state = 540, .external_lex_state = 126}, - [6592] = {.lex_state = 413}, - [6593] = {.lex_state = 540, .external_lex_state = 126}, - [6594] = {.lex_state = 540, .external_lex_state = 126}, + [6569] = {.lex_state = 482}, + [6570] = {.lex_state = 412}, + [6571] = {.lex_state = 429}, + [6572] = {.lex_state = 412}, + [6573] = {.lex_state = 429}, + [6574] = {.lex_state = 482}, + [6575] = {.lex_state = 482}, + [6576] = {.lex_state = 412}, + [6577] = {.lex_state = 427}, + [6578] = {.lex_state = 482}, + [6579] = {.lex_state = 412, .external_lex_state = 126}, + [6580] = {.lex_state = 412, .external_lex_state = 126}, + [6581] = {.lex_state = 427}, + [6582] = {.lex_state = 412, .external_lex_state = 126}, + [6583] = {.lex_state = 412, .external_lex_state = 126}, + [6584] = {.lex_state = 540}, + [6585] = {.lex_state = 412, .external_lex_state = 126}, + [6586] = {.lex_state = 412}, + [6587] = {.lex_state = 429}, + [6588] = {.lex_state = 540}, + [6589] = {.lex_state = 412}, + [6590] = {.lex_state = 429}, + [6591] = {.lex_state = 482}, + [6592] = {.lex_state = 482}, + [6593] = {.lex_state = 429}, + [6594] = {.lex_state = 429}, [6595] = {.lex_state = 482}, - [6596] = {.lex_state = 429}, + [6596] = {.lex_state = 412}, [6597] = {.lex_state = 429}, [6598] = {.lex_state = 429}, - [6599] = {.lex_state = 540}, - [6600] = {.lex_state = 429}, - [6601] = {.lex_state = 429}, - [6602] = {.lex_state = 540}, - [6603] = {.lex_state = 429}, - [6604] = {.lex_state = 413}, - [6605] = {.lex_state = 429}, - [6606] = {.lex_state = 429}, - [6607] = {.lex_state = 482}, - [6608] = {.lex_state = 482}, - [6609] = {.lex_state = 540}, - [6610] = {.lex_state = 468, .external_lex_state = 115}, - [6611] = {.lex_state = 540}, - [6612] = {.lex_state = 429}, + [6599] = {.lex_state = 429}, + [6600] = {.lex_state = 482}, + [6601] = {.lex_state = 540}, + [6602] = {.lex_state = 412, .external_lex_state = 126}, + [6603] = {.lex_state = 412, .external_lex_state = 126}, + [6604] = {.lex_state = 412, .external_lex_state = 126}, + [6605] = {.lex_state = 399, .external_lex_state = 115}, + [6606] = {.lex_state = 482}, + [6607] = {.lex_state = 412, .external_lex_state = 126}, + [6608] = {.lex_state = 429}, + [6609] = {.lex_state = 429}, + [6610] = {.lex_state = 429}, + [6611] = {.lex_state = 429}, + [6612] = {.lex_state = 540}, [6613] = {.lex_state = 429}, - [6614] = {.lex_state = 540}, - [6615] = {.lex_state = 540}, - [6616] = {.lex_state = 429}, - [6617] = {.lex_state = 540}, - [6618] = {.lex_state = 413}, - [6619] = {.lex_state = 540}, + [6614] = {.lex_state = 429}, + [6615] = {.lex_state = 429}, + [6616] = {.lex_state = 482}, + [6617] = {.lex_state = 482}, + [6618] = {.lex_state = 429}, + [6619] = {.lex_state = 429}, [6620] = {.lex_state = 540}, - [6621] = {.lex_state = 429}, - [6622] = {.lex_state = 540}, - [6623] = {.lex_state = 468, .external_lex_state = 115}, - [6624] = {.lex_state = 482}, + [6621] = {.lex_state = 540}, + [6622] = {.lex_state = 412}, + [6623] = {.lex_state = 429}, + [6624] = {.lex_state = 540}, [6625] = {.lex_state = 429}, [6626] = {.lex_state = 429}, - [6627] = {.lex_state = 429}, - [6628] = {.lex_state = 427}, - [6629] = {.lex_state = 434, .external_lex_state = 118}, - [6630] = {.lex_state = 480}, - [6631] = {.lex_state = 468}, - [6632] = {.lex_state = 480}, - [6633] = {.lex_state = 468}, - [6634] = {.lex_state = 468}, - [6635] = {.lex_state = 414, .external_lex_state = 127}, - [6636] = {.lex_state = 468}, + [6627] = {.lex_state = 468, .external_lex_state = 115}, + [6628] = {.lex_state = 468}, + [6629] = {.lex_state = 429}, + [6630] = {.lex_state = 481}, + [6631] = {.lex_state = 429}, + [6632] = {.lex_state = 470, .external_lex_state = 114}, + [6633] = {.lex_state = 429}, + [6634] = {.lex_state = 470, .external_lex_state = 114}, + [6635] = {.lex_state = 468}, + [6636] = {.lex_state = 470, .external_lex_state = 114}, [6637] = {.lex_state = 468}, [6638] = {.lex_state = 470, .external_lex_state = 114}, - [6639] = {.lex_state = 414, .external_lex_state = 127}, + [6639] = {.lex_state = 468}, [6640] = {.lex_state = 470, .external_lex_state = 114}, [6641] = {.lex_state = 468}, - [6642] = {.lex_state = 470, .external_lex_state = 114}, - [6643] = {.lex_state = 468}, - [6644] = {.lex_state = 480}, - [6645] = {.lex_state = 470, .external_lex_state = 114}, - [6646] = {.lex_state = 429}, - [6647] = {.lex_state = 414, .external_lex_state = 127}, + [6642] = {.lex_state = 414, .external_lex_state = 127}, + [6643] = {.lex_state = 470, .external_lex_state = 114}, + [6644] = {.lex_state = 414, .external_lex_state = 127}, + [6645] = {.lex_state = 481}, + [6646] = {.lex_state = 412}, + [6647] = {.lex_state = 468}, [6648] = {.lex_state = 470, .external_lex_state = 114}, - [6649] = {.lex_state = 414, .external_lex_state = 127}, - [6650] = {.lex_state = 468}, - [6651] = {.lex_state = 468}, - [6652] = {.lex_state = 468}, - [6653] = {.lex_state = 429}, - [6654] = {.lex_state = 480}, - [6655] = {.lex_state = 468}, + [6649] = {.lex_state = 468}, + [6650] = {.lex_state = 429}, + [6651] = {.lex_state = 414, .external_lex_state = 127}, + [6652] = {.lex_state = 427}, + [6653] = {.lex_state = 470, .external_lex_state = 114}, + [6654] = {.lex_state = 468}, + [6655] = {.lex_state = 470, .external_lex_state = 114}, [6656] = {.lex_state = 468}, [6657] = {.lex_state = 468}, - [6658] = {.lex_state = 470, .external_lex_state = 114}, - [6659] = {.lex_state = 427}, - [6660] = {.lex_state = 540}, - [6661] = {.lex_state = 434, .external_lex_state = 114}, - [6662] = {.lex_state = 414, .external_lex_state = 127}, - [6663] = {.lex_state = 414, .external_lex_state = 127}, - [6664] = {.lex_state = 468}, - [6665] = {.lex_state = 470, .external_lex_state = 114}, - [6666] = {.lex_state = 414, .external_lex_state = 127}, - [6667] = {.lex_state = 414, .external_lex_state = 127}, - [6668] = {.lex_state = 414, .external_lex_state = 127}, - [6669] = {.lex_state = 468}, + [6658] = {.lex_state = 481}, + [6659] = {.lex_state = 429}, + [6660] = {.lex_state = 434, .external_lex_state = 114}, + [6661] = {.lex_state = 468}, + [6662] = {.lex_state = 468}, + [6663] = {.lex_state = 470, .external_lex_state = 114}, + [6664] = {.lex_state = 414, .external_lex_state = 127}, + [6665] = {.lex_state = 468}, + [6666] = {.lex_state = 470, .external_lex_state = 114}, + [6667] = {.lex_state = 468}, + [6668] = {.lex_state = 434, .external_lex_state = 118}, + [6669] = {.lex_state = 412}, [6670] = {.lex_state = 470, .external_lex_state = 114}, - [6671] = {.lex_state = 470, .external_lex_state = 114}, + [6671] = {.lex_state = 429}, [6672] = {.lex_state = 468}, [6673] = {.lex_state = 468}, - [6674] = {.lex_state = 470, .external_lex_state = 114}, - [6675] = {.lex_state = 468}, - [6676] = {.lex_state = 480}, - [6677] = {.lex_state = 470, .external_lex_state = 114}, - [6678] = {.lex_state = 434, .external_lex_state = 114}, - [6679] = {.lex_state = 468}, - [6680] = {.lex_state = 480}, - [6681] = {.lex_state = 468}, - [6682] = {.lex_state = 429}, - [6683] = {.lex_state = 470, .external_lex_state = 114}, - [6684] = {.lex_state = 429}, - [6685] = {.lex_state = 429}, - [6686] = {.lex_state = 429}, - [6687] = {.lex_state = 414, .external_lex_state = 127}, - [6688] = {.lex_state = 540}, - [6689] = {.lex_state = 480}, + [6674] = {.lex_state = 468}, + [6675] = {.lex_state = 434, .external_lex_state = 114}, + [6676] = {.lex_state = 414, .external_lex_state = 127}, + [6677] = {.lex_state = 468}, + [6678] = {.lex_state = 414, .external_lex_state = 127}, + [6679] = {.lex_state = 481}, + [6680] = {.lex_state = 468}, + [6681] = {.lex_state = 414, .external_lex_state = 127}, + [6682] = {.lex_state = 470, .external_lex_state = 114}, + [6683] = {.lex_state = 481}, + [6684] = {.lex_state = 481}, + [6685] = {.lex_state = 470, .external_lex_state = 114}, + [6686] = {.lex_state = 468}, + [6687] = {.lex_state = 468}, + [6688] = {.lex_state = 481}, + [6689] = {.lex_state = 468}, [6690] = {.lex_state = 429}, [6691] = {.lex_state = 470, .external_lex_state = 114}, - [6692] = {.lex_state = 427}, + [6692] = {.lex_state = 414, .external_lex_state = 127}, [6693] = {.lex_state = 468}, - [6694] = {.lex_state = 470, .external_lex_state = 114}, + [6694] = {.lex_state = 414, .external_lex_state = 127}, [6695] = {.lex_state = 468}, - [6696] = {.lex_state = 470, .external_lex_state = 114}, - [6697] = {.lex_state = 468}, - [6698] = {.lex_state = 480}, - [6699] = {.lex_state = 468}, - [6700] = {.lex_state = 470, .external_lex_state = 114}, - [6701] = {.lex_state = 468}, - [6702] = {.lex_state = 468}, - [6703] = {.lex_state = 468}, - [6704] = {.lex_state = 434, .external_lex_state = 114}, - [6705] = {.lex_state = 540}, + [6696] = {.lex_state = 468}, + [6697] = {.lex_state = 414, .external_lex_state = 127}, + [6698] = {.lex_state = 468}, + [6699] = {.lex_state = 427}, + [6700] = {.lex_state = 468}, + [6701] = {.lex_state = 427}, + [6702] = {.lex_state = 470, .external_lex_state = 114}, + [6703] = {.lex_state = 481}, + [6704] = {.lex_state = 427}, + [6705] = {.lex_state = 540, .external_lex_state = 128}, [6706] = {.lex_state = 540}, - [6707] = {.lex_state = 434, .external_lex_state = 114}, - [6708] = {.lex_state = 434, .external_lex_state = 114}, + [6707] = {.lex_state = 540}, + [6708] = {.lex_state = 427}, [6709] = {.lex_state = 540}, [6710] = {.lex_state = 427}, - [6711] = {.lex_state = 540}, - [6712] = {.lex_state = 413}, - [6713] = {.lex_state = 434, .external_lex_state = 114}, - [6714] = {.lex_state = 540}, - [6715] = {.lex_state = 434, .external_lex_state = 114}, + [6711] = {.lex_state = 427, .external_lex_state = 125}, + [6712] = {.lex_state = 540}, + [6713] = {.lex_state = 540}, + [6714] = {.lex_state = 434, .external_lex_state = 114}, + [6715] = {.lex_state = 540}, [6716] = {.lex_state = 434, .external_lex_state = 114}, - [6717] = {.lex_state = 434, .external_lex_state = 114}, + [6717] = {.lex_state = 540}, [6718] = {.lex_state = 540}, [6719] = {.lex_state = 427}, - [6720] = {.lex_state = 434, .external_lex_state = 114}, + [6720] = {.lex_state = 540}, [6721] = {.lex_state = 540}, - [6722] = {.lex_state = 434, .external_lex_state = 114}, - [6723] = {.lex_state = 540}, - [6724] = {.lex_state = 434, .external_lex_state = 114}, - [6725] = {.lex_state = 540}, - [6726] = {.lex_state = 540}, + [6722] = {.lex_state = 540}, + [6723] = {.lex_state = 435}, + [6724] = {.lex_state = 540}, + [6725] = {.lex_state = 435}, + [6726] = {.lex_state = 403}, [6727] = {.lex_state = 540}, [6728] = {.lex_state = 427}, [6729] = {.lex_state = 156, .external_lex_state = 119}, - [6730] = {.lex_state = 540}, + [6730] = {.lex_state = 434, .external_lex_state = 114}, [6731] = {.lex_state = 540}, - [6732] = {.lex_state = 435}, + [6732] = {.lex_state = 540}, [6733] = {.lex_state = 540}, - [6734] = {.lex_state = 480}, - [6735] = {.lex_state = 435}, + [6734] = {.lex_state = 156, .external_lex_state = 119}, + [6735] = {.lex_state = 434, .external_lex_state = 114}, [6736] = {.lex_state = 434, .external_lex_state = 114}, [6737] = {.lex_state = 427}, - [6738] = {.lex_state = 540}, + [6738] = {.lex_state = 435}, [6739] = {.lex_state = 540}, - [6740] = {.lex_state = 540}, - [6741] = {.lex_state = 434, .external_lex_state = 114}, + [6740] = {.lex_state = 434, .external_lex_state = 114}, + [6741] = {.lex_state = 540}, [6742] = {.lex_state = 540}, - [6743] = {.lex_state = 435}, + [6743] = {.lex_state = 540}, [6744] = {.lex_state = 540}, - [6745] = {.lex_state = 540}, + [6745] = {.lex_state = 156, .external_lex_state = 119}, [6746] = {.lex_state = 427}, - [6747] = {.lex_state = 540}, - [6748] = {.lex_state = 540}, - [6749] = {.lex_state = 434, .external_lex_state = 114}, + [6747] = {.lex_state = 156, .external_lex_state = 119}, + [6748] = {.lex_state = 435}, + [6749] = {.lex_state = 540}, [6750] = {.lex_state = 435}, - [6751] = {.lex_state = 540}, - [6752] = {.lex_state = 434, .external_lex_state = 114}, - [6753] = {.lex_state = 540}, + [6751] = {.lex_state = 434, .external_lex_state = 114}, + [6752] = {.lex_state = 540}, + [6753] = {.lex_state = 156, .external_lex_state = 119}, [6754] = {.lex_state = 540}, [6755] = {.lex_state = 427}, - [6756] = {.lex_state = 434, .external_lex_state = 114}, - [6757] = {.lex_state = 540}, + [6756] = {.lex_state = 156, .external_lex_state = 119}, + [6757] = {.lex_state = 156, .external_lex_state = 119}, [6758] = {.lex_state = 540}, - [6759] = {.lex_state = 156, .external_lex_state = 119}, + [6759] = {.lex_state = 434, .external_lex_state = 114}, [6760] = {.lex_state = 540}, - [6761] = {.lex_state = 540}, - [6762] = {.lex_state = 540}, - [6763] = {.lex_state = 427, .external_lex_state = 125}, + [6761] = {.lex_state = 434, .external_lex_state = 114}, + [6762] = {.lex_state = 156, .external_lex_state = 119}, + [6763] = {.lex_state = 540}, [6764] = {.lex_state = 427}, - [6765] = {.lex_state = 435}, - [6766] = {.lex_state = 434, .external_lex_state = 114}, + [6765] = {.lex_state = 540}, + [6766] = {.lex_state = 156, .external_lex_state = 119}, [6767] = {.lex_state = 540}, - [6768] = {.lex_state = 434, .external_lex_state = 114}, - [6769] = {.lex_state = 427, .external_lex_state = 125}, + [6768] = {.lex_state = 540}, + [6769] = {.lex_state = 540}, [6770] = {.lex_state = 434, .external_lex_state = 114}, [6771] = {.lex_state = 435}, - [6772] = {.lex_state = 434, .external_lex_state = 114}, + [6772] = {.lex_state = 540}, [6773] = {.lex_state = 427}, [6774] = {.lex_state = 435}, [6775] = {.lex_state = 540}, - [6776] = {.lex_state = 414, .external_lex_state = 128}, - [6777] = {.lex_state = 414, .external_lex_state = 128}, - [6778] = {.lex_state = 435}, - [6779] = {.lex_state = 480}, + [6776] = {.lex_state = 434, .external_lex_state = 114}, + [6777] = {.lex_state = 540}, + [6778] = {.lex_state = 434, .external_lex_state = 114}, + [6779] = {.lex_state = 540}, [6780] = {.lex_state = 427}, [6781] = {.lex_state = 434, .external_lex_state = 114}, - [6782] = {.lex_state = 540}, - [6783] = {.lex_state = 435}, - [6784] = {.lex_state = 434, .external_lex_state = 114}, - [6785] = {.lex_state = 480}, - [6786] = {.lex_state = 540}, + [6782] = {.lex_state = 434, .external_lex_state = 114}, + [6783] = {.lex_state = 540}, + [6784] = {.lex_state = 540}, + [6785] = {.lex_state = 540}, + [6786] = {.lex_state = 434, .external_lex_state = 114}, [6787] = {.lex_state = 427}, [6788] = {.lex_state = 434, .external_lex_state = 114}, - [6789] = {.lex_state = 427, .external_lex_state = 125}, - [6790] = {.lex_state = 434, .external_lex_state = 114}, + [6789] = {.lex_state = 540}, + [6790] = {.lex_state = 540}, [6791] = {.lex_state = 540}, - [6792] = {.lex_state = 427, .external_lex_state = 125}, + [6792] = {.lex_state = 540}, [6793] = {.lex_state = 540}, [6794] = {.lex_state = 427}, [6795] = {.lex_state = 540}, - [6796] = {.lex_state = 540}, - [6797] = {.lex_state = 434, .external_lex_state = 114}, + [6796] = {.lex_state = 156, .external_lex_state = 119}, + [6797] = {.lex_state = 540}, [6798] = {.lex_state = 435}, - [6799] = {.lex_state = 434, .external_lex_state = 114}, - [6800] = {.lex_state = 435}, + [6799] = {.lex_state = 427}, + [6800] = {.lex_state = 540}, [6801] = {.lex_state = 427}, - [6802] = {.lex_state = 434, .external_lex_state = 114}, - [6803] = {.lex_state = 480}, - [6804] = {.lex_state = 434, .external_lex_state = 114}, - [6805] = {.lex_state = 427, .external_lex_state = 125}, - [6806] = {.lex_state = 540}, - [6807] = {.lex_state = 427, .external_lex_state = 125}, + [6802] = {.lex_state = 156, .external_lex_state = 119}, + [6803] = {.lex_state = 540}, + [6804] = {.lex_state = 435}, + [6805] = {.lex_state = 414, .external_lex_state = 129}, + [6806] = {.lex_state = 414, .external_lex_state = 129}, + [6807] = {.lex_state = 435}, [6808] = {.lex_state = 427}, [6809] = {.lex_state = 540}, - [6810] = {.lex_state = 434, .external_lex_state = 114}, - [6811] = {.lex_state = 434, .external_lex_state = 114}, - [6812] = {.lex_state = 403}, - [6813] = {.lex_state = 540, .external_lex_state = 129}, - [6814] = {.lex_state = 540, .external_lex_state = 129}, + [6810] = {.lex_state = 435}, + [6811] = {.lex_state = 429}, + [6812] = {.lex_state = 434, .external_lex_state = 114}, + [6813] = {.lex_state = 540}, + [6814] = {.lex_state = 481}, [6815] = {.lex_state = 427}, - [6816] = {.lex_state = 540}, - [6817] = {.lex_state = 403}, - [6818] = {.lex_state = 540}, + [6816] = {.lex_state = 434, .external_lex_state = 114}, + [6817] = {.lex_state = 540}, + [6818] = {.lex_state = 427, .external_lex_state = 125}, [6819] = {.lex_state = 434, .external_lex_state = 114}, - [6820] = {.lex_state = 480}, + [6820] = {.lex_state = 540}, [6821] = {.lex_state = 427, .external_lex_state = 125}, [6822] = {.lex_state = 427}, - [6823] = {.lex_state = 427, .external_lex_state = 125}, + [6823] = {.lex_state = 427}, [6824] = {.lex_state = 540}, - [6825] = {.lex_state = 434, .external_lex_state = 114}, + [6825] = {.lex_state = 540}, [6826] = {.lex_state = 540}, [6827] = {.lex_state = 540}, [6828] = {.lex_state = 540}, [6829] = {.lex_state = 427}, - [6830] = {.lex_state = 427, .external_lex_state = 125}, - [6831] = {.lex_state = 427, .external_lex_state = 125}, - [6832] = {.lex_state = 540}, - [6833] = {.lex_state = 540}, - [6834] = {.lex_state = 435}, + [6830] = {.lex_state = 540}, + [6831] = {.lex_state = 540}, + [6832] = {.lex_state = 481}, + [6833] = {.lex_state = 156, .external_lex_state = 119}, + [6834] = {.lex_state = 427, .external_lex_state = 125}, [6835] = {.lex_state = 540}, [6836] = {.lex_state = 427}, - [6837] = {.lex_state = 540}, - [6838] = {.lex_state = 540}, - [6839] = {.lex_state = 540}, - [6840] = {.lex_state = 540}, - [6841] = {.lex_state = 540}, - [6842] = {.lex_state = 540}, + [6837] = {.lex_state = 427, .external_lex_state = 125}, + [6838] = {.lex_state = 435}, + [6839] = {.lex_state = 434, .external_lex_state = 114}, + [6840] = {.lex_state = 434, .external_lex_state = 114}, + [6841] = {.lex_state = 435}, + [6842] = {.lex_state = 540, .external_lex_state = 128}, [6843] = {.lex_state = 427}, - [6844] = {.lex_state = 435}, - [6845] = {.lex_state = 540}, - [6846] = {.lex_state = 434, .external_lex_state = 114}, - [6847] = {.lex_state = 434, .external_lex_state = 114}, + [6844] = {.lex_state = 540, .external_lex_state = 128}, + [6845] = {.lex_state = 434, .external_lex_state = 114}, + [6846] = {.lex_state = 540}, + [6847] = {.lex_state = 540}, [6848] = {.lex_state = 540}, - [6849] = {.lex_state = 435}, + [6849] = {.lex_state = 481}, [6850] = {.lex_state = 427}, - [6851] = {.lex_state = 540}, - [6852] = {.lex_state = 540}, - [6853] = {.lex_state = 435}, - [6854] = {.lex_state = 540}, - [6855] = {.lex_state = 540}, + [6851] = {.lex_state = 427, .external_lex_state = 125}, + [6852] = {.lex_state = 427, .external_lex_state = 125}, + [6853] = {.lex_state = 540}, + [6854] = {.lex_state = 156, .external_lex_state = 119}, + [6855] = {.lex_state = 540, .external_lex_state = 130}, [6856] = {.lex_state = 540}, [6857] = {.lex_state = 427}, - [6858] = {.lex_state = 435}, - [6859] = {.lex_state = 540}, - [6860] = {.lex_state = 427}, - [6861] = {.lex_state = 413}, - [6862] = {.lex_state = 427}, + [6858] = {.lex_state = 540}, + [6859] = {.lex_state = 427, .external_lex_state = 125}, + [6860] = {.lex_state = 427, .external_lex_state = 125}, + [6861] = {.lex_state = 434, .external_lex_state = 114}, + [6862] = {.lex_state = 540}, [6863] = {.lex_state = 434, .external_lex_state = 114}, [6864] = {.lex_state = 427}, - [6865] = {.lex_state = 434, .external_lex_state = 114}, - [6866] = {.lex_state = 540}, - [6867] = {.lex_state = 540}, + [6865] = {.lex_state = 427}, + [6866] = {.lex_state = 434, .external_lex_state = 114}, + [6867] = {.lex_state = 434, .external_lex_state = 114}, [6868] = {.lex_state = 434, .external_lex_state = 114}, [6869] = {.lex_state = 540}, - [6870] = {.lex_state = 427}, + [6870] = {.lex_state = 434, .external_lex_state = 114}, [6871] = {.lex_state = 427}, [6872] = {.lex_state = 540}, - [6873] = {.lex_state = 434, .external_lex_state = 114}, + [6873] = {.lex_state = 540}, [6874] = {.lex_state = 540}, [6875] = {.lex_state = 540}, [6876] = {.lex_state = 540}, [6877] = {.lex_state = 540}, [6878] = {.lex_state = 427}, - [6879] = {.lex_state = 540}, - [6880] = {.lex_state = 427, .external_lex_state = 125}, - [6881] = {.lex_state = 540}, + [6879] = {.lex_state = 434, .external_lex_state = 114}, + [6880] = {.lex_state = 435}, + [6881] = {.lex_state = 540, .external_lex_state = 130}, [6882] = {.lex_state = 540}, [6883] = {.lex_state = 540}, [6884] = {.lex_state = 540}, [6885] = {.lex_state = 427}, [6886] = {.lex_state = 540}, - [6887] = {.lex_state = 435}, - [6888] = {.lex_state = 156, .external_lex_state = 119}, - [6889] = {.lex_state = 540}, - [6890] = {.lex_state = 540}, - [6891] = {.lex_state = 540, .external_lex_state = 129}, + [6887] = {.lex_state = 540}, + [6888] = {.lex_state = 434, .external_lex_state = 114}, + [6889] = {.lex_state = 435}, + [6890] = {.lex_state = 434, .external_lex_state = 114}, + [6891] = {.lex_state = 434, .external_lex_state = 114}, [6892] = {.lex_state = 427}, [6893] = {.lex_state = 540}, - [6894] = {.lex_state = 435}, - [6895] = {.lex_state = 156, .external_lex_state = 119}, + [6894] = {.lex_state = 427}, + [6895] = {.lex_state = 540}, [6896] = {.lex_state = 540}, - [6897] = {.lex_state = 434, .external_lex_state = 114}, - [6898] = {.lex_state = 434, .external_lex_state = 114}, + [6897] = {.lex_state = 435}, + [6898] = {.lex_state = 540}, [6899] = {.lex_state = 427}, - [6900] = {.lex_state = 540}, - [6901] = {.lex_state = 434, .external_lex_state = 114}, - [6902] = {.lex_state = 540}, - [6903] = {.lex_state = 540}, - [6904] = {.lex_state = 540}, + [6900] = {.lex_state = 434, .external_lex_state = 114}, + [6901] = {.lex_state = 540}, + [6902] = {.lex_state = 435}, + [6903] = {.lex_state = 434, .external_lex_state = 114}, + [6904] = {.lex_state = 435}, [6905] = {.lex_state = 540}, [6906] = {.lex_state = 427}, - [6907] = {.lex_state = 540}, - [6908] = {.lex_state = 435}, - [6909] = {.lex_state = 435}, - [6910] = {.lex_state = 540}, - [6911] = {.lex_state = 435}, - [6912] = {.lex_state = 435}, + [6907] = {.lex_state = 434, .external_lex_state = 114}, + [6908] = {.lex_state = 540}, + [6909] = {.lex_state = 434, .external_lex_state = 114}, + [6910] = {.lex_state = 434, .external_lex_state = 114}, + [6911] = {.lex_state = 540}, + [6912] = {.lex_state = 434, .external_lex_state = 114}, [6913] = {.lex_state = 427}, - [6914] = {.lex_state = 540}, - [6915] = {.lex_state = 434, .external_lex_state = 114}, - [6916] = {.lex_state = 540}, + [6914] = {.lex_state = 435}, + [6915] = {.lex_state = 540}, + [6916] = {.lex_state = 434, .external_lex_state = 114}, [6917] = {.lex_state = 434, .external_lex_state = 114}, [6918] = {.lex_state = 540}, - [6919] = {.lex_state = 403}, + [6919] = {.lex_state = 414}, [6920] = {.lex_state = 427}, - [6921] = {.lex_state = 156, .external_lex_state = 119}, + [6921] = {.lex_state = 540}, [6922] = {.lex_state = 540}, [6923] = {.lex_state = 540}, [6924] = {.lex_state = 434, .external_lex_state = 114}, - [6925] = {.lex_state = 156, .external_lex_state = 119}, - [6926] = {.lex_state = 540}, + [6925] = {.lex_state = 540}, + [6926] = {.lex_state = 434, .external_lex_state = 114}, [6927] = {.lex_state = 427}, - [6928] = {.lex_state = 540, .external_lex_state = 130}, - [6929] = {.lex_state = 540}, + [6928] = {.lex_state = 435}, + [6929] = {.lex_state = 434, .external_lex_state = 114}, [6930] = {.lex_state = 540}, [6931] = {.lex_state = 540}, - [6932] = {.lex_state = 540, .external_lex_state = 129}, + [6932] = {.lex_state = 156, .external_lex_state = 119}, [6933] = {.lex_state = 540}, [6934] = {.lex_state = 427}, - [6935] = {.lex_state = 435}, + [6935] = {.lex_state = 540}, [6936] = {.lex_state = 540}, - [6937] = {.lex_state = 403}, - [6938] = {.lex_state = 434, .external_lex_state = 114}, - [6939] = {.lex_state = 434, .external_lex_state = 114}, - [6940] = {.lex_state = 540}, + [6937] = {.lex_state = 435}, + [6938] = {.lex_state = 435}, + [6939] = {.lex_state = 435}, + [6940] = {.lex_state = 434, .external_lex_state = 114}, [6941] = {.lex_state = 427}, - [6942] = {.lex_state = 435}, - [6943] = {.lex_state = 540}, + [6942] = {.lex_state = 540}, + [6943] = {.lex_state = 156, .external_lex_state = 119}, [6944] = {.lex_state = 434, .external_lex_state = 114}, [6945] = {.lex_state = 540}, - [6946] = {.lex_state = 434, .external_lex_state = 114}, + [6946] = {.lex_state = 540}, [6947] = {.lex_state = 540}, [6948] = {.lex_state = 427}, - [6949] = {.lex_state = 540}, + [6949] = {.lex_state = 481}, [6950] = {.lex_state = 540}, - [6951] = {.lex_state = 434}, + [6951] = {.lex_state = 540}, [6952] = {.lex_state = 156, .external_lex_state = 119}, - [6953] = {.lex_state = 156, .external_lex_state = 119}, - [6954] = {.lex_state = 434, .external_lex_state = 114}, + [6953] = {.lex_state = 540}, + [6954] = {.lex_state = 540}, [6955] = {.lex_state = 427}, [6956] = {.lex_state = 540}, - [6957] = {.lex_state = 434, .external_lex_state = 114}, - [6958] = {.lex_state = 540}, - [6959] = {.lex_state = 540}, - [6960] = {.lex_state = 156, .external_lex_state = 119}, - [6961] = {.lex_state = 540}, + [6957] = {.lex_state = 435}, + [6958] = {.lex_state = 435}, + [6959] = {.lex_state = 435}, + [6960] = {.lex_state = 434, .external_lex_state = 114}, + [6961] = {.lex_state = 434, .external_lex_state = 114}, [6962] = {.lex_state = 427}, - [6963] = {.lex_state = 540}, + [6963] = {.lex_state = 434, .external_lex_state = 114}, [6964] = {.lex_state = 540}, - [6965] = {.lex_state = 156, .external_lex_state = 119}, - [6966] = {.lex_state = 540}, + [6965] = {.lex_state = 540}, + [6966] = {.lex_state = 434, .external_lex_state = 114}, [6967] = {.lex_state = 540}, - [6968] = {.lex_state = 540}, + [6968] = {.lex_state = 403}, [6969] = {.lex_state = 427}, - [6970] = {.lex_state = 434, .external_lex_state = 114}, - [6971] = {.lex_state = 540}, - [6972] = {.lex_state = 435}, - [6973] = {.lex_state = 435}, + [6970] = {.lex_state = 540}, + [6971] = {.lex_state = 434, .external_lex_state = 114}, + [6972] = {.lex_state = 434, .external_lex_state = 114}, + [6973] = {.lex_state = 540}, [6974] = {.lex_state = 540}, [6975] = {.lex_state = 434, .external_lex_state = 114}, [6976] = {.lex_state = 427}, - [6977] = {.lex_state = 434, .external_lex_state = 114}, - [6978] = {.lex_state = 435}, + [6977] = {.lex_state = 540}, + [6978] = {.lex_state = 434, .external_lex_state = 114}, [6979] = {.lex_state = 540}, - [6980] = {.lex_state = 434, .external_lex_state = 114}, + [6980] = {.lex_state = 540}, [6981] = {.lex_state = 540}, [6982] = {.lex_state = 540}, [6983] = {.lex_state = 427}, - [6984] = {.lex_state = 434, .external_lex_state = 114}, + [6984] = {.lex_state = 540}, [6985] = {.lex_state = 540}, [6986] = {.lex_state = 540}, - [6987] = {.lex_state = 414, .external_lex_state = 128}, - [6988] = {.lex_state = 414, .external_lex_state = 128}, - [6989] = {.lex_state = 435}, + [6987] = {.lex_state = 540}, + [6988] = {.lex_state = 540}, + [6989] = {.lex_state = 540}, [6990] = {.lex_state = 427}, - [6991] = {.lex_state = 156, .external_lex_state = 119}, - [6992] = {.lex_state = 434, .external_lex_state = 114}, + [6991] = {.lex_state = 435}, + [6992] = {.lex_state = 540}, [6993] = {.lex_state = 540}, [6994] = {.lex_state = 540}, [6995] = {.lex_state = 540}, - [6996] = {.lex_state = 480}, + [6996] = {.lex_state = 481}, [6997] = {.lex_state = 427}, - [6998] = {.lex_state = 540}, + [6998] = {.lex_state = 434, .external_lex_state = 114}, [6999] = {.lex_state = 540}, - [7000] = {.lex_state = 427, .external_lex_state = 125}, - [7001] = {.lex_state = 434, .external_lex_state = 114}, - [7002] = {.lex_state = 427}, - [7003] = {.lex_state = 427, .external_lex_state = 125}, + [7000] = {.lex_state = 481}, + [7001] = {.lex_state = 540}, + [7002] = {.lex_state = 434, .external_lex_state = 114}, + [7003] = {.lex_state = 540}, [7004] = {.lex_state = 427}, - [7005] = {.lex_state = 540}, + [7005] = {.lex_state = 434, .external_lex_state = 114}, [7006] = {.lex_state = 435}, - [7007] = {.lex_state = 540}, - [7008] = {.lex_state = 540}, - [7009] = {.lex_state = 413}, - [7010] = {.lex_state = 434, .external_lex_state = 114}, + [7007] = {.lex_state = 434, .external_lex_state = 114}, + [7008] = {.lex_state = 434, .external_lex_state = 114}, + [7009] = {.lex_state = 434, .external_lex_state = 114}, + [7010] = {.lex_state = 540}, [7011] = {.lex_state = 427}, - [7012] = {.lex_state = 435}, - [7013] = {.lex_state = 434, .external_lex_state = 114}, - [7014] = {.lex_state = 480}, - [7015] = {.lex_state = 435}, - [7016] = {.lex_state = 427, .external_lex_state = 125}, + [7012] = {.lex_state = 414, .external_lex_state = 129}, + [7013] = {.lex_state = 435}, + [7014] = {.lex_state = 434, .external_lex_state = 114}, + [7015] = {.lex_state = 540}, + [7016] = {.lex_state = 540}, [7017] = {.lex_state = 540}, [7018] = {.lex_state = 427}, - [7019] = {.lex_state = 427, .external_lex_state = 125}, - [7020] = {.lex_state = 540}, + [7019] = {.lex_state = 414, .external_lex_state = 129}, + [7020] = {.lex_state = 414, .external_lex_state = 129}, [7021] = {.lex_state = 435}, - [7022] = {.lex_state = 540}, - [7023] = {.lex_state = 540, .external_lex_state = 129}, - [7024] = {.lex_state = 540, .external_lex_state = 129}, + [7022] = {.lex_state = 427}, + [7023] = {.lex_state = 540}, + [7024] = {.lex_state = 540}, [7025] = {.lex_state = 427}, - [7026] = {.lex_state = 434, .external_lex_state = 114}, - [7027] = {.lex_state = 540}, - [7028] = {.lex_state = 434, .external_lex_state = 114}, - [7029] = {.lex_state = 540}, - [7030] = {.lex_state = 480}, + [7026] = {.lex_state = 540}, + [7027] = {.lex_state = 434, .external_lex_state = 114}, + [7028] = {.lex_state = 481}, + [7029] = {.lex_state = 414}, + [7030] = {.lex_state = 434, .external_lex_state = 114}, [7031] = {.lex_state = 427, .external_lex_state = 125}, [7032] = {.lex_state = 427}, - [7033] = {.lex_state = 427, .external_lex_state = 125}, - [7034] = {.lex_state = 540}, - [7035] = {.lex_state = 540}, + [7033] = {.lex_state = 427}, + [7034] = {.lex_state = 427}, + [7035] = {.lex_state = 427, .external_lex_state = 125}, [7036] = {.lex_state = 434, .external_lex_state = 114}, - [7037] = {.lex_state = 434, .external_lex_state = 114}, - [7038] = {.lex_state = 435}, + [7037] = {.lex_state = 435}, + [7038] = {.lex_state = 540}, [7039] = {.lex_state = 427}, - [7040] = {.lex_state = 427, .external_lex_state = 125}, - [7041] = {.lex_state = 427, .external_lex_state = 125}, + [7040] = {.lex_state = 540}, + [7041] = {.lex_state = 540}, [7042] = {.lex_state = 540}, - [7043] = {.lex_state = 434, .external_lex_state = 114}, + [7043] = {.lex_state = 540}, [7044] = {.lex_state = 540}, - [7045] = {.lex_state = 434, .external_lex_state = 114}, + [7045] = {.lex_state = 481}, [7046] = {.lex_state = 427}, [7047] = {.lex_state = 434, .external_lex_state = 114}, - [7048] = {.lex_state = 540}, - [7049] = {.lex_state = 540}, - [7050] = {.lex_state = 427}, + [7048] = {.lex_state = 427, .external_lex_state = 125}, + [7049] = {.lex_state = 434, .external_lex_state = 114}, + [7050] = {.lex_state = 427, .external_lex_state = 125}, [7051] = {.lex_state = 540}, [7052] = {.lex_state = 540}, [7053] = {.lex_state = 427}, - [7054] = {.lex_state = 434, .external_lex_state = 114}, - [7055] = {.lex_state = 540}, - [7056] = {.lex_state = 540}, - [7057] = {.lex_state = 540}, + [7054] = {.lex_state = 156, .external_lex_state = 119}, + [7055] = {.lex_state = 540, .external_lex_state = 128}, + [7056] = {.lex_state = 540, .external_lex_state = 128}, + [7057] = {.lex_state = 156, .external_lex_state = 119}, [7058] = {.lex_state = 540}, - [7059] = {.lex_state = 427}, + [7059] = {.lex_state = 540}, [7060] = {.lex_state = 427}, [7061] = {.lex_state = 540}, - [7062] = {.lex_state = 540}, - [7063] = {.lex_state = 540}, - [7064] = {.lex_state = 540}, - [7065] = {.lex_state = 435}, - [7066] = {.lex_state = 427, .external_lex_state = 125}, + [7062] = {.lex_state = 481}, + [7063] = {.lex_state = 427, .external_lex_state = 125}, + [7064] = {.lex_state = 427, .external_lex_state = 125}, + [7065] = {.lex_state = 434, .external_lex_state = 114}, + [7066] = {.lex_state = 156, .external_lex_state = 119}, [7067] = {.lex_state = 427}, - [7068] = {.lex_state = 435}, - [7069] = {.lex_state = 435}, - [7070] = {.lex_state = 435}, - [7071] = {.lex_state = 434, .external_lex_state = 114}, - [7072] = {.lex_state = 540}, - [7073] = {.lex_state = 434, .external_lex_state = 114}, + [7068] = {.lex_state = 156, .external_lex_state = 119}, + [7069] = {.lex_state = 540}, + [7070] = {.lex_state = 540}, + [7071] = {.lex_state = 427, .external_lex_state = 125}, + [7072] = {.lex_state = 427, .external_lex_state = 125}, + [7073] = {.lex_state = 156, .external_lex_state = 119}, [7074] = {.lex_state = 427}, - [7075] = {.lex_state = 540}, - [7076] = {.lex_state = 434, .external_lex_state = 114}, - [7077] = {.lex_state = 540}, - [7078] = {.lex_state = 540}, - [7079] = {.lex_state = 540}, + [7075] = {.lex_state = 434, .external_lex_state = 114}, + [7076] = {.lex_state = 540}, + [7077] = {.lex_state = 427, .external_lex_state = 125}, + [7078] = {.lex_state = 435}, + [7079] = {.lex_state = 156, .external_lex_state = 119}, [7080] = {.lex_state = 540}, [7081] = {.lex_state = 427}, [7082] = {.lex_state = 540}, - [7083] = {.lex_state = 540}, + [7083] = {.lex_state = 414, .external_lex_state = 129}, [7084] = {.lex_state = 540}, - [7085] = {.lex_state = 540}, + [7085] = {.lex_state = 435}, [7086] = {.lex_state = 434, .external_lex_state = 114}, - [7087] = {.lex_state = 540}, + [7087] = {.lex_state = 434, .external_lex_state = 114}, [7088] = {.lex_state = 427}, - [7089] = {.lex_state = 435}, - [7090] = {.lex_state = 434, .external_lex_state = 114}, - [7091] = {.lex_state = 540}, - [7092] = {.lex_state = 434, .external_lex_state = 114}, + [7089] = {.lex_state = 540}, + [7090] = {.lex_state = 540}, + [7091] = {.lex_state = 481}, + [7092] = {.lex_state = 540}, [7093] = {.lex_state = 540}, [7094] = {.lex_state = 540}, [7095] = {.lex_state = 540}, - [7096] = {.lex_state = 540}, - [7097] = {.lex_state = 427}, - [7098] = {.lex_state = 540}, - [7099] = {.lex_state = 540}, + [7096] = {.lex_state = 427, .external_lex_state = 125}, + [7097] = {.lex_state = 540}, + [7098] = {.lex_state = 435}, + [7099] = {.lex_state = 434, .external_lex_state = 114}, [7100] = {.lex_state = 540}, - [7101] = {.lex_state = 540}, - [7102] = {.lex_state = 434, .external_lex_state = 114}, + [7101] = {.lex_state = 481}, + [7102] = {.lex_state = 540}, [7103] = {.lex_state = 540}, - [7104] = {.lex_state = 434, .external_lex_state = 114}, - [7105] = {.lex_state = 434, .external_lex_state = 114}, + [7104] = {.lex_state = 540}, + [7105] = {.lex_state = 427}, [7106] = {.lex_state = 435}, - [7107] = {.lex_state = 434, .external_lex_state = 114}, - [7108] = {.lex_state = 540}, + [7107] = {.lex_state = 435}, + [7108] = {.lex_state = 435}, [7109] = {.lex_state = 540}, - [7110] = {.lex_state = 540}, + [7110] = {.lex_state = 434, .external_lex_state = 114}, [7111] = {.lex_state = 540}, - [7112] = {.lex_state = 403}, + [7112] = {.lex_state = 540}, [7113] = {.lex_state = 540}, [7114] = {.lex_state = 540}, - [7115] = {.lex_state = 156, .external_lex_state = 119}, - [7116] = {.lex_state = 156, .external_lex_state = 119}, - [7117] = {.lex_state = 434, .external_lex_state = 114}, - [7118] = {.lex_state = 434, .external_lex_state = 114}, + [7115] = {.lex_state = 434, .external_lex_state = 114}, + [7116] = {.lex_state = 540}, + [7117] = {.lex_state = 156, .external_lex_state = 119}, + [7118] = {.lex_state = 435}, [7119] = {.lex_state = 540}, - [7120] = {.lex_state = 434, .external_lex_state = 114}, + [7120] = {.lex_state = 540}, [7121] = {.lex_state = 540}, [7122] = {.lex_state = 540}, [7123] = {.lex_state = 540}, [7124] = {.lex_state = 434, .external_lex_state = 114}, - [7125] = {.lex_state = 540}, - [7126] = {.lex_state = 435}, - [7127] = {.lex_state = 540}, + [7125] = {.lex_state = 434, .external_lex_state = 114}, + [7126] = {.lex_state = 434, .external_lex_state = 114}, + [7127] = {.lex_state = 434, .external_lex_state = 114}, [7128] = {.lex_state = 540}, - [7129] = {.lex_state = 434, .external_lex_state = 114}, + [7129] = {.lex_state = 435}, [7130] = {.lex_state = 434, .external_lex_state = 114}, - [7131] = {.lex_state = 435}, - [7132] = {.lex_state = 434, .external_lex_state = 114}, - [7133] = {.lex_state = 156, .external_lex_state = 119}, - [7134] = {.lex_state = 434, .external_lex_state = 114}, - [7135] = {.lex_state = 434, .external_lex_state = 114}, - [7136] = {.lex_state = 156, .external_lex_state = 119}, + [7131] = {.lex_state = 540}, + [7132] = {.lex_state = 540}, + [7133] = {.lex_state = 540}, + [7134] = {.lex_state = 435}, + [7135] = {.lex_state = 435}, + [7136] = {.lex_state = 434, .external_lex_state = 114}, [7137] = {.lex_state = 429}, - [7138] = {.lex_state = 540}, - [7139] = {.lex_state = 435}, - [7140] = {.lex_state = 480}, + [7138] = {.lex_state = 435}, + [7139] = {.lex_state = 403}, + [7140] = {.lex_state = 481}, [7141] = {.lex_state = 427}, [7142] = {.lex_state = 540}, [7143] = {.lex_state = 434, .external_lex_state = 114}, [7144] = {.lex_state = 540}, [7145] = {.lex_state = 540, .external_lex_state = 130}, - [7146] = {.lex_state = 156, .external_lex_state = 119}, + [7146] = {.lex_state = 434, .external_lex_state = 114}, [7147] = {.lex_state = 540}, [7148] = {.lex_state = 434, .external_lex_state = 114}, - [7149] = {.lex_state = 540}, + [7149] = {.lex_state = 434, .external_lex_state = 114}, [7150] = {.lex_state = 540, .external_lex_state = 130}, - [7151] = {.lex_state = 434, .external_lex_state = 114}, + [7151] = {.lex_state = 540}, [7152] = {.lex_state = 540}, - [7153] = {.lex_state = 414, .external_lex_state = 128}, - [7154] = {.lex_state = 414, .external_lex_state = 128}, - [7155] = {.lex_state = 435}, + [7153] = {.lex_state = 540}, + [7154] = {.lex_state = 540}, + [7155] = {.lex_state = 540}, [7156] = {.lex_state = 540}, [7157] = {.lex_state = 540}, - [7158] = {.lex_state = 434, .external_lex_state = 114}, - [7159] = {.lex_state = 480}, - [7160] = {.lex_state = 156, .external_lex_state = 119}, + [7158] = {.lex_state = 156, .external_lex_state = 119}, + [7159] = {.lex_state = 540}, + [7160] = {.lex_state = 435}, [7161] = {.lex_state = 434, .external_lex_state = 114}, - [7162] = {.lex_state = 427, .external_lex_state = 125}, + [7162] = {.lex_state = 540}, [7163] = {.lex_state = 434, .external_lex_state = 114}, - [7164] = {.lex_state = 435}, - [7165] = {.lex_state = 427, .external_lex_state = 125}, - [7166] = {.lex_state = 434, .external_lex_state = 114}, + [7164] = {.lex_state = 434, .external_lex_state = 114}, + [7165] = {.lex_state = 540}, + [7166] = {.lex_state = 540}, [7167] = {.lex_state = 540}, - [7168] = {.lex_state = 434, .external_lex_state = 114}, - [7169] = {.lex_state = 540}, + [7168] = {.lex_state = 540}, + [7169] = {.lex_state = 427}, [7170] = {.lex_state = 540}, - [7171] = {.lex_state = 540}, - [7172] = {.lex_state = 434, .external_lex_state = 114}, - [7173] = {.lex_state = 480}, + [7171] = {.lex_state = 403}, + [7172] = {.lex_state = 540}, + [7173] = {.lex_state = 540}, [7174] = {.lex_state = 540}, - [7175] = {.lex_state = 427, .external_lex_state = 125}, - [7176] = {.lex_state = 434, .external_lex_state = 114}, - [7177] = {.lex_state = 427, .external_lex_state = 125}, + [7175] = {.lex_state = 435}, + [7176] = {.lex_state = 427, .external_lex_state = 125}, + [7177] = {.lex_state = 434, .external_lex_state = 114}, [7178] = {.lex_state = 540}, - [7179] = {.lex_state = 434, .external_lex_state = 114}, - [7180] = {.lex_state = 540, .external_lex_state = 129}, - [7181] = {.lex_state = 540, .external_lex_state = 129}, - [7182] = {.lex_state = 434, .external_lex_state = 114}, + [7179] = {.lex_state = 414, .external_lex_state = 129}, + [7180] = {.lex_state = 414, .external_lex_state = 129}, + [7181] = {.lex_state = 435}, + [7182] = {.lex_state = 540}, [7183] = {.lex_state = 540}, - [7184] = {.lex_state = 434, .external_lex_state = 114}, + [7184] = {.lex_state = 540}, [7185] = {.lex_state = 540}, - [7186] = {.lex_state = 540}, - [7187] = {.lex_state = 480}, - [7188] = {.lex_state = 427, .external_lex_state = 125}, + [7186] = {.lex_state = 481}, + [7187] = {.lex_state = 156, .external_lex_state = 119}, + [7188] = {.lex_state = 156, .external_lex_state = 119}, [7189] = {.lex_state = 427, .external_lex_state = 125}, - [7190] = {.lex_state = 540}, - [7191] = {.lex_state = 540}, + [7190] = {.lex_state = 434, .external_lex_state = 114}, + [7191] = {.lex_state = 403}, [7192] = {.lex_state = 540}, [7193] = {.lex_state = 540}, - [7194] = {.lex_state = 540}, - [7195] = {.lex_state = 427, .external_lex_state = 125}, - [7196] = {.lex_state = 427, .external_lex_state = 125}, + [7194] = {.lex_state = 435}, + [7195] = {.lex_state = 156, .external_lex_state = 119}, + [7196] = {.lex_state = 156, .external_lex_state = 119}, [7197] = {.lex_state = 540}, - [7198] = {.lex_state = 540}, - [7199] = {.lex_state = 434, .external_lex_state = 114}, - [7200] = {.lex_state = 540}, - [7201] = {.lex_state = 540}, - [7202] = {.lex_state = 540}, - [7203] = {.lex_state = 540}, - [7204] = {.lex_state = 540}, + [7198] = {.lex_state = 435}, + [7199] = {.lex_state = 481}, + [7200] = {.lex_state = 434}, + [7201] = {.lex_state = 427, .external_lex_state = 125}, + [7202] = {.lex_state = 156, .external_lex_state = 119}, + [7203] = {.lex_state = 427, .external_lex_state = 125}, + [7204] = {.lex_state = 434, .external_lex_state = 114}, [7205] = {.lex_state = 156, .external_lex_state = 119}, - [7206] = {.lex_state = 540}, - [7207] = {.lex_state = 540}, - [7208] = {.lex_state = 435}, - [7209] = {.lex_state = 540}, - [7210] = {.lex_state = 435}, - [7211] = {.lex_state = 435}, - [7212] = {.lex_state = 540}, - [7213] = {.lex_state = 434, .external_lex_state = 114}, - [7214] = {.lex_state = 434, .external_lex_state = 114}, + [7206] = {.lex_state = 540, .external_lex_state = 128}, + [7207] = {.lex_state = 540, .external_lex_state = 128}, + [7208] = {.lex_state = 540}, + [7209] = {.lex_state = 434, .external_lex_state = 114}, + [7210] = {.lex_state = 540}, + [7211] = {.lex_state = 540}, + [7212] = {.lex_state = 481}, + [7213] = {.lex_state = 427, .external_lex_state = 125}, + [7214] = {.lex_state = 427, .external_lex_state = 125}, [7215] = {.lex_state = 540}, - [7216] = {.lex_state = 434, .external_lex_state = 114}, + [7216] = {.lex_state = 540}, [7217] = {.lex_state = 540}, [7218] = {.lex_state = 540}, - [7219] = {.lex_state = 434, .external_lex_state = 114}, - [7220] = {.lex_state = 435}, - [7221] = {.lex_state = 434, .external_lex_state = 114}, - [7222] = {.lex_state = 414, .external_lex_state = 128}, + [7219] = {.lex_state = 540}, + [7220] = {.lex_state = 427, .external_lex_state = 125}, + [7221] = {.lex_state = 427, .external_lex_state = 125}, + [7222] = {.lex_state = 540}, [7223] = {.lex_state = 540}, [7224] = {.lex_state = 434, .external_lex_state = 114}, [7225] = {.lex_state = 540}, [7226] = {.lex_state = 540}, [7227] = {.lex_state = 540}, - [7228] = {.lex_state = 434, .external_lex_state = 114}, + [7228] = {.lex_state = 540}, [7229] = {.lex_state = 434, .external_lex_state = 114}, - [7230] = {.lex_state = 540}, - [7231] = {.lex_state = 480}, - [7232] = {.lex_state = 403}, - [7233] = {.lex_state = 540}, - [7234] = {.lex_state = 540}, - [7235] = {.lex_state = 540}, + [7230] = {.lex_state = 427, .external_lex_state = 125}, + [7231] = {.lex_state = 434, .external_lex_state = 114}, + [7232] = {.lex_state = 427, .external_lex_state = 125}, + [7233] = {.lex_state = 434, .external_lex_state = 114}, + [7234] = {.lex_state = 435}, + [7235] = {.lex_state = 434, .external_lex_state = 114}, [7236] = {.lex_state = 540}, [7237] = {.lex_state = 434, .external_lex_state = 114}, - [7238] = {.lex_state = 434, .external_lex_state = 114}, + [7238] = {.lex_state = 540}, [7239] = {.lex_state = 540}, - [7240] = {.lex_state = 540}, + [7240] = {.lex_state = 434, .external_lex_state = 114}, [7241] = {.lex_state = 540}, - [7242] = {.lex_state = 540}, + [7242] = {.lex_state = 434, .external_lex_state = 114}, [7243] = {.lex_state = 540}, [7244] = {.lex_state = 540}, [7245] = {.lex_state = 434, .external_lex_state = 114}, [7246] = {.lex_state = 434, .external_lex_state = 114}, [7247] = {.lex_state = 540}, - [7248] = {.lex_state = 156, .external_lex_state = 119}, - [7249] = {.lex_state = 434, .external_lex_state = 114}, + [7248] = {.lex_state = 540}, + [7249] = {.lex_state = 435}, [7250] = {.lex_state = 540}, - [7251] = {.lex_state = 434, .external_lex_state = 114}, - [7252] = {.lex_state = 540}, - [7253] = {.lex_state = 156, .external_lex_state = 119}, + [7251] = {.lex_state = 540}, + [7252] = {.lex_state = 434, .external_lex_state = 114}, + [7253] = {.lex_state = 540}, [7254] = {.lex_state = 540}, - [7255] = {.lex_state = 434, .external_lex_state = 114}, - [7256] = {.lex_state = 540}, + [7255] = {.lex_state = 403}, + [7256] = {.lex_state = 434, .external_lex_state = 114}, [7257] = {.lex_state = 435}, - [7258] = {.lex_state = 435}, - [7259] = {.lex_state = 427}, - [7260] = {.lex_state = 414, .external_lex_state = 128}, - [7261] = {.lex_state = 414, .external_lex_state = 128}, - [7262] = {.lex_state = 435}, + [7258] = {.lex_state = 540}, + [7259] = {.lex_state = 540}, + [7260] = {.lex_state = 540}, + [7261] = {.lex_state = 427}, + [7262] = {.lex_state = 434, .external_lex_state = 114}, [7263] = {.lex_state = 540}, - [7264] = {.lex_state = 540}, - [7265] = {.lex_state = 435}, - [7266] = {.lex_state = 540, .external_lex_state = 129}, - [7267] = {.lex_state = 540, .external_lex_state = 129}, - [7268] = {.lex_state = 434, .external_lex_state = 114}, + [7264] = {.lex_state = 434, .external_lex_state = 114}, + [7265] = {.lex_state = 540}, + [7266] = {.lex_state = 540}, + [7267] = {.lex_state = 540}, + [7268] = {.lex_state = 540}, [7269] = {.lex_state = 435}, - [7270] = {.lex_state = 540}, - [7271] = {.lex_state = 434, .external_lex_state = 114}, - [7272] = {.lex_state = 540}, - [7273] = {.lex_state = 540}, - [7274] = {.lex_state = 434, .external_lex_state = 114}, - [7275] = {.lex_state = 540}, - [7276] = {.lex_state = 540}, - [7277] = {.lex_state = 156, .external_lex_state = 119}, - [7278] = {.lex_state = 429}, - [7279] = {.lex_state = 540}, - [7280] = {.lex_state = 540}, - [7281] = {.lex_state = 480}, - [7282] = {.lex_state = 427}, + [7270] = {.lex_state = 434, .external_lex_state = 114}, + [7271] = {.lex_state = 540}, + [7272] = {.lex_state = 435}, + [7273] = {.lex_state = 435}, + [7274] = {.lex_state = 435}, + [7275] = {.lex_state = 435}, + [7276] = {.lex_state = 429}, + [7277] = {.lex_state = 434, .external_lex_state = 114}, + [7278] = {.lex_state = 434, .external_lex_state = 114}, + [7279] = {.lex_state = 481}, + [7280] = {.lex_state = 427}, + [7281] = {.lex_state = 540}, + [7282] = {.lex_state = 434, .external_lex_state = 114}, [7283] = {.lex_state = 540}, - [7284] = {.lex_state = 540}, - [7285] = {.lex_state = 540}, - [7286] = {.lex_state = 540, .external_lex_state = 130}, + [7284] = {.lex_state = 540, .external_lex_state = 130}, + [7285] = {.lex_state = 434, .external_lex_state = 114}, + [7286] = {.lex_state = 434, .external_lex_state = 114}, [7287] = {.lex_state = 540}, - [7288] = {.lex_state = 540}, + [7288] = {.lex_state = 540, .external_lex_state = 130}, [7289] = {.lex_state = 540}, - [7290] = {.lex_state = 540, .external_lex_state = 130}, + [7290] = {.lex_state = 540}, [7291] = {.lex_state = 540}, - [7292] = {.lex_state = 435}, + [7292] = {.lex_state = 540}, [7293] = {.lex_state = 434, .external_lex_state = 114}, [7294] = {.lex_state = 540}, - [7295] = {.lex_state = 434, .external_lex_state = 114}, - [7296] = {.lex_state = 540}, - [7297] = {.lex_state = 540}, - [7298] = {.lex_state = 156, .external_lex_state = 119}, - [7299] = {.lex_state = 540}, - [7300] = {.lex_state = 434, .external_lex_state = 114}, - [7301] = {.lex_state = 540}, - [7302] = {.lex_state = 540}, - [7303] = {.lex_state = 540}, - [7304] = {.lex_state = 540}, - [7305] = {.lex_state = 540}, + [7295] = {.lex_state = 414, .external_lex_state = 129}, + [7296] = {.lex_state = 414, .external_lex_state = 129}, + [7297] = {.lex_state = 435}, + [7298] = {.lex_state = 540}, + [7299] = {.lex_state = 434, .external_lex_state = 114}, + [7300] = {.lex_state = 540}, + [7301] = {.lex_state = 540, .external_lex_state = 128}, + [7302] = {.lex_state = 540, .external_lex_state = 128}, + [7303] = {.lex_state = 434, .external_lex_state = 114}, + [7304] = {.lex_state = 481}, + [7305] = {.lex_state = 427}, [7306] = {.lex_state = 540}, - [7307] = {.lex_state = 540}, - [7308] = {.lex_state = 427}, - [7309] = {.lex_state = 156, .external_lex_state = 119}, + [7307] = {.lex_state = 427, .external_lex_state = 125}, + [7308] = {.lex_state = 481}, + [7309] = {.lex_state = 540}, [7310] = {.lex_state = 540}, - [7311] = {.lex_state = 435}, - [7312] = {.lex_state = 480}, - [7313] = {.lex_state = 434, .external_lex_state = 114}, + [7311] = {.lex_state = 434, .external_lex_state = 114}, + [7312] = {.lex_state = 434, .external_lex_state = 114}, + [7313] = {.lex_state = 540}, [7314] = {.lex_state = 540}, [7315] = {.lex_state = 434, .external_lex_state = 114}, - [7316] = {.lex_state = 540}, - [7317] = {.lex_state = 427}, - [7318] = {.lex_state = 480}, - [7319] = {.lex_state = 403}, + [7316] = {.lex_state = 435}, + [7317] = {.lex_state = 434, .external_lex_state = 114}, + [7318] = {.lex_state = 540}, + [7319] = {.lex_state = 434, .external_lex_state = 114}, [7320] = {.lex_state = 540}, - [7321] = {.lex_state = 427}, + [7321] = {.lex_state = 434, .external_lex_state = 114}, [7322] = {.lex_state = 540}, [7323] = {.lex_state = 540}, [7324] = {.lex_state = 540}, [7325] = {.lex_state = 540}, - [7326] = {.lex_state = 434, .external_lex_state = 114}, - [7327] = {.lex_state = 540}, + [7326] = {.lex_state = 540}, + [7327] = {.lex_state = 434, .external_lex_state = 114}, [7328] = {.lex_state = 540}, - [7329] = {.lex_state = 540}, - [7330] = {.lex_state = 540}, - [7331] = {.lex_state = 540}, - [7332] = {.lex_state = 540}, + [7329] = {.lex_state = 434, .external_lex_state = 114}, + [7330] = {.lex_state = 434, .external_lex_state = 114}, + [7331] = {.lex_state = 434, .external_lex_state = 114}, + [7332] = {.lex_state = 427}, [7333] = {.lex_state = 540}, [7334] = {.lex_state = 540}, - [7335] = {.lex_state = 540}, + [7335] = {.lex_state = 434, .external_lex_state = 114}, [7336] = {.lex_state = 540}, - [7337] = {.lex_state = 434, .external_lex_state = 114}, + [7337] = {.lex_state = 427}, [7338] = {.lex_state = 540}, - [7339] = {.lex_state = 540}, - [7340] = {.lex_state = 427, .external_lex_state = 125}, - [7341] = {.lex_state = 540}, - [7342] = {.lex_state = 156, .external_lex_state = 119}, + [7339] = {.lex_state = 434, .external_lex_state = 114}, + [7340] = {.lex_state = 540}, + [7341] = {.lex_state = 403}, + [7342] = {.lex_state = 540, .external_lex_state = 128}, [7343] = {.lex_state = 540}, - [7344] = {.lex_state = 434, .external_lex_state = 114}, - [7345] = {.lex_state = 435}, - [7346] = {.lex_state = 434, .external_lex_state = 114}, - [7347] = {.lex_state = 414, .external_lex_state = 128}, - [7348] = {.lex_state = 414, .external_lex_state = 128}, - [7349] = {.lex_state = 435}, + [7344] = {.lex_state = 540}, + [7345] = {.lex_state = 540}, + [7346] = {.lex_state = 540}, + [7347] = {.lex_state = 434, .external_lex_state = 114}, + [7348] = {.lex_state = 540}, + [7349] = {.lex_state = 540}, [7350] = {.lex_state = 540}, [7351] = {.lex_state = 540}, [7352] = {.lex_state = 540}, - [7353] = {.lex_state = 540}, - [7354] = {.lex_state = 540}, - [7355] = {.lex_state = 427}, + [7353] = {.lex_state = 435}, + [7354] = {.lex_state = 434, .external_lex_state = 114}, + [7355] = {.lex_state = 403}, [7356] = {.lex_state = 540}, [7357] = {.lex_state = 540}, - [7358] = {.lex_state = 427}, - [7359] = {.lex_state = 434, .external_lex_state = 114}, - [7360] = {.lex_state = 413}, + [7358] = {.lex_state = 414}, + [7359] = {.lex_state = 540}, + [7360] = {.lex_state = 540}, [7361] = {.lex_state = 540}, - [7362] = {.lex_state = 427}, + [7362] = {.lex_state = 540}, [7363] = {.lex_state = 427}, - [7364] = {.lex_state = 435}, + [7364] = {.lex_state = 427}, [7365] = {.lex_state = 434, .external_lex_state = 114}, - [7366] = {.lex_state = 427, .external_lex_state = 125}, - [7367] = {.lex_state = 540}, + [7366] = {.lex_state = 435}, + [7367] = {.lex_state = 434, .external_lex_state = 114}, [7368] = {.lex_state = 540}, - [7369] = {.lex_state = 429}, + [7369] = {.lex_state = 414, .external_lex_state = 129}, [7370] = {.lex_state = 540}, [7371] = {.lex_state = 434, .external_lex_state = 114}, - [7372] = {.lex_state = 403}, - [7373] = {.lex_state = 434, .external_lex_state = 114}, - [7374] = {.lex_state = 434, .external_lex_state = 114}, + [7372] = {.lex_state = 540}, + [7373] = {.lex_state = 540}, + [7374] = {.lex_state = 435}, [7375] = {.lex_state = 540}, - [7376] = {.lex_state = 540}, - [7377] = {.lex_state = 540}, - [7378] = {.lex_state = 540}, - [7379] = {.lex_state = 427}, - [7380] = {.lex_state = 429}, + [7376] = {.lex_state = 429}, + [7377] = {.lex_state = 414, .external_lex_state = 129}, + [7378] = {.lex_state = 435}, + [7379] = {.lex_state = 481}, + [7380] = {.lex_state = 427}, [7381] = {.lex_state = 427}, [7382] = {.lex_state = 540}, - [7383] = {.lex_state = 480}, - [7384] = {.lex_state = 427}, + [7383] = {.lex_state = 540}, + [7384] = {.lex_state = 540, .external_lex_state = 130}, [7385] = {.lex_state = 540}, - [7386] = {.lex_state = 435}, - [7387] = {.lex_state = 540}, + [7386] = {.lex_state = 540}, + [7387] = {.lex_state = 427}, [7388] = {.lex_state = 540, .external_lex_state = 130}, - [7389] = {.lex_state = 434, .external_lex_state = 114}, - [7390] = {.lex_state = 540}, - [7391] = {.lex_state = 427}, - [7392] = {.lex_state = 540, .external_lex_state = 130}, + [7389] = {.lex_state = 540}, + [7390] = {.lex_state = 434, .external_lex_state = 114}, + [7391] = {.lex_state = 414}, + [7392] = {.lex_state = 434, .external_lex_state = 114}, [7393] = {.lex_state = 540}, - [7394] = {.lex_state = 540}, + [7394] = {.lex_state = 435}, [7395] = {.lex_state = 540}, - [7396] = {.lex_state = 156, .external_lex_state = 119}, - [7397] = {.lex_state = 156, .external_lex_state = 119}, + [7396] = {.lex_state = 540}, + [7397] = {.lex_state = 434, .external_lex_state = 114}, [7398] = {.lex_state = 540}, [7399] = {.lex_state = 540}, - [7400] = {.lex_state = 540}, - [7401] = {.lex_state = 427}, + [7400] = {.lex_state = 434, .external_lex_state = 114}, + [7401] = {.lex_state = 540}, [7402] = {.lex_state = 540}, [7403] = {.lex_state = 403}, - [7404] = {.lex_state = 435}, - [7405] = {.lex_state = 434, .external_lex_state = 114}, - [7406] = {.lex_state = 540}, - [7407] = {.lex_state = 156, .external_lex_state = 119}, + [7404] = {.lex_state = 434, .external_lex_state = 114}, + [7405] = {.lex_state = 540}, + [7406] = {.lex_state = 481}, + [7407] = {.lex_state = 427}, [7408] = {.lex_state = 540}, - [7409] = {.lex_state = 156, .external_lex_state = 119}, - [7410] = {.lex_state = 480}, - [7411] = {.lex_state = 427}, - [7412] = {.lex_state = 540}, - [7413] = {.lex_state = 540, .external_lex_state = 130}, - [7414] = {.lex_state = 434, .external_lex_state = 114}, - [7415] = {.lex_state = 435}, - [7416] = {.lex_state = 540, .external_lex_state = 130}, - [7417] = {.lex_state = 156, .external_lex_state = 119}, - [7418] = {.lex_state = 540}, - [7419] = {.lex_state = 434, .external_lex_state = 114}, - [7420] = {.lex_state = 156, .external_lex_state = 119}, - [7421] = {.lex_state = 427}, - [7422] = {.lex_state = 540, .external_lex_state = 130}, - [7423] = {.lex_state = 434, .external_lex_state = 114}, + [7409] = {.lex_state = 540, .external_lex_state = 130}, + [7410] = {.lex_state = 434, .external_lex_state = 114}, + [7411] = {.lex_state = 540}, + [7412] = {.lex_state = 540, .external_lex_state = 130}, + [7413] = {.lex_state = 540}, + [7414] = {.lex_state = 540}, + [7415] = {.lex_state = 540}, + [7416] = {.lex_state = 427}, + [7417] = {.lex_state = 434, .external_lex_state = 114}, + [7418] = {.lex_state = 435}, + [7419] = {.lex_state = 540}, + [7420] = {.lex_state = 427}, + [7421] = {.lex_state = 434, .external_lex_state = 114}, + [7422] = {.lex_state = 540}, + [7423] = {.lex_state = 540}, [7424] = {.lex_state = 540}, - [7425] = {.lex_state = 434, .external_lex_state = 114}, - [7426] = {.lex_state = 434, .external_lex_state = 114}, - [7427] = {.lex_state = 434, .external_lex_state = 114}, - [7428] = {.lex_state = 435}, - [7429] = {.lex_state = 435}, - [7430] = {.lex_state = 480}, - [7431] = {.lex_state = 435}, - [7432] = {.lex_state = 434, .external_lex_state = 114}, - [7433] = {.lex_state = 434, .external_lex_state = 114}, + [7425] = {.lex_state = 540}, + [7426] = {.lex_state = 540}, + [7427] = {.lex_state = 540}, + [7428] = {.lex_state = 427}, + [7429] = {.lex_state = 434, .external_lex_state = 114}, + [7430] = {.lex_state = 427}, + [7431] = {.lex_state = 427}, + [7432] = {.lex_state = 427}, + [7433] = {.lex_state = 427}, [7434] = {.lex_state = 427}, [7435] = {.lex_state = 427}, [7436] = {.lex_state = 427}, @@ -28600,22 +28607,22 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [7487] = {.lex_state = 427}, [7488] = {.lex_state = 427}, [7489] = {.lex_state = 427}, - [7490] = {.lex_state = 427}, - [7491] = {.lex_state = 427}, - [7492] = {.lex_state = 427}, - [7493] = {.lex_state = 427}, + [7490] = {.lex_state = 435}, + [7491] = {.lex_state = 434, .external_lex_state = 114}, + [7492] = {.lex_state = 434, .external_lex_state = 114}, + [7493] = {.lex_state = 540}, [7494] = {.lex_state = 540}, [7495] = {.lex_state = 540}, - [7496] = {.lex_state = 427, .external_lex_state = 125}, + [7496] = {.lex_state = 540}, [7497] = {.lex_state = 540}, - [7498] = {.lex_state = 540}, - [7499] = {.lex_state = 480}, - [7500] = {.lex_state = 414, .external_lex_state = 128}, + [7498] = {.lex_state = 434, .external_lex_state = 114}, + [7499] = {.lex_state = 540}, + [7500] = {.lex_state = 427}, [7501] = {.lex_state = 540}, - [7502] = {.lex_state = 427}, - [7503] = {.lex_state = 427}, - [7504] = {.lex_state = 434, .external_lex_state = 114}, - [7505] = {.lex_state = 427, .external_lex_state = 125}, + [7502] = {.lex_state = 434, .external_lex_state = 114}, + [7503] = {.lex_state = 540}, + [7504] = {.lex_state = 427, .external_lex_state = 125}, + [7505] = {.lex_state = 540}, [7506] = {.lex_state = 540}, [7507] = {.lex_state = 434, .external_lex_state = 114}, [7508] = {.lex_state = 540}, @@ -28660,7 +28667,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [7547] = {.lex_state = 427}, [7548] = {.lex_state = 427}, [7549] = {.lex_state = 427}, - [7550] = {.lex_state = 427}, + [7550] = {.lex_state = 434, .external_lex_state = 114}, [7551] = {.lex_state = 427}, [7552] = {.lex_state = 427}, [7553] = {.lex_state = 427}, @@ -28680,7 +28687,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [7567] = {.lex_state = 427}, [7568] = {.lex_state = 427}, [7569] = {.lex_state = 427}, - [7570] = {.lex_state = 434, .external_lex_state = 114}, + [7570] = {.lex_state = 427, .external_lex_state = 125}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -28841,45 +28848,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [STATE(1)] = { - [sym_program] = STATE(6879), - [sym__statements] = STATE(7212), - [sym__statement_not_pipeline] = STATE(6618), - [sym_redirected_statement] = STATE(4555), - [sym_for_statement] = STATE(4555), - [sym_c_style_for_statement] = STATE(4555), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4555), - [sym_function_definition] = STATE(4555), - [sym_compound_statement] = STATE(4555), - [sym_subshell] = STATE(4555), - [sym_pipeline] = STATE(4952), - [sym_list] = STATE(4555), - [sym_negated_command] = STATE(4555), - [sym_test_command] = STATE(4555), - [sym_declaration_command] = STATE(4555), - [sym_unset_command] = STATE(4555), - [sym_command] = STATE(4555), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(868), - [sym_variable_assignments] = STATE(4555), - [sym_subscript] = STATE(6655), - [sym_file_redirect] = STATE(2125), - [sym_herestring_redirect] = STATE(2207), - [sym_arithmetic_expansion] = STATE(944), - [sym_brace_expression] = STATE(944), - [sym_concatenation] = STATE(1431), - [sym_string] = STATE(944), - [sym_translated_string] = STATE(944), - [sym_number] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_expansion] = STATE(944), - [sym_command_substitution] = STATE(944), - [sym_process_substitution] = STATE(944), - [aux_sym__statements_repeat1] = STATE(425), - [aux_sym_redirected_statement_repeat2] = STATE(4333), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1181), + [sym_program] = STATE(7112), + [sym__statements] = STATE(6727), + [sym__statement_not_pipeline] = STATE(6488), + [sym_redirected_statement] = STATE(4367), + [sym_for_statement] = STATE(4367), + [sym_c_style_for_statement] = STATE(4367), + [sym_while_statement] = STATE(4175), + [sym_if_statement] = STATE(4175), + [sym_case_statement] = STATE(4367), + [sym_function_definition] = STATE(4367), + [sym_compound_statement] = STATE(4367), + [sym_subshell] = STATE(4367), + [sym_pipeline] = STATE(4906), + [sym_list] = STATE(4367), + [sym_negated_command] = STATE(4367), + [sym_test_command] = STATE(4367), + [sym_declaration_command] = STATE(4367), + [sym_unset_command] = STATE(4367), + [sym_command] = STATE(4367), + [sym_command_name] = STATE(529), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4367), + [sym_subscript] = STATE(6635), + [sym_file_redirect] = STATE(2241), + [sym_incomplete_redirect] = STATE(2241), + [sym_herestring_redirect] = STATE(2242), + [sym_arithmetic_expansion] = STATE(986), + [sym_brace_expression] = STATE(986), + [sym_concatenation] = STATE(1499), + [sym_string] = STATE(986), + [sym_translated_string] = STATE(986), + [sym_number] = STATE(986), + [sym_simple_expansion] = STATE(986), + [sym_expansion] = STATE(986), + [sym_command_substitution] = STATE(986), + [sym_process_substitution] = STATE(986), + [aux_sym__statements_repeat1] = STATE(416), + [aux_sym_redirected_statement_repeat2] = STATE(4242), + [aux_sym_command_repeat1] = STATE(883), + [aux_sym__literal_repeat1] = STATE(1216), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -28935,50 +28943,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(79), }, [STATE(2)] = { - [sym__statements] = STATE(7341), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym__expression] = STATE(2995), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(467), - [sym_brace_expression] = STATE(467), - [sym_concatenation] = STATE(490), - [sym_string] = STATE(467), - [sym_translated_string] = STATE(467), - [sym_number] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(489), + [sym__statements] = STATE(6706), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym__expression] = STATE(2896), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(465), + [sym_brace_expression] = STATE(465), + [sym_concatenation] = STATE(491), + [sym_string] = STATE(465), + [sym_translated_string] = STATE(465), + [sym_number] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(488), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29038,50 +29047,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(139), }, [STATE(3)] = { - [sym__statements] = STATE(6767), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym__expression] = STATE(2948), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(467), - [sym_brace_expression] = STATE(467), - [sym_concatenation] = STATE(490), - [sym_string] = STATE(467), - [sym_translated_string] = STATE(467), - [sym_number] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(489), + [sym__statements] = STATE(6887), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym__expression] = STATE(2863), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(465), + [sym_brace_expression] = STATE(465), + [sym_concatenation] = STATE(491), + [sym_string] = STATE(465), + [sym_translated_string] = STATE(465), + [sym_number] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(488), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29141,50 +29151,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(139), }, [STATE(4)] = { - [sym__statements] = STATE(6922), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym__expression] = STATE(2948), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(467), - [sym_brace_expression] = STATE(467), - [sym_concatenation] = STATE(490), - [sym_string] = STATE(467), - [sym_translated_string] = STATE(467), - [sym_number] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(489), + [sym__statements] = STATE(6953), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym__expression] = STATE(2863), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(465), + [sym_brace_expression] = STATE(465), + [sym_concatenation] = STATE(491), + [sym_string] = STATE(465), + [sym_translated_string] = STATE(465), + [sym_number] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(488), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29244,38 +29255,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(139), }, [STATE(5)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5224), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5125), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2805), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(3062), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29283,8 +29295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -29346,38 +29358,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(6)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5191), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5112), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2943), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(3003), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29385,8 +29398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -29448,38 +29461,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(7)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5212), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5116), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2982), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(2880), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29487,8 +29501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -29550,38 +29564,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(8)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5221), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5062), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2998), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(3001), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29589,8 +29604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -29652,38 +29667,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(9)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5199), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5109), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2845), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(2915), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29691,8 +29707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -29754,38 +29770,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(10)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5228), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5124), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2811), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(2979), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29793,8 +29810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -29856,38 +29873,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(11)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5175), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5031), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2824), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(2975), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29895,8 +29913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -29958,38 +29976,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(12)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5234), - [sym_for_statement] = STATE(5306), - [sym_c_style_for_statement] = STATE(5306), - [sym_while_statement] = STATE(5094), - [sym_if_statement] = STATE(5094), - [sym_case_statement] = STATE(5306), - [sym_function_definition] = STATE(5306), - [sym_compound_statement] = STATE(5306), - [sym_subshell] = STATE(5306), - [sym_pipeline] = STATE(5517), - [sym_list] = STATE(5306), - [sym_negated_command] = STATE(5306), - [sym_test_command] = STATE(5306), - [sym_declaration_command] = STATE(5306), - [sym_unset_command] = STATE(5306), - [sym_command] = STATE(5306), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5121), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(5019), + [sym_if_statement] = STATE(5019), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5152), + [sym_pipeline] = STATE(5453), + [sym_list] = STATE(5152), + [sym_negated_command] = STATE(5152), + [sym_test_command] = STATE(5152), + [sym_declaration_command] = STATE(5152), + [sym_unset_command] = STATE(5152), + [sym_command] = STATE(5152), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1744), - [sym_variable_assignments] = STATE(5306), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2603), - [sym_herestring_redirect] = STATE(2604), - [sym__expression] = STATE(2818), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(1635), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2816), + [sym_incomplete_redirect] = STATE(2816), + [sym_herestring_redirect] = STATE(2817), + [sym__expression] = STATE(2937), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -29997,8 +30016,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5038), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_redirected_statement_repeat2] = STATE(5018), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -30060,24 +30079,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(219), }, [STATE(13)] = { - [sym__expression] = STATE(2956), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(2344), - [sym_brace_expression] = STATE(2344), - [sym_concatenation] = STATE(2518), - [sym_string] = STATE(2344), - [sym_translated_string] = STATE(2344), - [sym_number] = STATE(2344), - [sym_simple_expansion] = STATE(2344), - [sym_expansion] = STATE(2344), - [sym_command_substitution] = STATE(2344), - [sym_process_substitution] = STATE(2344), - [aux_sym__literal_repeat1] = STATE(2312), - [aux_sym_concatenation_repeat1] = STATE(466), + [sym__expression] = STATE(2862), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(2487), + [sym_brace_expression] = STATE(2487), + [sym_concatenation] = STATE(2506), + [sym_string] = STATE(2487), + [sym_translated_string] = STATE(2487), + [sym_number] = STATE(2487), + [sym_simple_expansion] = STATE(2487), + [sym_expansion] = STATE(2487), + [sym_command_substitution] = STATE(2487), + [sym_process_substitution] = STATE(2487), + [aux_sym__literal_repeat1] = STATE(2434), + [aux_sym_concatenation_repeat1] = STATE(463), [sym_word] = ACTIONS(235), [anon_sym_SEMI] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(239), @@ -30159,46 +30178,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(282), }, [STATE(14)] = { - [aux_sym__terminated_statement] = STATE(21), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6177), - [sym_else_clause] = STATE(7159), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6177), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6168), + [sym_else_clause] = STATE(7199), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6168), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30256,46 +30276,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(15)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6229), - [sym_else_clause] = STATE(7430), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6229), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(17), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6156), + [sym_else_clause] = STATE(7000), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6156), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30353,46 +30374,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(16)] = { - [aux_sym__terminated_statement] = STATE(18), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6219), - [sym_else_clause] = STATE(6785), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6219), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6245), + [sym_else_clause] = STATE(6832), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6245), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30450,46 +30472,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(17)] = { - [aux_sym__terminated_statement] = STATE(15), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6200), - [sym_else_clause] = STATE(7231), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6200), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6184), + [sym_else_clause] = STATE(7091), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6184), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30547,46 +30570,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(18)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6270), - [sym_else_clause] = STATE(6803), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6270), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(16), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6231), + [sym_else_clause] = STATE(6814), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6231), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30645,45 +30669,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(19)] = { [aux_sym__terminated_statement] = STATE(20), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6222), - [sym_else_clause] = STATE(6996), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6222), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6170), + [sym_else_clause] = STATE(7028), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6170), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30741,46 +30766,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(20)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6247), - [sym_else_clause] = STATE(7014), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6247), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6181), + [sym_else_clause] = STATE(7045), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6181), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30838,46 +30864,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(21)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6181), - [sym_else_clause] = STATE(7173), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6181), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(14), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_elif_clause] = STATE(6152), + [sym_else_clause] = STATE(7186), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_if_statement_repeat1] = STATE(6152), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30935,2527 +30962,2553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(22)] = { - [sym__expression] = STATE(2994), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), - [sym_arithmetic_expansion] = STATE(2309), - [sym_brace_expression] = STATE(2309), - [sym_concatenation] = STATE(2847), - [sym_string] = STATE(2309), - [sym_translated_string] = STATE(2309), - [sym_number] = STATE(2309), - [sym_simple_expansion] = STATE(2309), - [sym_expansion] = STATE(2309), - [sym_command_substitution] = STATE(2309), - [sym_process_substitution] = STATE(2309), - [aux_sym__literal_repeat1] = STATE(2549), - [aux_sym_concatenation_repeat1] = STATE(492), + [sym__statements] = STATE(6410), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), + [sym_command_name] = STATE(524), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), [sym_word] = ACTIONS(356), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(239), - [anon_sym_DASH_EQ] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(239), - [anon_sym_SLASH_EQ] = ACTIONS(239), - [anon_sym_PERCENT_EQ] = ACTIONS(239), - [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), - [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(360), - [anon_sym_AMP_AMP] = ACTIONS(360), - [anon_sym_PIPE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(241), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(241), - [anon_sym_GT] = ACTIONS(241), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_PERCENT] = ACTIONS(239), - [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_PIPE_AMP] = ACTIONS(276), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_RBRACK] = ACTIONS(358), - [anon_sym_EQ_TILDE] = ACTIONS(241), - [anon_sym_AMP_GT] = ACTIONS(237), - [anon_sym_AMP_GT_GT] = ACTIONS(276), - [anon_sym_LT_AMP] = ACTIONS(237), - [anon_sym_GT_AMP] = ACTIONS(237), - [anon_sym_GT_PIPE] = ACTIONS(276), - [anon_sym_LT_AMP_DASH] = ACTIONS(276), - [anon_sym_GT_AMP_DASH] = ACTIONS(276), - [anon_sym_LT_LT_DASH] = ACTIONS(276), - [anon_sym_LT_LT_LT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_PLUS_PLUS2] = ACTIONS(181), - [anon_sym_DASH_DASH2] = ACTIONS(181), - [anon_sym_DASH2] = ACTIONS(183), - [anon_sym_PLUS2] = ACTIONS(183), - [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), - [aux_sym_concatenation_token1] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym__special_character] = ACTIONS(375), - [anon_sym_DQUOTE] = ACTIONS(377), - [sym_raw_string] = ACTIONS(379), - [sym_ansi_c_string] = ACTIONS(379), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(376), + [anon_sym_SEMI_SEMI] = ACTIONS(378), + [anon_sym_SEMI_AMP] = ACTIONS(380), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(276), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(395), - [sym__bare_dollar] = ACTIONS(276), - [sym__brace_start] = ACTIONS(397), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(23)] = { - [sym__statements] = STATE(6423), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(421), - [anon_sym_SEMI_AMP] = ACTIONS(423), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(436), + [anon_sym_for] = ACTIONS(439), + [anon_sym_select] = ACTIONS(442), + [anon_sym_LPAREN_LPAREN] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_while] = ACTIONS(457), + [anon_sym_until] = ACTIONS(457), + [anon_sym_do] = ACTIONS(460), + [anon_sym_if] = ACTIONS(462), + [anon_sym_then] = ACTIONS(460), + [anon_sym_fi] = ACTIONS(460), + [anon_sym_elif] = ACTIONS(460), + [anon_sym_else] = ACTIONS(460), + [anon_sym_case] = ACTIONS(465), + [anon_sym_function] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(480), + [anon_sym_declare] = ACTIONS(483), + [anon_sym_typeset] = ACTIONS(483), + [anon_sym_export] = ACTIONS(483), + [anon_sym_readonly] = ACTIONS(483), + [anon_sym_local] = ACTIONS(483), + [anon_sym_unset] = ACTIONS(486), + [anon_sym_unsetenv] = ACTIONS(486), + [anon_sym_AMP_GT] = ACTIONS(448), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(448), + [anon_sym_GT_AMP] = ACTIONS(448), + [anon_sym_GT_PIPE] = ACTIONS(451), + [anon_sym_LT_AMP_DASH] = ACTIONS(489), + [anon_sym_GT_AMP_DASH] = ACTIONS(489), + [anon_sym_LT_LT_LT] = ACTIONS(492), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(495), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(498), + [anon_sym_DOLLAR] = ACTIONS(501), + [sym__special_character] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym_raw_string] = ACTIONS(510), + [sym_ansi_c_string] = ACTIONS(510), + [aux_sym_number_token1] = ACTIONS(513), + [aux_sym_number_token2] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(519), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(522), + [anon_sym_BQUOTE] = ACTIONS(525), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(528), + [anon_sym_LT_LPAREN] = ACTIONS(531), + [anon_sym_GT_LPAREN] = ACTIONS(531), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(534), + [sym_variable_name] = ACTIONS(537), + [sym_test_operator] = ACTIONS(540), + [sym__brace_start] = ACTIONS(543), }, [STATE(24)] = { - [sym__statements] = STATE(6414), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6408), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(479), - [anon_sym_SEMI_SEMI] = ACTIONS(481), - [anon_sym_SEMI_AMP] = ACTIONS(483), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(483), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(546), + [anon_sym_SEMI_SEMI] = ACTIONS(548), + [anon_sym_SEMI_AMP] = ACTIONS(550), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(550), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(25)] = { - [sym__statements] = STATE(6417), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6388), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(485), - [anon_sym_SEMI_SEMI] = ACTIONS(487), - [anon_sym_SEMI_AMP] = ACTIONS(489), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(491), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(552), + [anon_sym_SEMI_SEMI] = ACTIONS(554), + [anon_sym_SEMI_AMP] = ACTIONS(556), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(558), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(26)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(493), - [anon_sym_for] = ACTIONS(496), - [anon_sym_select] = ACTIONS(499), - [anon_sym_LPAREN_LPAREN] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_while] = ACTIONS(514), - [anon_sym_until] = ACTIONS(514), - [anon_sym_do] = ACTIONS(517), - [anon_sym_if] = ACTIONS(519), - [anon_sym_then] = ACTIONS(517), - [anon_sym_fi] = ACTIONS(517), - [anon_sym_elif] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_case] = ACTIONS(522), - [anon_sym_function] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_LBRACK] = ACTIONS(534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(537), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_typeset] = ACTIONS(540), - [anon_sym_export] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_local] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(543), - [anon_sym_unsetenv] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_AMP_GT_GT] = ACTIONS(508), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_GT_PIPE] = ACTIONS(508), - [anon_sym_LT_AMP_DASH] = ACTIONS(546), - [anon_sym_GT_AMP_DASH] = ACTIONS(546), - [anon_sym_LT_LT_LT] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(552), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(558), - [sym__special_character] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(585), - [anon_sym_LT_LPAREN] = ACTIONS(588), - [anon_sym_GT_LPAREN] = ACTIONS(588), + [sym__statements] = STATE(6412), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), + [sym_command_name] = STATE(524), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(560), + [anon_sym_SEMI_SEMI] = ACTIONS(562), + [anon_sym_SEMI_AMP] = ACTIONS(564), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(564), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(591), - [sym_variable_name] = ACTIONS(594), - [sym_test_operator] = ACTIONS(597), - [sym__brace_start] = ACTIONS(600), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(27)] = { - [sym__statements] = STATE(6416), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6398), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(603), - [anon_sym_SEMI_SEMI] = ACTIONS(605), - [anon_sym_SEMI_AMP] = ACTIONS(607), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(607), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(566), + [anon_sym_SEMI_SEMI] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(570), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(572), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(28)] = { - [sym__statements] = STATE(6441), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6402), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(609), - [anon_sym_SEMI_SEMI] = ACTIONS(611), - [anon_sym_SEMI_AMP] = ACTIONS(613), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(613), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(574), + [anon_sym_SEMI_SEMI] = ACTIONS(576), + [anon_sym_SEMI_AMP] = ACTIONS(578), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(578), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(29)] = { - [sym__statements] = STATE(6440), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6406), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(615), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_SEMI_AMP] = ACTIONS(619), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(621), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(580), + [anon_sym_SEMI_SEMI] = ACTIONS(582), + [anon_sym_SEMI_AMP] = ACTIONS(584), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(584), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(30)] = { - [sym__statements] = STATE(6442), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6409), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(623), - [anon_sym_SEMI_SEMI] = ACTIONS(625), - [anon_sym_SEMI_AMP] = ACTIONS(627), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(627), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(586), + [anon_sym_SEMI_SEMI] = ACTIONS(588), + [anon_sym_SEMI_AMP] = ACTIONS(590), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(592), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(31)] = { - [sym__statements] = STATE(6443), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6411), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(631), - [anon_sym_SEMI_AMP] = ACTIONS(633), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(635), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(586), + [anon_sym_SEMI_SEMI] = ACTIONS(594), + [anon_sym_SEMI_AMP] = ACTIONS(596), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(598), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(32)] = { - [sym__statements] = STATE(6444), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6427), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(629), - [anon_sym_SEMI_SEMI] = ACTIONS(637), - [anon_sym_SEMI_AMP] = ACTIONS(639), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(641), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(566), + [anon_sym_SEMI_SEMI] = ACTIONS(600), + [anon_sym_SEMI_AMP] = ACTIONS(602), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(604), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(33)] = { - [sym__statements] = STATE(6448), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6416), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(615), - [anon_sym_SEMI_SEMI] = ACTIONS(643), - [anon_sym_SEMI_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(647), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(552), + [anon_sym_SEMI_SEMI] = ACTIONS(606), + [anon_sym_SEMI_AMP] = ACTIONS(608), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(610), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(34)] = { - [sym__statements] = STATE(6397), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), + [sym__statements] = STATE(6443), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4168), + [sym_for_statement] = STATE(4168), + [sym_c_style_for_statement] = STATE(4168), + [sym_while_statement] = STATE(3783), + [sym_if_statement] = STATE(3783), + [sym_case_statement] = STATE(4168), + [sym_function_definition] = STATE(4168), + [sym_compound_statement] = STATE(4168), + [sym_subshell] = STATE(4168), + [sym_pipeline] = STATE(4345), + [sym_list] = STATE(4168), + [sym_negated_command] = STATE(4168), + [sym_test_command] = STATE(4168), + [sym_declaration_command] = STATE(4168), + [sym_unset_command] = STATE(4168), + [sym_command] = STATE(4168), [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(649), - [anon_sym_SEMI_AMP] = ACTIONS(651), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(653), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym_variable_assignment] = STATE(798), + [sym_variable_assignments] = STATE(4168), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_esac] = ACTIONS(376), + [anon_sym_SEMI_SEMI] = ACTIONS(612), + [anon_sym_SEMI_AMP] = ACTIONS(614), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(616), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(35)] = { - [sym__statements] = STATE(6409), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(485), - [anon_sym_SEMI_SEMI] = ACTIONS(655), - [anon_sym_SEMI_AMP] = ACTIONS(657), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(659), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym__statements] = STATE(6480), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), + [sym_command_name] = STATE(526), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(638), + [anon_sym_SEMI_AMP] = ACTIONS(590), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(592), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(36)] = { - [sym__statements] = STATE(6541), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6467), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [anon_sym_SEMI_AMP] = ACTIONS(633), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(635), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_SEMI_AMP] = ACTIONS(550), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(550), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(37)] = { - [sym__statements] = STATE(6561), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6539), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(735), - [anon_sym_SEMI_AMP] = ACTIONS(483), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(483), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(694), + [anon_sym_SEMI_AMP] = ACTIONS(584), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(584), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(38)] = { - [sym__statements] = STATE(6590), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6506), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_SEMI_AMP] = ACTIONS(613), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(613), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_SEMI_SEMI] = ACTIONS(696), + [anon_sym_SEMI_AMP] = ACTIONS(578), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(578), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(39)] = { - [sym__statements] = STATE(6589), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), - [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(739), - [anon_sym_SEMI_AMP] = ACTIONS(619), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(621), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym__expression] = STATE(2895), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), + [sym_arithmetic_expansion] = STATE(2383), + [sym_brace_expression] = STATE(2383), + [sym_concatenation] = STATE(3002), + [sym_string] = STATE(2383), + [sym_translated_string] = STATE(2383), + [sym_number] = STATE(2383), + [sym_simple_expansion] = STATE(2383), + [sym_expansion] = STATE(2383), + [sym_command_substitution] = STATE(2383), + [sym_process_substitution] = STATE(2383), + [aux_sym__literal_repeat1] = STATE(2513), + [aux_sym_concatenation_repeat1] = STATE(492), + [sym_word] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(239), + [anon_sym_PLUS_PLUS] = ACTIONS(239), + [anon_sym_DASH_DASH] = ACTIONS(239), + [anon_sym_PLUS_EQ] = ACTIONS(239), + [anon_sym_DASH_EQ] = ACTIONS(239), + [anon_sym_STAR_EQ] = ACTIONS(239), + [anon_sym_SLASH_EQ] = ACTIONS(239), + [anon_sym_PERCENT_EQ] = ACTIONS(239), + [anon_sym_STAR_STAR_EQ] = ACTIONS(239), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), + [anon_sym_CARET_EQ] = ACTIONS(239), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(702), + [anon_sym_AMP_AMP] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_LT] = ACTIONS(241), + [anon_sym_GT] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(241), + [anon_sym_GT_GT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_SLASH] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_STAR_STAR] = ACTIONS(239), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_PIPE_AMP] = ACTIONS(276), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_EQ_TILDE] = ACTIONS(241), + [anon_sym_AMP_GT] = ACTIONS(237), + [anon_sym_AMP_GT_GT] = ACTIONS(276), + [anon_sym_LT_AMP] = ACTIONS(237), + [anon_sym_GT_AMP] = ACTIONS(237), + [anon_sym_GT_PIPE] = ACTIONS(276), + [anon_sym_LT_AMP_DASH] = ACTIONS(276), + [anon_sym_GT_AMP_DASH] = ACTIONS(276), + [anon_sym_LT_LT_DASH] = ACTIONS(276), + [anon_sym_LT_LT_LT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_PLUS_PLUS2] = ACTIONS(181), + [anon_sym_DASH_DASH2] = ACTIONS(181), + [anon_sym_DASH2] = ACTIONS(183), + [anon_sym_PLUS2] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), + [aux_sym_concatenation_token1] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__special_character] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [sym_raw_string] = ACTIONS(721), + [sym_ansi_c_string] = ACTIONS(721), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(276), + [sym__concat] = ACTIONS(713), + [sym_test_operator] = ACTIONS(737), + [sym__bare_dollar] = ACTIONS(276), + [sym__brace_start] = ACTIONS(739), }, [STATE(40)] = { - [sym__statements] = STATE(6619), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6505), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(741), - [anon_sym_SEMI_AMP] = ACTIONS(627), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(627), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(564), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(564), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(41)] = { - [sym__statements] = STATE(6473), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6476), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_SEMI_AMP] = ACTIONS(607), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(607), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(570), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(572), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(42)] = { - [sym__statements] = STATE(6545), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6496), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(745), - [anon_sym_SEMI_AMP] = ACTIONS(639), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(641), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(596), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(598), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(43)] = { - [sym__statements] = STATE(6546), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6508), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_SEMI_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(647), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(602), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(604), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(44)] = { - [sym__statements] = STATE(6571), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6556), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_SEMI_AMP] = ACTIONS(651), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(653), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(608), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(610), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(45)] = { - [sym__statements] = STATE(6602), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6620), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_SEMI_AMP] = ACTIONS(657), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(659), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(614), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(616), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(46)] = { - [sym__statements] = STATE(6620), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6621), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_SEMI_AMP] = ACTIONS(489), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(491), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(380), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(382), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(47)] = { - [sym__statements] = STATE(6455), - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4412), - [sym_for_statement] = STATE(4412), - [sym_c_style_for_statement] = STATE(4412), - [sym_while_statement] = STATE(4150), - [sym_if_statement] = STATE(4150), - [sym_case_statement] = STATE(4412), - [sym_function_definition] = STATE(4412), - [sym_compound_statement] = STATE(4412), - [sym_subshell] = STATE(4412), - [sym_pipeline] = STATE(4811), - [sym_list] = STATE(4412), - [sym_negated_command] = STATE(4412), - [sym_test_command] = STATE(4412), - [sym_declaration_command] = STATE(4412), - [sym_unset_command] = STATE(4412), - [sym_command] = STATE(4412), + [sym__statements] = STATE(6624), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4245), + [sym_for_statement] = STATE(4245), + [sym_c_style_for_statement] = STATE(4245), + [sym_while_statement] = STATE(4083), + [sym_if_statement] = STATE(4083), + [sym_case_statement] = STATE(4245), + [sym_function_definition] = STATE(4245), + [sym_compound_statement] = STATE(4245), + [sym_subshell] = STATE(4245), + [sym_pipeline] = STATE(4612), + [sym_list] = STATE(4245), + [sym_negated_command] = STATE(4245), + [sym_test_command] = STATE(4245), + [sym_declaration_command] = STATE(4245), + [sym_unset_command] = STATE(4245), + [sym_command] = STATE(4245), [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(855), - [sym_variable_assignments] = STATE(4412), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(424), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4245), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), [anon_sym_SEMI_SEMI] = ACTIONS(755), - [anon_sym_SEMI_AMP] = ACTIONS(423), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(425), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [anon_sym_SEMI_AMP] = ACTIONS(556), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(558), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(48)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(49), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33513,43 +33566,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(49)] = { - [aux_sym__terminated_statement] = STATE(48), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33607,84 +33661,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(50)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_do_group] = STATE(4564), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [sym__statements] = STATE(7128), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(763), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(761), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_AMP_GT] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(85), + [anon_sym_LT_AMP] = ACTIONS(83), + [anon_sym_GT_AMP] = ACTIONS(83), + [anon_sym_GT_PIPE] = ACTIONS(85), + [anon_sym_LT_AMP_DASH] = ACTIONS(97), + [anon_sym_GT_AMP_DASH] = ACTIONS(97), + [anon_sym_LT_LT_LT] = ACTIONS(99), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -33694,50 +33749,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(51)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_do_group] = STATE(5515), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_do_group] = STATE(4553), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33748,7 +33804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(763), + [anon_sym_do] = ACTIONS(773), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -33793,84 +33849,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(52)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_do_group] = STATE(4649), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(767), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(775), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(314), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -33880,50 +33937,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, [STATE(53)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_do_group] = STATE(4719), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_do_group] = STATE(5470), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33979,84 +34037,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(54)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_do_group] = STATE(4876), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(779), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(779), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(314), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34066,51 +34125,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, [STATE(55)] = { - [sym__statements] = STATE(7225), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7128), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34125,7 +34185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34146,10 +34206,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34161,49 +34221,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(56)] = { - [sym__statements] = STATE(7367), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7248), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34218,7 +34279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34239,10 +34300,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34254,49 +34315,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(57)] = { - [sym__statements] = STATE(6775), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7318), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34311,7 +34373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34332,10 +34394,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34347,142 +34409,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(58)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_do_group] = STATE(4613), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(787), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), - [sym__brace_start] = ACTIONS(340), - }, - [STATE(59)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7398), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34490,14 +34460,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(83), [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(787), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34518,10 +34488,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34533,49 +34503,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(60)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(59)] = { + [sym__statements] = STATE(7128), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34583,14 +34554,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(83), [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(789), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34611,10 +34582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34626,49 +34597,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(61)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(60)] = { + [sym__statements] = STATE(7128), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34676,14 +34648,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(83), [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(791), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34704,10 +34676,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34719,49 +34691,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(62)] = { - [sym__statements] = STATE(7494), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(1939), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(61)] = { + [sym__statements] = STATE(7128), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34769,13 +34742,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(83), [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(793), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34796,10 +34770,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34811,87 +34785,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(63)] = { - [sym__statements] = STATE(7334), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(62)] = { + [sym__statements] = STATE(7344), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(314), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34901,49 +34876,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(64)] = { - [aux_sym__terminated_statement] = STATE(66), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(63)] = { + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -34954,11 +34930,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(805), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(795), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -34998,44 +34974,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(65)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(64)] = { + [aux_sym__terminated_statement] = STATE(81), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35046,8 +35023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(807), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(797), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -35090,44 +35067,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(66)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(65)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35138,11 +35116,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(809), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(799), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35182,268 +35160,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(67)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(493), - [anon_sym_for] = ACTIONS(496), - [anon_sym_select] = ACTIONS(499), - [anon_sym_LPAREN_LPAREN] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_while] = ACTIONS(514), - [anon_sym_until] = ACTIONS(514), - [anon_sym_if] = ACTIONS(519), - [anon_sym_case] = ACTIONS(522), - [anon_sym_function] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_LBRACK] = ACTIONS(534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(537), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_typeset] = ACTIONS(540), - [anon_sym_export] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_local] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(543), - [anon_sym_unsetenv] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_AMP_GT_GT] = ACTIONS(508), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_GT_PIPE] = ACTIONS(508), - [anon_sym_LT_AMP_DASH] = ACTIONS(546), - [anon_sym_GT_AMP_DASH] = ACTIONS(546), - [anon_sym_LT_LT_LT] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(552), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(558), - [sym__special_character] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(585), - [anon_sym_LT_LPAREN] = ACTIONS(588), - [anon_sym_GT_LPAREN] = ACTIONS(588), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(591), - [sym_variable_name] = ACTIONS(594), - [sym_test_operator] = ACTIONS(597), - [sym__brace_start] = ACTIONS(600), - }, - [STATE(68)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(493), - [anon_sym_for] = ACTIONS(496), - [anon_sym_select] = ACTIONS(499), - [anon_sym_LPAREN_LPAREN] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_while] = ACTIONS(514), - [anon_sym_until] = ACTIONS(514), - [anon_sym_done] = ACTIONS(517), - [anon_sym_if] = ACTIONS(519), - [anon_sym_case] = ACTIONS(522), - [anon_sym_function] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_LBRACK] = ACTIONS(534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(537), - [anon_sym_declare] = ACTIONS(540), - [anon_sym_typeset] = ACTIONS(540), - [anon_sym_export] = ACTIONS(540), - [anon_sym_readonly] = ACTIONS(540), - [anon_sym_local] = ACTIONS(540), - [anon_sym_unset] = ACTIONS(543), - [anon_sym_unsetenv] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(505), - [anon_sym_AMP_GT_GT] = ACTIONS(508), - [anon_sym_LT_AMP] = ACTIONS(505), - [anon_sym_GT_AMP] = ACTIONS(505), - [anon_sym_GT_PIPE] = ACTIONS(508), - [anon_sym_LT_AMP_DASH] = ACTIONS(546), - [anon_sym_GT_AMP_DASH] = ACTIONS(546), - [anon_sym_LT_LT_LT] = ACTIONS(549), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(552), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(558), - [sym__special_character] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(564), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [aux_sym_number_token1] = ACTIONS(570), - [aux_sym_number_token2] = ACTIONS(573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(585), - [anon_sym_LT_LPAREN] = ACTIONS(588), - [anon_sym_GT_LPAREN] = ACTIONS(588), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(591), - [sym_variable_name] = ACTIONS(594), - [sym_test_operator] = ACTIONS(597), - [sym__brace_start] = ACTIONS(600), - }, - [STATE(69)] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [STATE(66)] = { + [sym__statements] = STATE(7290), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_AMP_GT] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(85), + [anon_sym_LT_AMP] = ACTIONS(83), + [anon_sym_GT_AMP] = ACTIONS(83), + [anon_sym_GT_PIPE] = ACTIONS(85), + [anon_sym_LT_AMP_DASH] = ACTIONS(97), + [anon_sym_GT_AMP_DASH] = ACTIONS(97), + [anon_sym_LT_LT_LT] = ACTIONS(99), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -35453,49 +35248,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(70)] = { - [aux_sym__terminated_statement] = STATE(83), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(67)] = { + [aux_sym__terminated_statement] = STATE(70), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35506,11 +35302,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(805), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(811), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35550,84 +35346,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(71)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [STATE(68)] = { + [sym__statements] = STATE(7038), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2250), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_AMP_GT] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(85), + [anon_sym_LT_AMP] = ACTIONS(83), + [anon_sym_GT_AMP] = ACTIONS(83), + [anon_sym_GT_PIPE] = ACTIONS(85), + [anon_sym_LT_AMP_DASH] = ACTIONS(97), + [anon_sym_GT_AMP_DASH] = ACTIONS(97), + [anon_sym_LT_LT_LT] = ACTIONS(99), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -35637,49 +35434,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(72)] = { - [aux_sym__terminated_statement] = STATE(73), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(69)] = { + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35690,8 +35488,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(809), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(813), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -35734,44 +35532,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(73)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(70)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35782,11 +35581,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(811), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35826,44 +35625,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(74)] = { - [aux_sym__terminated_statement] = STATE(75), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(71)] = { + [aux_sym__terminated_statement] = STATE(73), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35874,11 +35674,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(817), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(813), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35918,136 +35718,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(75)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(298), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), + [STATE(72)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(436), + [anon_sym_for] = ACTIONS(439), + [anon_sym_select] = ACTIONS(442), + [anon_sym_LPAREN_LPAREN] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_while] = ACTIONS(457), + [anon_sym_until] = ACTIONS(457), + [anon_sym_if] = ACTIONS(462), + [anon_sym_case] = ACTIONS(465), + [anon_sym_function] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(480), + [anon_sym_declare] = ACTIONS(483), + [anon_sym_typeset] = ACTIONS(483), + [anon_sym_export] = ACTIONS(483), + [anon_sym_readonly] = ACTIONS(483), + [anon_sym_local] = ACTIONS(483), + [anon_sym_unset] = ACTIONS(486), + [anon_sym_unsetenv] = ACTIONS(486), + [anon_sym_AMP_GT] = ACTIONS(448), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(448), + [anon_sym_GT_AMP] = ACTIONS(448), + [anon_sym_GT_PIPE] = ACTIONS(451), + [anon_sym_LT_AMP_DASH] = ACTIONS(489), + [anon_sym_GT_AMP_DASH] = ACTIONS(489), + [anon_sym_LT_LT_LT] = ACTIONS(492), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(495), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(498), + [anon_sym_DOLLAR] = ACTIONS(501), + [sym__special_character] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym_raw_string] = ACTIONS(510), + [sym_ansi_c_string] = ACTIONS(510), + [aux_sym_number_token1] = ACTIONS(513), + [aux_sym_number_token2] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(519), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(522), + [anon_sym_BQUOTE] = ACTIONS(525), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(528), + [anon_sym_LT_LPAREN] = ACTIONS(531), + [anon_sym_GT_LPAREN] = ACTIONS(531), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), - [sym__brace_start] = ACTIONS(340), + [sym_file_descriptor] = ACTIONS(534), + [sym_variable_name] = ACTIONS(537), + [sym_test_operator] = ACTIONS(540), + [sym__brace_start] = ACTIONS(543), }, - [STATE(76)] = { - [aux_sym__terminated_statement] = STATE(77), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(73)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36058,7 +35860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(817), + [anon_sym_done] = ACTIONS(821), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -36102,136 +35904,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(77)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(819), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), + [STATE(74)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(436), + [anon_sym_for] = ACTIONS(439), + [anon_sym_select] = ACTIONS(442), + [anon_sym_LPAREN_LPAREN] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_while] = ACTIONS(457), + [anon_sym_until] = ACTIONS(457), + [anon_sym_done] = ACTIONS(460), + [anon_sym_if] = ACTIONS(462), + [anon_sym_case] = ACTIONS(465), + [anon_sym_function] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(480), + [anon_sym_declare] = ACTIONS(483), + [anon_sym_typeset] = ACTIONS(483), + [anon_sym_export] = ACTIONS(483), + [anon_sym_readonly] = ACTIONS(483), + [anon_sym_local] = ACTIONS(483), + [anon_sym_unset] = ACTIONS(486), + [anon_sym_unsetenv] = ACTIONS(486), + [anon_sym_AMP_GT] = ACTIONS(448), + [anon_sym_AMP_GT_GT] = ACTIONS(451), + [anon_sym_LT_AMP] = ACTIONS(448), + [anon_sym_GT_AMP] = ACTIONS(448), + [anon_sym_GT_PIPE] = ACTIONS(451), + [anon_sym_LT_AMP_DASH] = ACTIONS(489), + [anon_sym_GT_AMP_DASH] = ACTIONS(489), + [anon_sym_LT_LT_LT] = ACTIONS(492), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(495), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(498), + [anon_sym_DOLLAR] = ACTIONS(501), + [sym__special_character] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym_raw_string] = ACTIONS(510), + [sym_ansi_c_string] = ACTIONS(510), + [aux_sym_number_token1] = ACTIONS(513), + [aux_sym_number_token2] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(519), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(522), + [anon_sym_BQUOTE] = ACTIONS(525), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(528), + [anon_sym_LT_LPAREN] = ACTIONS(531), + [anon_sym_GT_LPAREN] = ACTIONS(531), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), - [sym__brace_start] = ACTIONS(340), + [sym_file_descriptor] = ACTIONS(534), + [sym_variable_name] = ACTIONS(537), + [sym_test_operator] = ACTIONS(540), + [sym__brace_start] = ACTIONS(543), }, - [STATE(78)] = { - [aux_sym__terminated_statement] = STATE(79), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(75)] = { + [aux_sym__terminated_statement] = STATE(77), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36246,7 +36050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(823), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36286,44 +36090,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(79)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(76)] = { + [aux_sym__terminated_statement] = STATE(91), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36338,7 +36143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(823), + [anon_sym_RBRACE] = ACTIONS(825), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36378,44 +36183,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(80)] = { - [aux_sym__terminated_statement] = STATE(81), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(77)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36426,11 +36232,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(825), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(827), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36470,44 +36276,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(81)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(78)] = { + [aux_sym__terminated_statement] = STATE(79), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36518,7 +36325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(827), + [anon_sym_done] = ACTIONS(829), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -36562,44 +36369,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(82)] = { - [aux_sym__terminated_statement] = STATE(84), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(79)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36610,11 +36418,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(831), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36654,44 +36462,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(83)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(80)] = { + [aux_sym__terminated_statement] = STATE(82), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36702,11 +36511,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(831), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36746,44 +36555,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(84)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(81)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36794,11 +36604,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(835), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36838,44 +36648,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(85)] = { - [aux_sym__terminated_statement] = STATE(413), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(82)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36886,11 +36697,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(835), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(837), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36930,44 +36741,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(86)] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(83)] = { + [aux_sym__terminated_statement] = STATE(84), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36978,11 +36790,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(839), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(837), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37022,44 +36834,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(87)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(84)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37070,11 +36883,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(841), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(839), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37114,44 +36927,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(88)] = { - [aux_sym__terminated_statement] = STATE(89), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(85)] = { + [aux_sym__terminated_statement] = STATE(87), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37162,11 +36976,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(841), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(843), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37206,44 +37020,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(89)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(86)] = { + [aux_sym__terminated_statement] = STATE(124), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37254,8 +37069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(843), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(845), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -37298,44 +37113,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(90)] = { - [aux_sym__terminated_statement] = STATE(92), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(87)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37350,7 +37166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(847), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37390,44 +37206,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(91)] = { - [aux_sym__terminated_statement] = STATE(410), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(88)] = { + [aux_sym__terminated_statement] = STATE(89), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37438,8 +37255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(849), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(847), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -37482,44 +37299,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(92)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(89)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37530,11 +37348,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(851), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37574,44 +37392,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(93)] = { - [aux_sym__terminated_statement] = STATE(94), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(90)] = { + [aux_sym__terminated_statement] = STATE(92), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37622,11 +37441,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(851), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37666,44 +37485,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(94)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(91)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37714,11 +37534,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(853), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(855), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37758,44 +37578,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(95)] = { - [aux_sym__terminated_statement] = STATE(97), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(92)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37810,7 +37631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(857), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37850,84 +37671,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(96)] = { - [sym__statements] = STATE(7304), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(1999), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(93)] = { + [aux_sym__terminated_statement] = STATE(94), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(859), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(314), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -37937,49 +37759,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(97)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(94)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37990,11 +37813,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(861), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(857), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -38034,44 +37857,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(98)] = { - [aux_sym__terminated_statement] = STATE(99), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(95)] = { + [aux_sym__terminated_statement] = STATE(96), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38082,11 +37906,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(859), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(863), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -38126,44 +37950,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(99)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(96)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38174,11 +37999,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(861), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(865), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -38218,45 +38043,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(100)] = { - [aux_sym__terminated_statement] = STATE(101), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [STATE(97)] = { + [sym__statements] = STATE(6706), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_AMP_GT] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(85), + [anon_sym_LT_AMP] = ACTIONS(83), + [anon_sym_GT_AMP] = ACTIONS(83), + [anon_sym_GT_PIPE] = ACTIONS(85), + [anon_sym_LT_AMP_DASH] = ACTIONS(97), + [anon_sym_GT_AMP_DASH] = ACTIONS(97), + [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(320), + [aux_sym_number_token2] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(98)] = { + [sym__statements] = STATE(6739), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2082), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_AMP_GT] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(85), + [anon_sym_LT_AMP] = ACTIONS(83), + [anon_sym_GT_AMP] = ACTIONS(83), + [anon_sym_GT_PIPE] = ACTIONS(85), + [anon_sym_LT_AMP_DASH] = ACTIONS(97), + [anon_sym_GT_AMP_DASH] = ACTIONS(97), + [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), + [aux_sym_number_token1] = ACTIONS(320), + [aux_sym_number_token2] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(99)] = { + [sym__statements] = STATE(6741), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38268,19 +38281,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38310,45 +38322,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(101)] = { - [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [STATE(100)] = { + [sym__statements] = STATE(6742), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38360,19 +38374,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38402,138 +38415,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(102)] = { - [sym__statements] = STATE(7341), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(340), - }, - [STATE(103)] = { - [sym__statements] = STATE(6767), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(101)] = { + [sym__statements] = STATE(6743), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38547,7 +38469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -38568,10 +38490,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -38583,49 +38505,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(104)] = { - [sym__statements] = STATE(7192), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(102)] = { + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38636,19 +38558,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(867), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38678,46 +38601,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(105)] = { - [sym__statements] = STATE(6705), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(103)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38729,18 +38652,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38770,136 +38694,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(106)] = { - [sym__statements] = STATE(6706), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(340), - }, - [STATE(107)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(104)] = { + [aux_sym__terminated_statement] = STATE(118), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38910,8 +38743,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(871), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(877), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -38954,46 +38787,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(108)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(105)] = { + [sym__statements] = STATE(7128), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39007,7 +38841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39028,10 +38862,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39043,49 +38877,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(109)] = { - [sym__statements] = STATE(6945), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2016), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(106)] = { + [sym__statements] = STATE(6977), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2104), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39099,7 +38934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39120,10 +38955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39135,49 +38970,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(110)] = { - [sym__statements] = STATE(6947), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(107)] = { + [sym__statements] = STATE(6979), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39189,18 +39025,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39230,46 +39066,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(111)] = { - [sym__statements] = STATE(6949), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(108)] = { + [sym__statements] = STATE(6980), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39281,18 +39118,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39322,46 +39159,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(112)] = { - [sym__statements] = STATE(6950), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(109)] = { + [sym__statements] = STATE(6981), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39375,7 +39213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39396,10 +39234,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39411,47 +39249,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(113)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(110)] = { + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -39463,7 +39302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(879), + [anon_sym_then] = ACTIONS(873), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -39506,46 +39345,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(114)] = { - [sym__statements] = STATE(7225), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(111)] = { + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(875), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(296), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(314), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), + [aux_sym_number_token1] = ACTIONS(320), + [aux_sym_number_token2] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(112)] = { + [sym__statements] = STATE(7248), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39559,7 +39492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39580,10 +39513,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39595,49 +39528,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(115)] = { - [sym__statements] = STATE(7119), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2035), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(113)] = { + [sym__statements] = STATE(7151), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2109), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39651,7 +39585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39672,10 +39606,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39687,49 +39621,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(116)] = { - [sym__statements] = STATE(7121), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(114)] = { + [sym__statements] = STATE(7153), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39741,18 +39676,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39782,46 +39717,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(117)] = { - [sym__statements] = STATE(7122), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(115)] = { + [sym__statements] = STATE(7154), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39833,18 +39769,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39874,46 +39810,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(118)] = { - [sym__statements] = STATE(7123), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(116)] = { + [sym__statements] = STATE(7155), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39927,7 +39864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39948,10 +39885,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39963,47 +39900,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(119)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(117)] = { + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -40015,7 +39953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(881), + [anon_sym_then] = ACTIONS(877), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -40058,46 +39996,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(120)] = { - [sym__statements] = STATE(7314), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(118)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4998), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(991), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(879), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(296), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(314), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), + [aux_sym_number_token1] = ACTIONS(320), + [aux_sym_number_token2] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(119)] = { + [sym__statements] = STATE(7336), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40111,7 +40143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40132,10 +40164,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40147,49 +40179,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(121)] = { - [sym__statements] = STATE(7239), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2049), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(120)] = { + [sym__statements] = STATE(7263), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2113), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40203,7 +40236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40224,10 +40257,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40239,49 +40272,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(122)] = { - [sym__statements] = STATE(7241), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(121)] = { + [sym__statements] = STATE(7265), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40293,18 +40327,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40334,46 +40368,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(123)] = { - [sym__statements] = STATE(7242), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(122)] = { + [sym__statements] = STATE(7266), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40385,18 +40420,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40426,46 +40461,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(124)] = { - [sym__statements] = STATE(7243), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(123)] = { + [sym__statements] = STATE(7267), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40479,7 +40515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40500,10 +40536,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40515,49 +40551,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(124)] = { + [aux_sym__terminated_statement] = STATE(23), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(881), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(296), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(314), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), + [aux_sym_number_token1] = ACTIONS(320), + [aux_sym_number_token2] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, [STATE(125)] = { - [sym__statements] = STATE(7506), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6835), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40571,7 +40701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40592,10 +40722,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40607,49 +40737,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(126)] = { - [sym__statements] = STATE(7327), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2057), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7348), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2114), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40663,7 +40794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40684,10 +40815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40699,49 +40830,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(127)] = { - [sym__statements] = STATE(7329), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7350), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40753,18 +40885,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40795,45 +40927,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(128)] = { - [sym__statements] = STATE(7330), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7351), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40845,18 +40978,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40887,45 +41020,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(129)] = { - [sym__statements] = STATE(7331), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7352), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40939,7 +41073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40960,10 +41094,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40975,49 +41109,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(130)] = { - [sym__statements] = STATE(7367), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7398), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41031,7 +41166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41052,10 +41187,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41067,49 +41202,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(131)] = { - [sym__statements] = STATE(7390), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2061), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7493), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2115), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41123,7 +41259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41144,10 +41280,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41159,49 +41295,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(132)] = { - [sym__statements] = STATE(7393), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7495), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41213,18 +41350,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41255,45 +41392,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(133)] = { - [sym__statements] = STATE(7394), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7496), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41305,18 +41443,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41347,45 +41485,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(134)] = { - [sym__statements] = STATE(7395), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41399,7 +41538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41420,10 +41559,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41435,49 +41574,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(135)] = { - [sym__statements] = STATE(6775), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7318), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41491,7 +41631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41512,10 +41652,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41527,49 +41667,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(136)] = { - [sym__statements] = STATE(7167), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2068), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7183), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2117), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41583,7 +41724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41604,10 +41745,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41619,49 +41760,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(137)] = { - [sym__statements] = STATE(7280), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7225), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41673,18 +41815,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41715,45 +41857,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(138)] = { - [sym__statements] = STATE(7291), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7506), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41765,18 +41908,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41807,45 +41950,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(139)] = { - [sym__statements] = STATE(6747), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7114), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41859,7 +42003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41880,10 +42024,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41895,49 +42039,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(140)] = { - [sym__statements] = STATE(6867), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2070), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6749), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2119), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41951,7 +42096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41972,10 +42117,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41987,49 +42132,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(141)] = { - [sym__statements] = STATE(6986), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6992), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42041,18 +42187,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42083,45 +42229,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(142)] = { - [sym__statements] = STATE(7017), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7070), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42133,18 +42280,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42175,45 +42322,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(143)] = { - [sym__statements] = STATE(7020), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7123), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42227,7 +42375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42248,10 +42396,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42263,49 +42411,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(144)] = { - [sym__statements] = STATE(6782), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2073), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6950), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2120), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42319,7 +42468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42340,10 +42489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42355,49 +42504,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(145)] = { - [sym__statements] = STATE(7064), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7082), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42409,18 +42559,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42451,45 +42601,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(146)] = { - [sym__statements] = STATE(7424), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7142), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42501,18 +42652,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42543,45 +42694,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(147)] = { - [sym__statements] = STATE(6709), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7174), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42595,7 +42747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42616,10 +42768,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42631,49 +42783,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(148)] = { - [sym__statements] = STATE(6903), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(1907), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6718), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2121), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42687,7 +42840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42708,10 +42861,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42723,49 +42876,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(149)] = { - [sym__statements] = STATE(6914), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6936), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42777,18 +42931,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42819,45 +42973,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(150)] = { - [sym__statements] = STATE(6974), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7052), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42869,18 +43024,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42911,45 +43066,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(151)] = { - [sym__statements] = STATE(6982), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7122), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42963,7 +43119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42984,10 +43140,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42999,49 +43155,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(152)] = { - [sym__statements] = STATE(7233), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2216), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6775), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2122), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43055,7 +43212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43076,10 +43233,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43091,49 +43248,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(153)] = { - [sym__statements] = STATE(7287), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6930), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43145,18 +43303,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43187,45 +43345,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(154)] = { - [sym__statements] = STATE(7288), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7044), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43237,18 +43396,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43279,45 +43438,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(155)] = { - [sym__statements] = STATE(7289), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7109), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43331,7 +43491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43352,10 +43512,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43367,49 +43527,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(156)] = { - [sym__statements] = STATE(6796), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2077), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6942), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2123), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43423,7 +43584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43444,10 +43605,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43459,49 +43620,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(157)] = { - [sym__statements] = STATE(6809), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6964), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43513,18 +43675,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43555,45 +43717,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(158)] = { - [sym__statements] = STATE(6875), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6965), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43605,18 +43768,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43647,45 +43810,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(159)] = { - [sym__statements] = STATE(6900), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7001), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43699,7 +43863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43720,10 +43884,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43735,49 +43899,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(160)] = { - [sym__statements] = STATE(6866), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2081), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7314), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2124), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43791,7 +43956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43812,10 +43977,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43827,49 +43992,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(161)] = { - [sym__statements] = STATE(6872), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7322), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43881,18 +44047,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43923,45 +44089,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(162)] = { - [sym__statements] = STATE(6893), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7349), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43973,18 +44140,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44015,45 +44182,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(163)] = { - [sym__statements] = STATE(6896), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7362), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44067,7 +44235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44088,10 +44256,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44103,49 +44271,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(164)] = { - [sym__statements] = STATE(7085), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2083), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6720), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2125), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44159,7 +44328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44180,10 +44349,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44195,49 +44364,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(165)] = { - [sym__statements] = STATE(7109), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6752), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44249,18 +44419,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44291,45 +44461,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(166)] = { - [sym__statements] = STATE(7113), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6758), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44341,18 +44512,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44383,45 +44554,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(167)] = { - [sym__statements] = STATE(7114), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6783), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44435,7 +44607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44456,10 +44628,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44471,49 +44643,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(168)] = { - [sym__statements] = STATE(7324), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2084), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6772), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2126), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44527,7 +44700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44548,10 +44721,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44563,49 +44736,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(169)] = { - [sym__statements] = STATE(7351), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6779), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44617,18 +44791,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44659,45 +44833,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(170)] = { - [sym__statements] = STATE(7361), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6809), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44709,18 +44884,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44751,45 +44926,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(171)] = { - [sym__statements] = STATE(7418), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6813), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44803,7 +44979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44824,10 +45000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44839,49 +45015,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(172)] = { - [sym__statements] = STATE(7508), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2086), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7310), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2127), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44895,7 +45072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44916,10 +45093,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44931,49 +45108,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(173)] = { - [sym__statements] = STATE(6711), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7505), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44985,18 +45163,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45027,45 +45205,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(174)] = { - [sym__statements] = STATE(6714), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6712), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45077,18 +45256,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45119,45 +45298,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(175)] = { - [sym__statements] = STATE(6731), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6713), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45171,7 +45351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45192,10 +45372,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45207,49 +45387,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(176)] = { - [sym__statements] = STATE(7082), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2088), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6901), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2128), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45263,7 +45444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45284,10 +45465,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45299,49 +45480,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(177)] = { - [sym__statements] = STATE(7227), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6905), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45353,18 +45535,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45395,45 +45577,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(178)] = { - [sym__statements] = STATE(7234), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6908), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45445,18 +45628,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45487,45 +45670,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(179)] = { - [sym__statements] = STATE(7240), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6911), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45539,7 +45723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45560,10 +45744,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45575,49 +45759,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(180)] = { - [sym__statements] = STATE(6816), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2090), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7111), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2129), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45631,7 +45816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45652,10 +45837,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45667,49 +45852,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(181)] = { - [sym__statements] = STATE(6818), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7131), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45721,18 +45907,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45763,45 +45949,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(182)] = { - [sym__statements] = STATE(6835), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7132), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45813,18 +46000,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45855,45 +46042,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(183)] = { - [sym__statements] = STATE(6842), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7133), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45907,7 +46095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45928,10 +46116,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45943,49 +46131,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(184)] = { - [sym__statements] = STATE(6916), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2091), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7268), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2130), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45999,7 +46188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46020,10 +46209,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46035,49 +46224,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(185)] = { - [sym__statements] = STATE(6940), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7281), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46089,18 +46279,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46131,45 +46321,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(186)] = { - [sym__statements] = STATE(6956), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7294), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46181,18 +46372,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46223,45 +46414,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(187)] = { - [sym__statements] = STATE(6971), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7298), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46275,7 +46467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46296,10 +46488,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46311,49 +46503,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(188)] = { - [sym__statements] = STATE(7072), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2092), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7419), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2272), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46367,7 +46560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46388,10 +46581,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46403,49 +46596,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(189)] = { - [sym__statements] = STATE(7075), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7423), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46457,18 +46651,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46499,45 +46693,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(190)] = { - [sym__statements] = STATE(7078), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7426), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46549,18 +46744,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46591,45 +46786,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(191)] = { - [sym__statements] = STATE(7083), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7427), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46643,7 +46839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46664,10 +46860,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46679,49 +46875,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(192)] = { - [sym__statements] = STATE(7178), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2093), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7216), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2132), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46735,7 +46932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46756,10 +46953,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46771,49 +46968,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(193)] = { - [sym__statements] = STATE(7183), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7300), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46825,18 +47023,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46867,45 +47065,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(194)] = { - [sym__statements] = STATE(7186), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7360), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46917,18 +47116,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46959,45 +47158,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(195)] = { - [sym__statements] = STATE(7207), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6709), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47011,7 +47211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47032,10 +47232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47047,49 +47247,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(196)] = { - [sym__statements] = STATE(7350), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2094), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7040), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2133), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47103,7 +47304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47124,10 +47325,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47139,49 +47340,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(197)] = { - [sym__statements] = STATE(7352), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7084), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47193,18 +47395,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47235,45 +47437,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(198)] = { - [sym__statements] = STATE(7353), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7089), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47285,18 +47488,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47327,45 +47530,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(199)] = { - [sym__statements] = STATE(7354), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7102), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47379,7 +47583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47400,10 +47604,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47415,49 +47619,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(200)] = { - [sym__statements] = STATE(7022), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2095), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7313), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2134), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47471,7 +47676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47492,10 +47697,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47507,49 +47712,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(201)] = { - [sym__statements] = STATE(7223), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7373), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47561,18 +47767,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47603,45 +47809,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(202)] = { - [sym__statements] = STATE(7226), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7389), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47653,18 +47860,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47695,45 +47902,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(203)] = { - [sym__statements] = STATE(7306), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7402), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47747,7 +47955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47768,10 +47976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47783,49 +47991,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(204)] = { - [sym__statements] = STATE(7254), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2096), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6846), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2135), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47839,7 +48048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47860,10 +48069,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47875,49 +48084,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(205)] = { - [sym__statements] = STATE(7307), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6848), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47929,18 +48139,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47971,45 +48181,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(206)] = { - [sym__statements] = STATE(7332), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6853), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48021,18 +48232,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48063,45 +48274,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(207)] = { - [sym__statements] = STATE(7333), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6856), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48115,7 +48327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48136,10 +48348,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48151,49 +48363,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(208)] = { - [sym__statements] = STATE(6738), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2097), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7051), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2136), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48207,7 +48420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48228,10 +48441,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48243,49 +48456,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(209)] = { - [sym__statements] = STATE(6742), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7058), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48297,18 +48511,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48339,45 +48553,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(210)] = { - [sym__statements] = STATE(6744), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7059), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48389,18 +48604,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48431,45 +48646,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(211)] = { - [sym__statements] = STATE(6745), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7061), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48483,7 +48699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48504,10 +48720,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48519,49 +48735,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(212)] = { - [sym__statements] = STATE(6855), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2098), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7210), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2137), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48575,7 +48792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48596,10 +48813,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48611,49 +48828,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(213)] = { - [sym__statements] = STATE(6881), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7219), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48665,18 +48883,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48707,45 +48925,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(214)] = { - [sym__statements] = STATE(6884), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7222), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48757,18 +48976,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48799,45 +49018,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(215)] = { - [sym__statements] = STATE(6890), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7254), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48851,7 +49071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48872,10 +49092,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48887,49 +49107,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(216)] = { - [sym__statements] = STATE(7063), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2100), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6724), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2138), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48943,7 +49164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48964,10 +49185,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48979,49 +49200,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(217)] = { - [sym__statements] = STATE(7084), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6731), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49033,18 +49255,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49075,45 +49297,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(218)] = { - [sym__statements] = STATE(7099), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6732), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49125,18 +49348,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49167,45 +49390,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(219)] = { - [sym__statements] = STATE(7100), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6733), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49219,7 +49443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49240,10 +49464,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49255,49 +49479,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(220)] = { - [sym__statements] = STATE(7322), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2101), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6785), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2139), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49311,7 +49536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49332,10 +49557,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49347,49 +49572,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(221)] = { - [sym__statements] = STATE(7336), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6790), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49401,18 +49627,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49443,45 +49669,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(222)] = { - [sym__statements] = STATE(7339), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6797), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49493,18 +49720,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49535,45 +49762,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(223)] = { - [sym__statements] = STATE(7343), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6800), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49587,7 +49815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49608,10 +49836,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49623,49 +49851,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(224)] = { - [sym__statements] = STATE(6748), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2102), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6869), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2140), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49679,7 +49908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49700,10 +49929,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49715,49 +49944,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(225)] = { - [sym__statements] = STATE(6751), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6882), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49769,18 +49999,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49811,45 +50041,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(226)] = { - [sym__statements] = STATE(6753), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6883), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49861,18 +50092,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49903,45 +50134,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(227)] = { - [sym__statements] = STATE(6762), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6884), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49955,7 +50187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49976,10 +50208,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49991,49 +50223,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(228)] = { - [sym__statements] = STATE(6833), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2103), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6925), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2141), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50047,7 +50280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50068,10 +50301,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50083,49 +50316,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(229)] = { - [sym__statements] = STATE(6837), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6931), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50137,18 +50371,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50179,45 +50413,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(230)] = { - [sym__statements] = STATE(6838), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6933), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50229,18 +50464,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50271,45 +50506,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(231)] = { - [sym__statements] = STATE(6839), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6935), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50323,7 +50559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50344,10 +50580,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50359,49 +50595,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(232)] = { - [sym__statements] = STATE(6869), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2104), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6973), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2142), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50415,7 +50652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50436,10 +50673,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50451,49 +50688,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(233)] = { - [sym__statements] = STATE(6876), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6989), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50505,18 +50743,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50547,45 +50785,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(234)] = { - [sym__statements] = STATE(6886), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6993), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50597,18 +50836,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50639,45 +50878,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(235)] = { - [sym__statements] = STATE(6889), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6994), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50691,7 +50931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50712,10 +50952,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50727,49 +50967,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(236)] = { - [sym__statements] = STATE(6918), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2105), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7097), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2143), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50783,7 +51024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50804,10 +51045,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50819,49 +51060,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(237)] = { - [sym__statements] = STATE(6923), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7100), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50873,18 +51115,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50915,45 +51157,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(238)] = { - [sym__statements] = STATE(6933), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7103), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50965,18 +51208,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51007,45 +51250,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(239)] = { - [sym__statements] = STATE(6936), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7104), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51059,7 +51303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51080,10 +51324,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51095,49 +51339,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(240)] = { - [sym__statements] = STATE(6985), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2106), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7159), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2144), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51151,7 +51396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51172,10 +51417,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51187,49 +51432,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(241)] = { - [sym__statements] = STATE(6994), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7167), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51241,18 +51487,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51283,45 +51529,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(242)] = { - [sym__statements] = STATE(7005), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7168), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51333,18 +51580,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51375,45 +51622,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(243)] = { - [sym__statements] = STATE(7008), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7170), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51427,7 +51675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51448,10 +51696,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51463,49 +51711,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(244)] = { - [sym__statements] = STATE(7049), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2107), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7239), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2145), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51519,7 +51768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51540,10 +51789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51555,49 +51804,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(245)] = { - [sym__statements] = STATE(7051), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7241), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51609,18 +51859,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51651,45 +51901,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(246)] = { - [sym__statements] = STATE(7052), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7244), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51701,18 +51952,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51743,45 +51994,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(247)] = { - [sym__statements] = STATE(7056), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7260), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51795,7 +52047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51816,10 +52068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51831,49 +52083,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(248)] = { - [sym__statements] = STATE(7087), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2108), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7328), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2146), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51887,7 +52140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51908,10 +52161,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51923,49 +52176,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(249)] = { - [sym__statements] = STATE(7096), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7333), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51977,18 +52231,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52019,45 +52273,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(250)] = { - [sym__statements] = STATE(7098), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7334), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52069,18 +52324,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52111,45 +52366,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(251)] = { - [sym__statements] = STATE(7101), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7338), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52163,7 +52419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52184,10 +52440,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52199,49 +52455,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(252)] = { - [sym__statements] = STATE(7138), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2109), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7399), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2147), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52255,7 +52512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52276,10 +52533,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52291,49 +52548,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(253)] = { - [sym__statements] = STATE(7142), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7401), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52345,18 +52603,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52387,45 +52645,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(254)] = { - [sym__statements] = STATE(7147), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [aux_sym__terminated_statement] = STATE(103), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52437,18 +52695,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52479,45 +52738,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(255)] = { - [sym__statements] = STATE(7157), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7413), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52531,7 +52791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52552,10 +52812,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52567,49 +52827,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(256)] = { - [sym__statements] = STATE(7193), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2123), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7503), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2148), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52623,7 +52884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52644,10 +52905,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52659,49 +52920,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(257)] = { - [sym__statements] = STATE(7197), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7508), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52713,18 +52975,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52755,45 +53017,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(258)] = { - [sym__statements] = STATE(7198), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6984), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52805,18 +53068,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52847,45 +53110,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(259)] = { - [sym__statements] = STATE(7201), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6995), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52899,7 +53163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52920,10 +53184,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52935,49 +53199,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(260)] = { - [sym__statements] = STATE(7244), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2124), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7208), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2149), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52991,7 +53256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53012,10 +53277,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53027,49 +53292,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(261)] = { - [sym__statements] = STATE(7247), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7218), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53081,18 +53347,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53123,45 +53389,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(262)] = { - [sym__statements] = STATE(7250), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7243), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53173,18 +53440,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53215,45 +53482,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(263)] = { - [sym__statements] = STATE(7264), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7247), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53267,7 +53535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53288,10 +53556,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53303,49 +53571,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(264)] = { - [sym__statements] = STATE(7323), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2128), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6777), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2150), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53359,7 +53628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53380,10 +53649,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53395,49 +53664,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(265)] = { - [sym__statements] = STATE(7325), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6784), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53449,18 +53719,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53491,45 +53761,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(266)] = { - [sym__statements] = STATE(7328), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6793), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53541,18 +53812,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53583,45 +53854,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(267)] = { - [sym__statements] = STATE(7335), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6827), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53635,7 +53907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53656,10 +53928,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53671,49 +53943,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(268)] = { - [sym__statements] = STATE(7368), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2130), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7015), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2151), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53727,7 +54000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53748,10 +54021,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53763,49 +54036,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(269)] = { - [sym__statements] = STATE(7385), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7041), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53817,18 +54091,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53859,45 +54133,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(270)] = { - [sym__statements] = STATE(7399), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7042), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53909,18 +54184,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53951,45 +54226,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(271)] = { - [sym__statements] = STATE(7402), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7043), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54003,7 +54279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54024,10 +54300,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54039,49 +54315,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(272)] = { - [sym__statements] = STATE(7495), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2134), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7162), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2152), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54095,7 +54372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54116,10 +54393,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54131,49 +54408,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(273)] = { - [sym__statements] = STATE(7497), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7193), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54185,18 +54463,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54227,45 +54505,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(274)] = { - [sym__statements] = STATE(7498), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7211), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54277,18 +54556,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54319,45 +54598,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(275)] = { - [sym__statements] = STATE(7501), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7217), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54371,7 +54651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54392,10 +54672,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54407,49 +54687,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(276)] = { - [sym__statements] = STATE(6730), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2136), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7325), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2153), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54463,7 +54744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54484,10 +54765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54499,49 +54780,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(277)] = { - [sym__statements] = STATE(6740), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7346), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54553,18 +54835,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54595,45 +54877,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(278)] = { - [sym__statements] = STATE(6760), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7356), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54645,18 +54928,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54687,45 +54970,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(279)] = { - [sym__statements] = STATE(7209), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7357), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54739,7 +55023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54760,10 +55044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54775,49 +55059,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(280)] = { - [sym__statements] = STATE(6845), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2139), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6744), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2154), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54831,7 +55116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54852,10 +55137,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54867,49 +55152,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(281)] = { - [sym__statements] = STATE(6910), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6754), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54921,18 +55207,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54963,45 +55249,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(282)] = { - [sym__statements] = STATE(6964), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6763), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55013,18 +55300,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55055,45 +55342,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(283)] = { - [sym__statements] = STATE(7007), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6765), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55107,7 +55395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55128,10 +55416,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55143,49 +55431,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(284)] = { - [sym__statements] = STATE(7370), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2140), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6817), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2155), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55199,7 +55488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55220,10 +55509,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55235,49 +55524,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(285)] = { - [sym__statements] = STATE(7377), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6828), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55289,18 +55579,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55331,45 +55621,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(286)] = { - [sym__statements] = STATE(7382), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6830), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55381,18 +55672,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55423,45 +55714,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(287)] = { - [sym__statements] = STATE(7408), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6831), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55475,7 +55767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55496,10 +55788,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55511,49 +55803,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(288)] = { - [sym__statements] = STATE(6718), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2141), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6862), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2156), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55567,7 +55860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55588,10 +55881,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55603,49 +55896,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(289)] = { - [sym__statements] = STATE(6721), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6873), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55657,18 +55951,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55699,45 +55993,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(290)] = { - [sym__statements] = STATE(6725), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6877), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55749,18 +56044,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55791,45 +56086,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(291)] = { - [sym__statements] = STATE(6727), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6886), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55843,7 +56139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55864,10 +56160,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55879,49 +56175,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(292)] = { - [sym__statements] = STATE(6754), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2143), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6967), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2157), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55935,7 +56232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55956,10 +56253,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55971,49 +56268,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(293)] = { - [sym__statements] = STATE(6757), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6974), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56025,18 +56323,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56067,45 +56365,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(294)] = { - [sym__statements] = STATE(6758), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6988), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56117,18 +56416,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56159,45 +56458,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(295)] = { - [sym__statements] = STATE(6761), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6999), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56211,7 +56511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56232,10 +56532,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56247,49 +56547,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(296)] = { - [sym__statements] = STATE(6806), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2146), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7069), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2158), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56303,7 +56604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56324,10 +56625,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56339,49 +56640,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(297)] = { - [sym__statements] = STATE(6832), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7076), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56393,18 +56695,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56435,45 +56737,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(298)] = { - [sym__statements] = STATE(6840), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7080), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56485,18 +56788,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56527,45 +56830,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(299)] = { - [sym__statements] = STATE(6841), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7095), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56579,7 +56883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56600,10 +56904,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56615,49 +56919,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(300)] = { - [sym__statements] = STATE(6943), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2151), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7165), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2159), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56671,7 +56976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56692,10 +56997,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56707,49 +57012,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(301)] = { - [sym__statements] = STATE(6958), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7172), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56761,18 +57067,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56803,45 +57109,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(302)] = { - [sym__statements] = STATE(6959), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7173), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56853,18 +57160,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56895,45 +57202,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(303)] = { - [sym__statements] = STATE(6963), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7178), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56947,7 +57255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56968,10 +57276,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56983,49 +57291,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(304)] = { - [sym__statements] = STATE(7042), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2153), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7227), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2160), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57039,7 +57348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57060,10 +57369,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57075,49 +57384,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(305)] = { - [sym__statements] = STATE(7044), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7236), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57129,18 +57439,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57171,45 +57481,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(306)] = { - [sym__statements] = STATE(7048), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7238), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57221,18 +57532,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57263,45 +57574,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(307)] = { - [sym__statements] = STATE(7057), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7251), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57315,7 +57627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57336,10 +57648,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57351,49 +57663,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(308)] = { - [sym__statements] = STATE(7170), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2156), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7324), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2161), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57407,7 +57720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57428,10 +57741,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57443,49 +57756,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(309)] = { - [sym__statements] = STATE(7194), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7359), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57497,18 +57811,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57539,45 +57853,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(310)] = { - [sym__statements] = STATE(7204), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7361), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57589,18 +57904,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57631,45 +57946,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(311)] = { - [sym__statements] = STATE(7206), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7370), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57683,7 +57999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57704,10 +58020,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57719,49 +58035,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(312)] = { - [sym__statements] = STATE(7270), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2165), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6715), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2162), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57775,7 +58092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57796,10 +58113,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57811,49 +58128,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(313)] = { - [sym__statements] = STATE(7272), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6717), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57865,18 +58183,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57907,45 +58225,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(314)] = { - [sym__statements] = STATE(7275), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6721), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57957,18 +58276,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57999,45 +58318,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(315)] = { - [sym__statements] = STATE(7276), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6722), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58051,7 +58371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58072,10 +58392,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58087,49 +58407,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(316)] = { - [sym__statements] = STATE(7378), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2171), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6760), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2163), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58143,7 +58464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58164,10 +58485,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58179,49 +58500,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(317)] = { - [sym__statements] = STATE(7398), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6767), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58233,18 +58555,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58275,45 +58597,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(318)] = { - [sym__statements] = STATE(7400), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6768), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58325,18 +58648,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58367,45 +58690,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(319)] = { - [sym__statements] = STATE(7406), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6769), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58419,7 +58743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58440,10 +58764,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58455,49 +58779,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(320)] = { - [sym__statements] = STATE(6723), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2174), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6789), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2164), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58511,7 +58836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58532,10 +58857,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58547,49 +58872,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(321)] = { - [sym__statements] = STATE(6726), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6791), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58601,18 +58927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58643,45 +58969,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(322)] = { - [sym__statements] = STATE(6733), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6792), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58693,18 +59020,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58735,45 +59062,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(323)] = { - [sym__statements] = STATE(6739), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6795), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58787,7 +59115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58808,10 +59136,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58823,49 +59151,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(324)] = { - [sym__statements] = STATE(6786), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2176), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6820), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2165), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58879,7 +59208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58900,10 +59229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58915,49 +59244,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(325)] = { - [sym__statements] = STATE(6791), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6824), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58969,18 +59299,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59011,45 +59341,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(326)] = { - [sym__statements] = STATE(6793), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6825), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59061,18 +59392,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59103,45 +59434,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(327)] = { - [sym__statements] = STATE(6795), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6826), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59155,7 +59487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59176,10 +59508,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59191,49 +59523,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(328)] = { - [sym__statements] = STATE(6824), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2182), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6872), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2166), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59247,7 +59580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59268,10 +59601,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59283,49 +59616,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(329)] = { - [sym__statements] = STATE(6826), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6874), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59337,18 +59671,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59379,45 +59713,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(330)] = { - [sym__statements] = STATE(6827), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6875), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59429,18 +59764,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59471,45 +59806,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(331)] = { - [sym__statements] = STATE(6828), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6876), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59523,7 +59859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59544,10 +59880,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59559,49 +59895,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(332)] = { - [sym__statements] = STATE(6848), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2183), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6893), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2167), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59615,7 +59952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59636,10 +59973,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59651,49 +59988,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(333)] = { - [sym__statements] = STATE(6851), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6895), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59705,18 +60043,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59747,45 +60085,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(334)] = { - [sym__statements] = STATE(6852), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6896), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59797,18 +60136,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59839,45 +60178,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(335)] = { - [sym__statements] = STATE(6854), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6898), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59891,7 +60231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59912,10 +60252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59927,49 +60267,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(336)] = { - [sym__statements] = STATE(6874), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2189), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6918), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2168), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59983,7 +60324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60004,10 +60345,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60019,49 +60360,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(337)] = { - [sym__statements] = STATE(6877), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6921), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60073,18 +60415,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60115,45 +60457,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(338)] = { - [sym__statements] = STATE(6882), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6922), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60165,18 +60508,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60207,45 +60550,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(339)] = { - [sym__statements] = STATE(6883), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6923), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60259,7 +60603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60280,10 +60624,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60295,49 +60639,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(340)] = { - [sym__statements] = STATE(6902), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2192), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6946), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2169), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60351,7 +60696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60372,10 +60717,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60387,49 +60732,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(341)] = { - [sym__statements] = STATE(6904), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6951), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60441,18 +60787,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60483,45 +60829,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(342)] = { - [sym__statements] = STATE(6905), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6954), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60533,18 +60880,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60575,45 +60922,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(343)] = { - [sym__statements] = STATE(6907), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6956), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60627,7 +60975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60648,10 +60996,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60663,49 +61011,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(344)] = { - [sym__statements] = STATE(6926), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2193), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6982), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2170), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60719,7 +61068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60740,10 +61089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60755,49 +61104,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(345)] = { - [sym__statements] = STATE(6929), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6985), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60809,18 +61159,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60851,45 +61201,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(346)] = { - [sym__statements] = STATE(6930), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6986), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60901,18 +61252,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60943,45 +61294,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(347)] = { - [sym__statements] = STATE(6931), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6987), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60995,7 +61347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61016,10 +61368,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61031,49 +61383,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(348)] = { - [sym__statements] = STATE(6961), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2194), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7010), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2171), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61087,7 +61440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61108,10 +61461,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61123,49 +61476,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(349)] = { - [sym__statements] = STATE(6966), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7023), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61177,18 +61531,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61219,45 +61573,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(350)] = { - [sym__statements] = STATE(6967), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7024), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61269,18 +61624,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61311,45 +61666,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(351)] = { - [sym__statements] = STATE(6968), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7026), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61363,7 +61719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61384,10 +61740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61399,49 +61755,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(352)] = { - [sym__statements] = STATE(6993), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2196), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7090), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2172), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61455,7 +61812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61476,10 +61833,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61491,49 +61848,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(353)] = { - [sym__statements] = STATE(6995), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7092), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61545,18 +61903,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61587,45 +61945,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(354)] = { - [sym__statements] = STATE(6998), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7093), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61637,18 +61996,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61679,45 +62038,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(355)] = { - [sym__statements] = STATE(6999), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7094), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61731,7 +62091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61752,10 +62112,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61767,49 +62127,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(356)] = { - [sym__statements] = STATE(7027), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2197), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7116), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2173), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61823,7 +62184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61844,10 +62205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61859,49 +62220,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(357)] = { - [sym__statements] = STATE(7029), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7119), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61913,18 +62275,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61955,45 +62317,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(358)] = { - [sym__statements] = STATE(7034), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7120), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62005,18 +62368,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62047,45 +62410,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(359)] = { - [sym__statements] = STATE(7035), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7121), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62099,7 +62463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62120,10 +62484,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62135,49 +62499,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(360)] = { - [sym__statements] = STATE(7055), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2198), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7147), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2174), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62191,7 +62556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62212,10 +62577,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62227,49 +62592,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(361)] = { - [sym__statements] = STATE(7058), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7152), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62281,18 +62647,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62323,45 +62689,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(362)] = { - [sym__statements] = STATE(7061), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7156), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62373,18 +62740,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62415,45 +62782,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(363)] = { - [sym__statements] = STATE(7062), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7157), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62467,7 +62835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62488,10 +62856,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62503,49 +62871,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(364)] = { - [sym__statements] = STATE(7077), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2199), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7182), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2175), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62559,7 +62928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62580,10 +62949,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62595,49 +62964,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(365)] = { - [sym__statements] = STATE(7079), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7184), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62649,18 +63019,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62691,45 +63061,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(366)] = { - [sym__statements] = STATE(7080), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7185), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62741,18 +63112,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62783,45 +63154,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(367)] = { - [sym__statements] = STATE(7091), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2200), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7223), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2176), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62835,7 +63207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62856,10 +63228,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62871,49 +63243,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(368)] = { - [sym__statements] = STATE(7094), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7226), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62925,18 +63298,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62967,45 +63340,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(369)] = { - [sym__statements] = STATE(7095), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7228), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63017,18 +63391,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63059,45 +63433,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(370)] = { - [sym__statements] = STATE(7108), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2201), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7250), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2177), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63111,7 +63486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -63132,10 +63507,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -63147,49 +63522,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(371)] = { - [sym__statements] = STATE(7110), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7253), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63201,18 +63577,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63243,45 +63619,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(372)] = { - [sym__statements] = STATE(7111), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7258), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63293,18 +63670,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63335,45 +63712,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(373)] = { - [sym__statements] = STATE(7125), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2202), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7287), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2178), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63387,7 +63765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -63408,10 +63786,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -63423,49 +63801,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(374)] = { - [sym__statements] = STATE(7127), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7291), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63477,18 +63856,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63519,45 +63898,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(375)] = { - [sym__statements] = STATE(7128), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7292), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63569,18 +63949,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63611,45 +63991,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(376)] = { - [sym__statements] = STATE(7149), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2203), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7320), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2179), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63663,7 +64044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -63684,10 +64065,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -63699,49 +64080,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(377)] = { - [sym__statements] = STATE(7152), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7323), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63753,18 +64135,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63795,45 +64177,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(378)] = { - [sym__statements] = STATE(7156), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7326), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63845,18 +64228,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63887,45 +64270,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(379)] = { - [sym__statements] = STATE(7169), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2204), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7340), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2180), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63939,7 +64323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -63960,10 +64344,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -63975,87 +64359,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(380)] = { - [sym__statements] = STATE(7171), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6887), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_AMP_GT] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(85), + [anon_sym_LT_AMP] = ACTIONS(83), + [anon_sym_GT_AMP] = ACTIONS(83), + [anon_sym_GT_PIPE] = ACTIONS(85), + [anon_sym_LT_AMP_DASH] = ACTIONS(97), + [anon_sym_GT_AMP_DASH] = ACTIONS(97), + [anon_sym_LT_LT_LT] = ACTIONS(99), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -64065,51 +64450,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(381)] = { - [sym__statements] = STATE(7174), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7345), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64121,18 +64507,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64163,45 +64549,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(382)] = { - [sym__statements] = STATE(7185), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2205), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7368), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2181), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64215,7 +64602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -64236,10 +64623,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -64251,49 +64638,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(383)] = { - [sym__statements] = STATE(7190), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7382), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64305,18 +64693,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64347,45 +64735,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(384)] = { - [sym__statements] = STATE(7191), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7385), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64397,18 +64786,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64439,45 +64828,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(385)] = { - [sym__statements] = STATE(7200), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2206), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7393), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2182), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64491,7 +64881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -64512,10 +64902,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -64527,49 +64917,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(386)] = { - [sym__statements] = STATE(7202), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7395), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64581,18 +64972,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64623,45 +65014,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(387)] = { - [sym__statements] = STATE(7203), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7396), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64673,18 +65065,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64715,45 +65107,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(388)] = { - [sym__statements] = STATE(7215), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2208), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7411), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2183), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64767,7 +65160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -64788,10 +65181,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -64803,49 +65196,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(389)] = { - [sym__statements] = STATE(7217), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7414), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64857,18 +65251,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64899,45 +65293,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(390)] = { - [sym__statements] = STATE(7218), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7415), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64949,18 +65344,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64991,45 +65386,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(391)] = { - [sym__statements] = STATE(7230), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2211), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7422), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2184), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65043,7 +65439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -65064,10 +65460,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -65079,49 +65475,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(392)] = { - [sym__statements] = STATE(7235), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7424), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65133,18 +65530,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65175,45 +65572,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(393)] = { - [sym__statements] = STATE(7236), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7425), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65225,18 +65623,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65267,45 +65665,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(394)] = { - [sym__statements] = STATE(7252), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2215), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7494), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2185), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65319,7 +65718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -65340,10 +65739,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -65355,49 +65754,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(395)] = { - [sym__statements] = STATE(7256), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7499), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65409,18 +65809,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65451,45 +65851,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(396)] = { - [sym__statements] = STATE(7263), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7501), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65501,18 +65902,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65543,45 +65944,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(397)] = { - [sym__statements] = STATE(7279), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2074), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7192), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2186), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65595,7 +65997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -65616,10 +66018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -65631,49 +66033,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(398)] = { - [sym__statements] = STATE(7283), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7113), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65685,18 +66088,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65727,45 +66130,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(399)] = { - [sym__statements] = STATE(7284), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6970), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65777,18 +66181,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65819,45 +66223,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(400)] = { - [sym__statements] = STATE(7294), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2075), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7197), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2187), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65871,7 +66276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -65892,10 +66297,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -65907,49 +66312,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(401)] = { - [sym__statements] = STATE(7296), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7259), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65961,18 +66367,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66003,45 +66409,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(402)] = { - [sym__statements] = STATE(7297), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7343), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66053,18 +66460,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66095,45 +66502,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(403)] = { - [sym__statements] = STATE(7299), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(1908), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6803), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2188), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66147,7 +66555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -66168,10 +66576,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -66183,49 +66591,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(404)] = { - [sym__statements] = STATE(7301), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6847), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66237,18 +66646,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66279,45 +66688,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(405)] = { - [sym__statements] = STATE(7302), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6858), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66329,18 +66739,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66371,45 +66781,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(406)] = { - [sym__statements] = STATE(7303), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(1909), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6915), + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4379), + [sym_for_statement] = STATE(4379), + [sym_c_style_for_statement] = STATE(4379), + [sym_while_statement] = STATE(4183), + [sym_if_statement] = STATE(4183), + [sym_case_statement] = STATE(4379), + [sym_function_definition] = STATE(4379), + [sym_compound_statement] = STATE(4379), + [sym_subshell] = STATE(4379), + [sym_pipeline] = STATE(4818), + [sym_list] = STATE(4379), + [sym_negated_command] = STATE(4379), + [sym_test_command] = STATE(4379), + [sym_declaration_command] = STATE(4379), + [sym_unset_command] = STATE(4379), + [sym_command] = STATE(4379), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4379), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2189), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(417), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66423,7 +66834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -66444,10 +66855,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -66459,49 +66870,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, [STATE(407)] = { - [sym__statements] = STATE(7305), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6945), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66513,18 +66925,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66555,45 +66967,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(408)] = { - [sym__statements] = STATE(7310), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6947), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66605,18 +67018,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66647,43 +67060,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(409)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(412), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -66695,10 +67109,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(883), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(885), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -66739,44 +67153,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(410)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [sym__statements] = STATE(7215), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66787,20 +67203,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(885), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66831,45 +67246,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(411)] = { - [sym__statements] = STATE(7316), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(7289), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66881,18 +67297,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66923,45 +67339,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(412)] = { - [sym__statements] = STATE(7320), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4683), + [sym_for_statement] = STATE(4683), + [sym_c_style_for_statement] = STATE(4683), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4683), + [sym_function_definition] = STATE(4683), + [sym_compound_statement] = STATE(4683), + [sym_subshell] = STATE(4683), + [sym_pipeline] = STATE(5026), + [sym_list] = STATE(4683), + [sym_negated_command] = STATE(4683), + [sym_test_command] = STATE(4683), + [sym_declaration_command] = STATE(4683), + [sym_unset_command] = STATE(4683), + [sym_command] = STATE(4683), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(984), + [sym_variable_assignments] = STATE(4683), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66973,18 +67389,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67015,44 +67432,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(413)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [sym__statements] = STATE(7405), + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4369), + [sym_for_statement] = STATE(4369), + [sym_c_style_for_statement] = STATE(4369), + [sym_while_statement] = STATE(4162), + [sym_if_statement] = STATE(4162), + [sym_case_statement] = STATE(4369), + [sym_function_definition] = STATE(4369), + [sym_compound_statement] = STATE(4369), + [sym_subshell] = STATE(4369), + [sym_pipeline] = STATE(4858), + [sym_list] = STATE(4369), + [sym_negated_command] = STATE(4369), + [sym_test_command] = STATE(4369), + [sym_declaration_command] = STATE(4369), + [sym_unset_command] = STATE(4369), + [sym_command] = STATE(4369), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(4369), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(424), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67062,21 +67481,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(887), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67107,43 +67525,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(414)] = { - [aux_sym__terminated_statement] = STATE(65), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(102), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -67198,134 +67617,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(415)] = { - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4916), - [sym_for_statement] = STATE(4916), - [sym_c_style_for_statement] = STATE(4916), - [sym_while_statement] = STATE(4337), - [sym_if_statement] = STATE(4337), - [sym_case_statement] = STATE(4916), - [sym_function_definition] = STATE(4916), - [sym_compound_statement] = STATE(4916), - [sym_subshell] = STATE(4916), - [sym_pipeline] = STATE(5051), - [sym_list] = STATE(4916), - [sym_negated_command] = STATE(4916), - [sym_test_command] = STATE(4916), - [sym_declaration_command] = STATE(4916), - [sym_unset_command] = STATE(4916), - [sym_command] = STATE(4916), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1136), - [sym_variable_assignments] = STATE(4916), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(889), - [anon_sym_for] = ACTIONS(892), - [anon_sym_select] = ACTIONS(895), - [anon_sym_LPAREN_LPAREN] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_while] = ACTIONS(910), - [anon_sym_until] = ACTIONS(910), - [anon_sym_if] = ACTIONS(913), - [anon_sym_case] = ACTIONS(916), - [anon_sym_function] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(934), - [anon_sym_typeset] = ACTIONS(934), - [anon_sym_export] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(934), - [anon_sym_local] = ACTIONS(934), - [anon_sym_unset] = ACTIONS(937), - [anon_sym_unsetenv] = ACTIONS(937), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(904), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [anon_sym_GT_PIPE] = ACTIONS(904), - [anon_sym_LT_AMP_DASH] = ACTIONS(940), - [anon_sym_GT_AMP_DASH] = ACTIONS(940), - [anon_sym_LT_LT_LT] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(946), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(952), - [sym__special_character] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_raw_string] = ACTIONS(961), - [sym_ansi_c_string] = ACTIONS(961), - [aux_sym_number_token1] = ACTIONS(964), - [aux_sym_number_token2] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), - [anon_sym_BQUOTE] = ACTIONS(976), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(985), - [sym_variable_name] = ACTIONS(988), - [sym_test_operator] = ACTIONS(991), - [sym__brace_start] = ACTIONS(994), - }, - [STATE(416)] = { - [aux_sym__terminated_statement] = STATE(58), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(111), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -67379,136 +67708,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(417)] = { - [aux_sym__terminated_statement] = STATE(409), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [STATE(416)] = { + [sym__statement_not_pipeline] = STATE(6488), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4154), + [sym_if_statement] = STATE(4154), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4811), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), + [sym_command_name] = STATE(529), + [sym_variable_assignment] = STATE(895), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6635), + [sym_file_redirect] = STATE(2241), + [sym_incomplete_redirect] = STATE(2241), + [sym_herestring_redirect] = STATE(2242), + [sym_arithmetic_expansion] = STATE(986), + [sym_brace_expression] = STATE(986), + [sym_concatenation] = STATE(1499), + [sym_string] = STATE(986), + [sym_translated_string] = STATE(986), + [sym_number] = STATE(986), + [sym_simple_expansion] = STATE(986), + [sym_expansion] = STATE(986), + [sym_command_substitution] = STATE(986), + [sym_process_substitution] = STATE(986), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4242), + [aux_sym_command_repeat1] = STATE(883), + [aux_sym__literal_repeat1] = STATE(1216), + [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), - [anon_sym_AMP_GT] = ACTIONS(286), - [anon_sym_AMP_GT_GT] = ACTIONS(288), - [anon_sym_LT_AMP] = ACTIONS(286), - [anon_sym_GT_AMP] = ACTIONS(286), - [anon_sym_GT_PIPE] = ACTIONS(288), - [anon_sym_LT_AMP_DASH] = ACTIONS(304), - [anon_sym_GT_AMP_DASH] = ACTIONS(304), - [anon_sym_LT_LT_LT] = ACTIONS(306), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(314), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(334), - [sym_variable_name] = ACTIONS(336), - [sym_test_operator] = ACTIONS(338), - [sym__brace_start] = ACTIONS(340), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), }, - [STATE(418)] = { - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4516), - [sym_for_statement] = STATE(4516), - [sym_c_style_for_statement] = STATE(4516), - [sym_while_statement] = STATE(4202), - [sym_if_statement] = STATE(4202), - [sym_case_statement] = STATE(4516), - [sym_function_definition] = STATE(4516), - [sym_compound_statement] = STATE(4516), - [sym_subshell] = STATE(4516), - [sym_pipeline] = STATE(5012), - [sym_list] = STATE(4516), - [sym_negated_command] = STATE(4516), - [sym_test_command] = STATE(4516), - [sym_declaration_command] = STATE(4516), - [sym_unset_command] = STATE(4516), - [sym_command] = STATE(4516), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(969), - [sym_variable_assignments] = STATE(4516), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(417)] = { + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4435), + [sym_for_statement] = STATE(4435), + [sym_c_style_for_statement] = STATE(4435), + [sym_while_statement] = STATE(4151), + [sym_if_statement] = STATE(4151), + [sym_case_statement] = STATE(4435), + [sym_function_definition] = STATE(4435), + [sym_compound_statement] = STATE(4435), + [sym_subshell] = STATE(4435), + [sym_pipeline] = STATE(4871), + [sym_list] = STATE(4435), + [sym_negated_command] = STATE(4435), + [sym_test_command] = STATE(4435), + [sym_declaration_command] = STATE(4435), + [sym_unset_command] = STATE(4435), + [sym_command] = STATE(4435), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4435), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67522,7 +67853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -67543,10 +67874,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -67558,47 +67889,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(419)] = { - [aux_sym__terminated_statement] = STATE(51), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(418)] = { + [aux_sym__terminated_statement] = STATE(52), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -67652,44 +67984,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(420)] = { - [aux_sym__terminated_statement] = STATE(50), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(419)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -67743,44 +68076,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(421)] = { - [aux_sym__terminated_statement] = STATE(53), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(420)] = { + [aux_sym__terminated_statement] = STATE(51), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -67834,45 +68168,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(422)] = { - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4584), - [sym_for_statement] = STATE(4584), - [sym_c_style_for_statement] = STATE(4584), - [sym_while_statement] = STATE(4307), - [sym_if_statement] = STATE(4307), - [sym_case_statement] = STATE(4584), - [sym_function_definition] = STATE(4584), - [sym_compound_statement] = STATE(4584), - [sym_subshell] = STATE(4584), - [sym_pipeline] = STATE(4974), - [sym_list] = STATE(4584), - [sym_negated_command] = STATE(4584), - [sym_test_command] = STATE(4584), - [sym_declaration_command] = STATE(4584), - [sym_unset_command] = STATE(4584), - [sym_command] = STATE(4584), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(993), - [sym_variable_assignments] = STATE(4584), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(421)] = { + [aux_sym__terminated_statement] = STATE(53), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67884,18 +68219,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67925,318 +68260,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(423)] = { - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4180), - [sym_for_statement] = STATE(4180), - [sym_c_style_for_statement] = STATE(4180), - [sym_while_statement] = STATE(3905), - [sym_if_statement] = STATE(3905), - [sym_case_statement] = STATE(4180), - [sym_function_definition] = STATE(4180), - [sym_compound_statement] = STATE(4180), - [sym_subshell] = STATE(4180), - [sym_pipeline] = STATE(4548), - [sym_list] = STATE(4180), - [sym_negated_command] = STATE(4180), - [sym_test_command] = STATE(4180), - [sym_declaration_command] = STATE(4180), - [sym_unset_command] = STATE(4180), - [sym_command] = STATE(4180), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(785), - [sym_variable_assignments] = STATE(4180), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [STATE(424)] = { - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4361), - [sym_for_statement] = STATE(4361), - [sym_c_style_for_statement] = STATE(4361), - [sym_while_statement] = STATE(4140), - [sym_if_statement] = STATE(4140), - [sym_case_statement] = STATE(4361), - [sym_function_definition] = STATE(4361), - [sym_compound_statement] = STATE(4361), - [sym_subshell] = STATE(4361), - [sym_pipeline] = STATE(4710), - [sym_list] = STATE(4361), - [sym_negated_command] = STATE(4361), - [sym_test_command] = STATE(4361), - [sym_declaration_command] = STATE(4361), - [sym_unset_command] = STATE(4361), - [sym_command] = STATE(4361), - [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(814), - [sym_variable_assignments] = STATE(4361), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [STATE(422)] = { + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4613), + [sym_for_statement] = STATE(4613), + [sym_c_style_for_statement] = STATE(4613), + [sym_while_statement] = STATE(4247), + [sym_if_statement] = STATE(4247), + [sym_case_statement] = STATE(4613), + [sym_function_definition] = STATE(4613), + [sym_compound_statement] = STATE(4613), + [sym_subshell] = STATE(4613), + [sym_pipeline] = STATE(5015), + [sym_list] = STATE(4613), + [sym_negated_command] = STATE(4613), + [sym_test_command] = STATE(4613), + [sym_declaration_command] = STATE(4613), + [sym_unset_command] = STATE(4613), + [sym_command] = STATE(4613), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(930), + [sym_variable_assignments] = STATE(4613), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(889), + [anon_sym_for] = ACTIONS(892), + [anon_sym_select] = ACTIONS(895), + [anon_sym_LPAREN_LPAREN] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_while] = ACTIONS(910), + [anon_sym_until] = ACTIONS(910), + [anon_sym_if] = ACTIONS(913), + [anon_sym_case] = ACTIONS(916), + [anon_sym_function] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(931), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_typeset] = ACTIONS(934), + [anon_sym_export] = ACTIONS(934), + [anon_sym_readonly] = ACTIONS(934), + [anon_sym_local] = ACTIONS(934), + [anon_sym_unset] = ACTIONS(937), + [anon_sym_unsetenv] = ACTIONS(937), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(904), + [anon_sym_LT_AMP] = ACTIONS(901), + [anon_sym_GT_AMP] = ACTIONS(901), + [anon_sym_GT_PIPE] = ACTIONS(904), + [anon_sym_LT_AMP_DASH] = ACTIONS(940), + [anon_sym_GT_AMP_DASH] = ACTIONS(940), + [anon_sym_LT_LT_LT] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(946), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(952), + [sym__special_character] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_raw_string] = ACTIONS(961), + [sym_ansi_c_string] = ACTIONS(961), + [aux_sym_number_token1] = ACTIONS(964), + [aux_sym_number_token2] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(982), + [anon_sym_GT_LPAREN] = ACTIONS(982), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(985), + [sym_variable_name] = ACTIONS(988), + [sym_test_operator] = ACTIONS(991), + [sym__brace_start] = ACTIONS(994), }, - [STATE(425)] = { - [sym__statement_not_pipeline] = STATE(6618), - [sym_redirected_statement] = STATE(4589), - [sym_for_statement] = STATE(4589), - [sym_c_style_for_statement] = STATE(4589), - [sym_while_statement] = STATE(4310), - [sym_if_statement] = STATE(4310), - [sym_case_statement] = STATE(4589), - [sym_function_definition] = STATE(4589), - [sym_compound_statement] = STATE(4589), - [sym_subshell] = STATE(4589), - [sym_pipeline] = STATE(5009), - [sym_list] = STATE(4589), - [sym_negated_command] = STATE(4589), - [sym_test_command] = STATE(4589), - [sym_declaration_command] = STATE(4589), - [sym_unset_command] = STATE(4589), - [sym_command] = STATE(4589), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(953), - [sym_variable_assignments] = STATE(4589), - [sym_subscript] = STATE(6655), - [sym_file_redirect] = STATE(2125), - [sym_herestring_redirect] = STATE(2207), - [sym_arithmetic_expansion] = STATE(944), - [sym_brace_expression] = STATE(944), - [sym_concatenation] = STATE(1431), - [sym_string] = STATE(944), - [sym_translated_string] = STATE(944), - [sym_number] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_expansion] = STATE(944), - [sym_command_substitution] = STATE(944), - [sym_process_substitution] = STATE(944), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4333), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1181), - [sym_word] = ACTIONS(7), + [STATE(423)] = { + [aux_sym__terminated_statement] = STATE(54), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(314), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), + [aux_sym_number_token1] = ACTIONS(320), + [aux_sym_number_token2] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), + [sym__brace_start] = ACTIONS(340), }, - [STATE(426)] = { - [aux_sym__terminated_statement] = STATE(107), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), + [STATE(424)] = { + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4530), + [sym_for_statement] = STATE(4530), + [sym_c_style_for_statement] = STATE(4530), + [sym_while_statement] = STATE(4163), + [sym_if_statement] = STATE(4163), + [sym_case_statement] = STATE(4530), + [sym_function_definition] = STATE(4530), + [sym_compound_statement] = STATE(4530), + [sym_subshell] = STATE(4530), + [sym_pipeline] = STATE(4939), + [sym_list] = STATE(4530), + [sym_negated_command] = STATE(4530), + [sym_test_command] = STATE(4530), + [sym_declaration_command] = STATE(4530), + [sym_unset_command] = STATE(4530), + [sym_command] = STATE(4530), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(1007), + [sym_variable_assignments] = STATE(4530), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -68248,18 +68495,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(300), - [anon_sym_typeset] = ACTIONS(300), - [anon_sym_export] = ACTIONS(300), - [anon_sym_readonly] = ACTIONS(300), - [anon_sym_local] = ACTIONS(300), - [anon_sym_unset] = ACTIONS(302), - [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -68289,44 +68536,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(427)] = { - [aux_sym__terminated_statement] = STATE(113), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(425)] = { + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4204), + [sym_for_statement] = STATE(4204), + [sym_c_style_for_statement] = STATE(4204), + [sym_while_statement] = STATE(3851), + [sym_if_statement] = STATE(3851), + [sym_case_statement] = STATE(4204), + [sym_function_definition] = STATE(4204), + [sym_compound_statement] = STATE(4204), + [sym_subshell] = STATE(4204), + [sym_pipeline] = STATE(4647), + [sym_list] = STATE(4204), + [sym_negated_command] = STATE(4204), + [sym_test_command] = STATE(4204), + [sym_declaration_command] = STATE(4204), + [sym_unset_command] = STATE(4204), + [sym_command] = STATE(4204), + [sym_command_name] = STATE(526), + [sym_variable_assignment] = STATE(831), + [sym_variable_assignments] = STATE(4204), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), + }, + [STATE(426)] = { + [aux_sym__terminated_statement] = STATE(117), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68380,44 +68720,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, + [STATE(427)] = { + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4141), + [sym_for_statement] = STATE(4141), + [sym_c_style_for_statement] = STATE(4141), + [sym_while_statement] = STATE(3795), + [sym_if_statement] = STATE(3795), + [sym_case_statement] = STATE(4141), + [sym_function_definition] = STATE(4141), + [sym_compound_statement] = STATE(4141), + [sym_subshell] = STATE(4141), + [sym_pipeline] = STATE(4406), + [sym_list] = STATE(4141), + [sym_negated_command] = STATE(4141), + [sym_test_command] = STATE(4141), + [sym_declaration_command] = STATE(4141), + [sym_unset_command] = STATE(4141), + [sym_command] = STATE(4141), + [sym_command_name] = STATE(524), + [sym_variable_assignment] = STATE(805), + [sym_variable_assignments] = STATE(4141), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, [STATE(428)] = { - [aux_sym__terminated_statement] = STATE(119), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(110), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4601), + [sym_for_statement] = STATE(4601), + [sym_c_style_for_statement] = STATE(4601), + [sym_while_statement] = STATE(4225), + [sym_if_statement] = STATE(4225), + [sym_case_statement] = STATE(4601), + [sym_function_definition] = STATE(4601), + [sym_compound_statement] = STATE(4601), + [sym_subshell] = STATE(4601), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(4601), + [sym_negated_command] = STATE(4601), + [sym_test_command] = STATE(4601), + [sym_declaration_command] = STATE(4601), + [sym_unset_command] = STATE(4601), + [sym_command] = STATE(4601), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(985), + [sym_variable_assignments] = STATE(4601), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68472,42 +68905,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(429)] = { - [sym__statement_not_pipeline] = STATE(6604), - [sym_redirected_statement] = STATE(5115), - [sym_for_statement] = STATE(5115), - [sym_c_style_for_statement] = STATE(5115), - [sym_while_statement] = STATE(4947), - [sym_if_statement] = STATE(4947), - [sym_case_statement] = STATE(5115), - [sym_function_definition] = STATE(5115), - [sym_compound_statement] = STATE(5115), - [sym_subshell] = STATE(5115), - [sym_pipeline] = STATE(5416), - [sym_list] = STATE(5115), - [sym_negated_command] = STATE(5115), - [sym_test_command] = STATE(5115), - [sym_declaration_command] = STATE(5115), - [sym_unset_command] = STATE(5115), - [sym_command] = STATE(5115), - [sym_command_name] = STATE(581), - [sym_variable_assignment] = STATE(1602), - [sym_variable_assignments] = STATE(5115), - [sym_subscript] = STATE(6679), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1692), - [sym_brace_expression] = STATE(1692), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1692), - [sym_translated_string] = STATE(1692), - [sym_number] = STATE(1692), - [sym_simple_expansion] = STATE(1692), - [sym_expansion] = STATE(1692), - [sym_command_substitution] = STATE(1692), - [sym_process_substitution] = STATE(1692), - [aux_sym_redirected_statement_repeat2] = STATE(5057), - [aux_sym_command_repeat1] = STATE(974), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6612), + [sym_redirected_statement] = STATE(5075), + [sym_for_statement] = STATE(5075), + [sym_c_style_for_statement] = STATE(5075), + [sym_while_statement] = STATE(4813), + [sym_if_statement] = STATE(4813), + [sym_case_statement] = STATE(5075), + [sym_function_definition] = STATE(5075), + [sym_compound_statement] = STATE(5075), + [sym_subshell] = STATE(5075), + [sym_pipeline] = STATE(5295), + [sym_list] = STATE(5075), + [sym_negated_command] = STATE(5075), + [sym_test_command] = STATE(5075), + [sym_declaration_command] = STATE(5075), + [sym_unset_command] = STATE(5075), + [sym_command] = STATE(5075), + [sym_command_name] = STATE(618), + [sym_variable_assignment] = STATE(1456), + [sym_variable_assignments] = STATE(5075), + [sym_subscript] = STATE(6687), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1744), + [sym_brace_expression] = STATE(1744), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1744), + [sym_translated_string] = STATE(1744), + [sym_number] = STATE(1744), + [sym_simple_expansion] = STATE(1744), + [sym_expansion] = STATE(1744), + [sym_command_substitution] = STATE(1744), + [sym_process_substitution] = STATE(1744), + [aux_sym_redirected_statement_repeat2] = STATE(5027), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68562,43 +68996,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(430)] = { - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4666), - [sym_for_statement] = STATE(4666), - [sym_c_style_for_statement] = STATE(4666), - [sym_while_statement] = STATE(4272), - [sym_if_statement] = STATE(4272), - [sym_case_statement] = STATE(4666), - [sym_function_definition] = STATE(4666), - [sym_compound_statement] = STATE(4666), - [sym_subshell] = STATE(4666), - [sym_pipeline] = STATE(4526), - [sym_list] = STATE(4666), - [sym_negated_command] = STATE(4666), - [sym_test_command] = STATE(4666), - [sym_declaration_command] = STATE(4666), - [sym_unset_command] = STATE(4666), - [sym_command] = STATE(4666), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(873), - [sym_variable_assignments] = STATE(4666), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statement_not_pipeline] = STATE(6612), + [sym_redirected_statement] = STATE(5072), + [sym_for_statement] = STATE(5072), + [sym_c_style_for_statement] = STATE(5072), + [sym_while_statement] = STATE(4901), + [sym_if_statement] = STATE(4901), + [sym_case_statement] = STATE(5072), + [sym_function_definition] = STATE(5072), + [sym_compound_statement] = STATE(5072), + [sym_subshell] = STATE(5072), + [sym_pipeline] = STATE(5292), + [sym_list] = STATE(5072), + [sym_negated_command] = STATE(5072), + [sym_test_command] = STATE(5072), + [sym_declaration_command] = STATE(5072), + [sym_unset_command] = STATE(5072), + [sym_command] = STATE(5072), + [sym_command_name] = STATE(618), + [sym_variable_assignment] = STATE(1445), + [sym_variable_assignments] = STATE(5072), + [sym_subscript] = STATE(6687), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1744), + [sym_brace_expression] = STATE(1744), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1744), + [sym_translated_string] = STATE(1744), + [sym_number] = STATE(1744), + [sym_simple_expansion] = STATE(1744), + [sym_expansion] = STATE(1744), + [sym_command_substitution] = STATE(1744), + [sym_process_substitution] = STATE(1744), + [aux_sym_redirected_statement_repeat2] = STATE(5027), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(997), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1007), + [anon_sym_typeset] = ACTIONS(1007), + [anon_sym_export] = ACTIONS(1007), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_local] = ACTIONS(1007), + [anon_sym_unset] = ACTIONS(1009), + [anon_sym_unsetenv] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(1001), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [anon_sym_GT_PIPE] = ACTIONS(1001), + [anon_sym_LT_AMP_DASH] = ACTIONS(1011), + [anon_sym_GT_AMP_DASH] = ACTIONS(1011), + [anon_sym_LT_LT_LT] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(1017), + [sym_ansi_c_string] = ACTIONS(1017), + [aux_sym_number_token1] = ACTIONS(320), + [aux_sym_number_token2] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(431)] = { + [sym__statement_not_pipeline] = STATE(6488), + [sym_redirected_statement] = STATE(4412), + [sym_for_statement] = STATE(4412), + [sym_c_style_for_statement] = STATE(4412), + [sym_while_statement] = STATE(4150), + [sym_if_statement] = STATE(4150), + [sym_case_statement] = STATE(4412), + [sym_function_definition] = STATE(4412), + [sym_compound_statement] = STATE(4412), + [sym_subshell] = STATE(4412), + [sym_pipeline] = STATE(4426), + [sym_list] = STATE(4412), + [sym_negated_command] = STATE(4412), + [sym_test_command] = STATE(4412), + [sym_declaration_command] = STATE(4412), + [sym_unset_command] = STATE(4412), + [sym_command] = STATE(4412), + [sym_command_name] = STATE(529), + [sym_variable_assignment] = STATE(898), + [sym_variable_assignments] = STATE(4412), + [sym_subscript] = STATE(6635), + [sym_file_redirect] = STATE(2241), + [sym_incomplete_redirect] = STATE(2241), + [sym_herestring_redirect] = STATE(2242), + [sym_arithmetic_expansion] = STATE(986), + [sym_brace_expression] = STATE(986), + [sym_concatenation] = STATE(1499), + [sym_string] = STATE(986), + [sym_translated_string] = STATE(986), + [sym_number] = STATE(986), + [sym_simple_expansion] = STATE(986), + [sym_expansion] = STATE(986), + [sym_command_substitution] = STATE(986), + [sym_process_substitution] = STATE(986), + [aux_sym_redirected_statement_repeat2] = STATE(4242), + [aux_sym_command_repeat1] = STATE(883), + [aux_sym__literal_repeat1] = STATE(1216), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), + }, + [STATE(432)] = { + [sym__statement_not_pipeline] = STATE(4674), + [sym_redirected_statement] = STATE(4674), + [sym_for_statement] = STATE(4674), + [sym_c_style_for_statement] = STATE(4674), + [sym_while_statement] = STATE(4155), + [sym_if_statement] = STATE(4155), + [sym_case_statement] = STATE(4674), + [sym_function_definition] = STATE(4674), + [sym_compound_statement] = STATE(4674), + [sym_subshell] = STATE(4674), + [sym_pipeline] = STATE(5424), + [sym_list] = STATE(4674), + [sym_negated_command] = STATE(4674), + [sym_test_command] = STATE(4674), + [sym_declaration_command] = STATE(4674), + [sym_unset_command] = STATE(4674), + [sym_command] = STATE(4674), + [sym_command_name] = STATE(529), + [sym_variable_assignment] = STATE(863), + [sym_variable_assignments] = STATE(4674), + [sym_subscript] = STATE(6635), + [sym_file_redirect] = STATE(2241), + [sym_incomplete_redirect] = STATE(2241), + [sym_herestring_redirect] = STATE(2242), + [sym_arithmetic_expansion] = STATE(986), + [sym_brace_expression] = STATE(986), + [sym_concatenation] = STATE(1499), + [sym_string] = STATE(986), + [sym_translated_string] = STATE(986), + [sym_number] = STATE(986), + [sym_simple_expansion] = STATE(986), + [sym_expansion] = STATE(986), + [sym_command_substitution] = STATE(986), + [sym_process_substitution] = STATE(986), + [aux_sym_redirected_statement_repeat2] = STATE(4242), + [aux_sym_command_repeat1] = STATE(883), + [aux_sym__literal_repeat1] = STATE(1216), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), + }, + [STATE(433)] = { + [sym__statement_not_pipeline] = STATE(4674), + [sym_redirected_statement] = STATE(4674), + [sym_for_statement] = STATE(4674), + [sym_c_style_for_statement] = STATE(4674), + [sym_while_statement] = STATE(4186), + [sym_if_statement] = STATE(4186), + [sym_case_statement] = STATE(4674), + [sym_function_definition] = STATE(4674), + [sym_compound_statement] = STATE(4674), + [sym_subshell] = STATE(4674), + [sym_pipeline] = STATE(5438), + [sym_list] = STATE(4674), + [sym_negated_command] = STATE(4674), + [sym_test_command] = STATE(4674), + [sym_declaration_command] = STATE(4674), + [sym_unset_command] = STATE(4674), + [sym_command] = STATE(4674), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(859), + [sym_variable_assignments] = STATE(4674), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -68612,7 +69320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -68633,10 +69341,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -68648,175 +69356,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(431)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5371), - [sym_for_statement] = STATE(5371), - [sym_c_style_for_statement] = STATE(5371), - [sym_while_statement] = STATE(5061), - [sym_if_statement] = STATE(5061), - [sym_case_statement] = STATE(5371), - [sym_function_definition] = STATE(5371), - [sym_compound_statement] = STATE(5371), - [sym_subshell] = STATE(5371), - [sym_pipeline] = STATE(5373), - [sym_list] = STATE(5371), - [sym_negated_command] = STATE(5371), - [sym_test_command] = STATE(5371), - [sym_declaration_command] = STATE(5371), - [sym_unset_command] = STATE(5371), - [sym_command] = STATE(5371), - [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1737), - [sym_variable_assignments] = STATE(5371), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2929), - [sym_herestring_redirect] = STATE(2930), - [sym_arithmetic_expansion] = STATE(1879), - [sym_brace_expression] = STATE(1879), - [sym_concatenation] = STATE(2412), - [sym_string] = STATE(1879), - [sym_translated_string] = STATE(1879), - [sym_number] = STATE(1879), - [sym_simple_expansion] = STATE(1879), - [sym_expansion] = STATE(1879), - [sym_command_substitution] = STATE(1879), - [sym_process_substitution] = STATE(1879), - [aux_sym_redirected_statement_repeat2] = STATE(5222), - [aux_sym_command_repeat1] = STATE(880), - [aux_sym__literal_repeat1] = STATE(2307), - [sym_word] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(155), - [anon_sym_until] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_case] = ACTIONS(159), - [anon_sym_function] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(171), - [anon_sym_declare] = ACTIONS(173), - [anon_sym_typeset] = ACTIONS(173), - [anon_sym_export] = ACTIONS(173), - [anon_sym_readonly] = ACTIONS(173), - [anon_sym_local] = ACTIONS(173), - [anon_sym_unset] = ACTIONS(175), - [anon_sym_unsetenv] = ACTIONS(175), - [anon_sym_AMP_GT] = ACTIONS(1027), - [anon_sym_AMP_GT_GT] = ACTIONS(1029), - [anon_sym_LT_AMP] = ACTIONS(1027), - [anon_sym_GT_AMP] = ACTIONS(1027), - [anon_sym_GT_PIPE] = ACTIONS(1029), - [anon_sym_LT_AMP_DASH] = ACTIONS(1035), - [anon_sym_GT_AMP_DASH] = ACTIONS(1035), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(215), - [sym_test_operator] = ACTIONS(1067), - [sym__brace_start] = ACTIONS(1069), - }, - [STATE(432)] = { - [sym__statement_not_pipeline] = STATE(6604), - [sym_redirected_statement] = STATE(5170), - [sym_for_statement] = STATE(5170), - [sym_c_style_for_statement] = STATE(5170), - [sym_while_statement] = STATE(4999), - [sym_if_statement] = STATE(4999), - [sym_case_statement] = STATE(5170), - [sym_function_definition] = STATE(5170), - [sym_compound_statement] = STATE(5170), - [sym_subshell] = STATE(5170), - [sym_pipeline] = STATE(5412), - [sym_list] = STATE(5170), - [sym_negated_command] = STATE(5170), - [sym_test_command] = STATE(5170), - [sym_declaration_command] = STATE(5170), - [sym_unset_command] = STATE(5170), - [sym_command] = STATE(5170), - [sym_command_name] = STATE(581), - [sym_variable_assignment] = STATE(1601), - [sym_variable_assignments] = STATE(5170), - [sym_subscript] = STATE(6679), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1692), - [sym_brace_expression] = STATE(1692), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1692), - [sym_translated_string] = STATE(1692), - [sym_number] = STATE(1692), - [sym_simple_expansion] = STATE(1692), - [sym_expansion] = STATE(1692), - [sym_command_substitution] = STATE(1692), - [sym_process_substitution] = STATE(1692), - [aux_sym_redirected_statement_repeat2] = STATE(5057), - [aux_sym_command_repeat1] = STATE(974), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(997), + [STATE(434)] = { + [sym__statement_not_pipeline] = STATE(6601), + [sym_redirected_statement] = STATE(4468), + [sym_for_statement] = STATE(4468), + [sym_c_style_for_statement] = STATE(4468), + [sym_while_statement] = STATE(4172), + [sym_if_statement] = STATE(4172), + [sym_case_statement] = STATE(4468), + [sym_function_definition] = STATE(4468), + [sym_compound_statement] = STATE(4468), + [sym_subshell] = STATE(4468), + [sym_pipeline] = STATE(4476), + [sym_list] = STATE(4468), + [sym_negated_command] = STATE(4468), + [sym_test_command] = STATE(4468), + [sym_declaration_command] = STATE(4468), + [sym_unset_command] = STATE(4468), + [sym_command] = STATE(4468), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(910), + [sym_variable_assignments] = STATE(4468), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1027), + [sym_brace_expression] = STATE(1027), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1027), + [sym_translated_string] = STATE(1027), + [sym_number] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [aux_sym_redirected_statement_repeat2] = STATE(4330), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1003), + [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(765), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1007), - [anon_sym_typeset] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1007), - [anon_sym_readonly] = ACTIONS(1007), - [anon_sym_local] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1009), - [anon_sym_unsetenv] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(999), - [anon_sym_AMP_GT_GT] = ACTIONS(1001), - [anon_sym_LT_AMP] = ACTIONS(999), - [anon_sym_GT_AMP] = ACTIONS(999), - [anon_sym_GT_PIPE] = ACTIONS(1001), - [anon_sym_LT_AMP_DASH] = ACTIONS(1011), - [anon_sym_GT_AMP_DASH] = ACTIONS(1011), - [anon_sym_LT_LT_LT] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(93), + [anon_sym_typeset] = ACTIONS(93), + [anon_sym_export] = ACTIONS(93), + [anon_sym_readonly] = ACTIONS(93), + [anon_sym_local] = ACTIONS(93), + [anon_sym_unset] = ACTIONS(95), + [anon_sym_unsetenv] = ACTIONS(95), + [anon_sym_AMP_GT] = ACTIONS(83), + [anon_sym_AMP_GT_GT] = ACTIONS(85), + [anon_sym_LT_AMP] = ACTIONS(83), + [anon_sym_GT_AMP] = ACTIONS(83), + [anon_sym_GT_PIPE] = ACTIONS(85), + [anon_sym_LT_AMP_DASH] = ACTIONS(97), + [anon_sym_GT_AMP_DASH] = ACTIONS(97), + [anon_sym_LT_LT_LT] = ACTIONS(99), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(1015), + [sym__special_character] = ACTIONS(767), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), + [sym_raw_string] = ACTIONS(769), + [sym_ansi_c_string] = ACTIONS(769), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -68826,139 +69445,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1019), - [sym_variable_name] = ACTIONS(1021), - [sym_test_operator] = ACTIONS(1023), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), [sym__brace_start] = ACTIONS(340), }, - [STATE(433)] = { - [sym__statement_not_pipeline] = STATE(5509), - [sym_redirected_statement] = STATE(5509), - [sym_for_statement] = STATE(5509), - [sym_c_style_for_statement] = STATE(5509), - [sym_while_statement] = STATE(5101), - [sym_if_statement] = STATE(5101), - [sym_case_statement] = STATE(5509), - [sym_function_definition] = STATE(5509), - [sym_compound_statement] = STATE(5509), - [sym_subshell] = STATE(5509), - [sym_pipeline] = STATE(5491), - [sym_list] = STATE(5509), - [sym_negated_command] = STATE(5509), - [sym_test_command] = STATE(5509), - [sym_declaration_command] = STATE(5509), - [sym_unset_command] = STATE(5509), - [sym_command] = STATE(5509), - [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1751), - [sym_variable_assignments] = STATE(5509), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2929), - [sym_herestring_redirect] = STATE(2930), - [sym_arithmetic_expansion] = STATE(1879), - [sym_brace_expression] = STATE(1879), - [sym_concatenation] = STATE(2412), - [sym_string] = STATE(1879), - [sym_translated_string] = STATE(1879), - [sym_number] = STATE(1879), - [sym_simple_expansion] = STATE(1879), - [sym_expansion] = STATE(1879), - [sym_command_substitution] = STATE(1879), - [sym_process_substitution] = STATE(1879), - [aux_sym_redirected_statement_repeat2] = STATE(5222), - [aux_sym_command_repeat1] = STATE(880), - [aux_sym__literal_repeat1] = STATE(2307), - [sym_word] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(155), - [anon_sym_until] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_case] = ACTIONS(159), - [anon_sym_function] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(171), - [anon_sym_declare] = ACTIONS(173), - [anon_sym_typeset] = ACTIONS(173), - [anon_sym_export] = ACTIONS(173), - [anon_sym_readonly] = ACTIONS(173), - [anon_sym_local] = ACTIONS(173), - [anon_sym_unset] = ACTIONS(175), - [anon_sym_unsetenv] = ACTIONS(175), - [anon_sym_AMP_GT] = ACTIONS(1027), - [anon_sym_AMP_GT_GT] = ACTIONS(1029), - [anon_sym_LT_AMP] = ACTIONS(1027), - [anon_sym_GT_AMP] = ACTIONS(1027), - [anon_sym_GT_PIPE] = ACTIONS(1029), - [anon_sym_LT_AMP_DASH] = ACTIONS(1035), - [anon_sym_GT_AMP_DASH] = ACTIONS(1035), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(215), - [sym_test_operator] = ACTIONS(1067), - [sym__brace_start] = ACTIONS(1069), - }, - [STATE(434)] = { - [sym__statement_not_pipeline] = STATE(4562), - [sym_redirected_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_c_style_for_statement] = STATE(4562), - [sym_while_statement] = STATE(4211), - [sym_if_statement] = STATE(4211), - [sym_case_statement] = STATE(4562), - [sym_function_definition] = STATE(4562), - [sym_compound_statement] = STATE(4562), - [sym_subshell] = STATE(4562), - [sym_pipeline] = STATE(5501), - [sym_list] = STATE(4562), - [sym_negated_command] = STATE(4562), - [sym_test_command] = STATE(4562), - [sym_declaration_command] = STATE(4562), - [sym_unset_command] = STATE(4562), - [sym_command] = STATE(4562), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1092), - [sym_variable_assignments] = STATE(4562), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(435)] = { + [sym__statement_not_pipeline] = STATE(4674), + [sym_redirected_statement] = STATE(4674), + [sym_for_statement] = STATE(4674), + [sym_c_style_for_statement] = STATE(4674), + [sym_while_statement] = STATE(4178), + [sym_if_statement] = STATE(4178), + [sym_case_statement] = STATE(4674), + [sym_function_definition] = STATE(4674), + [sym_compound_statement] = STATE(4674), + [sym_subshell] = STATE(4674), + [sym_pipeline] = STATE(5454), + [sym_list] = STATE(4674), + [sym_negated_command] = STATE(4674), + [sym_test_command] = STATE(4674), + [sym_declaration_command] = STATE(4674), + [sym_unset_command] = STATE(4674), + [sym_command] = STATE(4674), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(931), + [sym_variable_assignments] = STATE(4674), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -68970,18 +69500,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -69011,44 +69541,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(435)] = { - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4590), - [sym_for_statement] = STATE(4590), - [sym_c_style_for_statement] = STATE(4590), - [sym_while_statement] = STATE(4305), - [sym_if_statement] = STATE(4305), - [sym_case_statement] = STATE(4590), - [sym_function_definition] = STATE(4590), - [sym_compound_statement] = STATE(4590), - [sym_subshell] = STATE(4590), - [sym_pipeline] = STATE(4594), - [sym_list] = STATE(4590), - [sym_negated_command] = STATE(4590), - [sym_test_command] = STATE(4590), - [sym_declaration_command] = STATE(4590), - [sym_unset_command] = STATE(4590), - [sym_command] = STATE(4590), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1074), - [sym_variable_assignments] = STATE(4590), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [STATE(436)] = { + [sym__statement_not_pipeline] = STATE(6554), + [sym_redirected_statement] = STATE(4387), + [sym_for_statement] = STATE(4387), + [sym_c_style_for_statement] = STATE(4387), + [sym_while_statement] = STATE(4174), + [sym_if_statement] = STATE(4174), + [sym_case_statement] = STATE(4387), + [sym_function_definition] = STATE(4387), + [sym_compound_statement] = STATE(4387), + [sym_subshell] = STATE(4387), + [sym_pipeline] = STATE(4389), + [sym_list] = STATE(4387), + [sym_negated_command] = STATE(4387), + [sym_test_command] = STATE(4387), + [sym_declaration_command] = STATE(4387), + [sym_unset_command] = STATE(4387), + [sym_command] = STATE(4387), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(997), + [sym_variable_assignments] = STATE(4387), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2306), + [sym_incomplete_redirect] = STATE(2306), + [sym_herestring_redirect] = STATE(2307), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4190), + [aux_sym_command_repeat1] = STATE(908), + [aux_sym__literal_repeat1] = STATE(1300), + [sym_word] = ACTIONS(795), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -69060,18 +69591,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(797), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(799), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(801), + [anon_sym_typeset] = ACTIONS(801), + [anon_sym_export] = ACTIONS(801), + [anon_sym_readonly] = ACTIONS(801), + [anon_sym_local] = ACTIONS(801), + [anon_sym_unset] = ACTIONS(803), + [anon_sym_unsetenv] = ACTIONS(803), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -69101,583 +69632,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(436)] = { - [sym__statement_not_pipeline] = STATE(4525), - [sym_redirected_statement] = STATE(4525), - [sym_for_statement] = STATE(4525), - [sym_c_style_for_statement] = STATE(4525), - [sym_while_statement] = STATE(3904), - [sym_if_statement] = STATE(3904), - [sym_case_statement] = STATE(4525), - [sym_function_definition] = STATE(4525), - [sym_compound_statement] = STATE(4525), - [sym_subshell] = STATE(4525), - [sym_pipeline] = STATE(5510), - [sym_list] = STATE(4525), - [sym_negated_command] = STATE(4525), - [sym_test_command] = STATE(4525), - [sym_declaration_command] = STATE(4525), - [sym_unset_command] = STATE(4525), - [sym_command] = STATE(4525), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(800), - [sym_variable_assignments] = STATE(4525), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, [STATE(437)] = { - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4238), - [sym_for_statement] = STATE(4238), - [sym_c_style_for_statement] = STATE(4238), - [sym_while_statement] = STATE(3800), - [sym_if_statement] = STATE(3800), - [sym_case_statement] = STATE(4238), - [sym_function_definition] = STATE(4238), - [sym_compound_statement] = STATE(4238), - [sym_subshell] = STATE(4238), - [sym_pipeline] = STATE(4233), - [sym_list] = STATE(4238), - [sym_negated_command] = STATE(4238), - [sym_test_command] = STATE(4238), - [sym_declaration_command] = STATE(4238), - [sym_unset_command] = STATE(4238), - [sym_command] = STATE(4238), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(782), - [sym_variable_assignments] = STATE(4238), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [sym__statement_not_pipeline] = STATE(5511), + [sym_redirected_statement] = STATE(5511), + [sym_for_statement] = STATE(5511), + [sym_c_style_for_statement] = STATE(5511), + [sym_while_statement] = STATE(4997), + [sym_if_statement] = STATE(4997), + [sym_case_statement] = STATE(5511), + [sym_function_definition] = STATE(5511), + [sym_compound_statement] = STATE(5511), + [sym_subshell] = STATE(5511), + [sym_pipeline] = STATE(5449), + [sym_list] = STATE(5511), + [sym_negated_command] = STATE(5511), + [sym_test_command] = STATE(5511), + [sym_declaration_command] = STATE(5511), + [sym_unset_command] = STATE(5511), + [sym_command] = STATE(5511), + [sym_command_name] = STATE(639), + [sym_variable_assignment] = STATE(1669), + [sym_variable_assignments] = STATE(5511), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2983), + [sym_incomplete_redirect] = STATE(2983), + [sym_herestring_redirect] = STATE(2984), + [sym_arithmetic_expansion] = STATE(1779), + [sym_brace_expression] = STATE(1779), + [sym_concatenation] = STATE(2424), + [sym_string] = STATE(1779), + [sym_translated_string] = STATE(1779), + [sym_number] = STATE(1779), + [sym_simple_expansion] = STATE(1779), + [sym_expansion] = STATE(1779), + [sym_command_substitution] = STATE(1779), + [sym_process_substitution] = STATE(1779), + [aux_sym_redirected_statement_repeat2] = STATE(5113), + [aux_sym_command_repeat1] = STATE(903), + [aux_sym__literal_repeat1] = STATE(2330), + [sym_word] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(143), + [anon_sym_select] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(155), + [anon_sym_until] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_case] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(171), + [anon_sym_declare] = ACTIONS(173), + [anon_sym_typeset] = ACTIONS(173), + [anon_sym_export] = ACTIONS(173), + [anon_sym_readonly] = ACTIONS(173), + [anon_sym_local] = ACTIONS(173), + [anon_sym_unset] = ACTIONS(175), + [anon_sym_unsetenv] = ACTIONS(175), + [anon_sym_AMP_GT] = ACTIONS(1027), + [anon_sym_AMP_GT_GT] = ACTIONS(1029), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_GT_PIPE] = ACTIONS(1029), + [anon_sym_LT_AMP_DASH] = ACTIONS(1035), + [anon_sym_GT_AMP_DASH] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym_raw_string] = ACTIONS(1049), + [sym_ansi_c_string] = ACTIONS(1049), + [aux_sym_number_token1] = ACTIONS(1051), + [aux_sym_number_token2] = ACTIONS(1053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(215), + [sym_test_operator] = ACTIONS(1067), + [sym__brace_start] = ACTIONS(1069), }, [STATE(438)] = { - [sym__statement_not_pipeline] = STATE(4808), - [sym_redirected_statement] = STATE(4808), - [sym_for_statement] = STATE(4808), - [sym_c_style_for_statement] = STATE(4808), - [sym_while_statement] = STATE(4153), - [sym_if_statement] = STATE(4153), - [sym_case_statement] = STATE(4808), - [sym_function_definition] = STATE(4808), - [sym_compound_statement] = STATE(4808), - [sym_subshell] = STATE(4808), - [sym_pipeline] = STATE(5519), - [sym_list] = STATE(4808), - [sym_negated_command] = STATE(4808), - [sym_test_command] = STATE(4808), - [sym_declaration_command] = STATE(4808), - [sym_unset_command] = STATE(4808), - [sym_command] = STATE(4808), - [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(860), - [sym_variable_assignments] = STATE(4808), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym__statement_not_pipeline] = STATE(4608), + [sym_redirected_statement] = STATE(4608), + [sym_for_statement] = STATE(4608), + [sym_c_style_for_statement] = STATE(4608), + [sym_while_statement] = STATE(3798), + [sym_if_statement] = STATE(3798), + [sym_case_statement] = STATE(4608), + [sym_function_definition] = STATE(4608), + [sym_compound_statement] = STATE(4608), + [sym_subshell] = STATE(4608), + [sym_pipeline] = STATE(5460), + [sym_list] = STATE(4608), + [sym_negated_command] = STATE(4608), + [sym_test_command] = STATE(4608), + [sym_declaration_command] = STATE(4608), + [sym_unset_command] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_name] = STATE(524), + [sym_variable_assignment] = STATE(806), + [sym_variable_assignments] = STATE(4608), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(439)] = { - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4387), - [sym_for_statement] = STATE(4387), - [sym_c_style_for_statement] = STATE(4387), - [sym_while_statement] = STATE(4146), - [sym_if_statement] = STATE(4146), - [sym_case_statement] = STATE(4387), - [sym_function_definition] = STATE(4387), - [sym_compound_statement] = STATE(4387), - [sym_subshell] = STATE(4387), - [sym_pipeline] = STATE(4390), - [sym_list] = STATE(4387), - [sym_negated_command] = STATE(4387), - [sym_test_command] = STATE(4387), - [sym_declaration_command] = STATE(4387), - [sym_unset_command] = STATE(4387), - [sym_command] = STATE(4387), - [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(846), - [sym_variable_assignments] = STATE(4387), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym__statement_not_pipeline] = STATE(6584), + [sym_redirected_statement] = STATE(4173), + [sym_for_statement] = STATE(4173), + [sym_c_style_for_statement] = STATE(4173), + [sym_while_statement] = STATE(3792), + [sym_if_statement] = STATE(3792), + [sym_case_statement] = STATE(4173), + [sym_function_definition] = STATE(4173), + [sym_compound_statement] = STATE(4173), + [sym_subshell] = STATE(4173), + [sym_pipeline] = STATE(4189), + [sym_list] = STATE(4173), + [sym_negated_command] = STATE(4173), + [sym_test_command] = STATE(4173), + [sym_declaration_command] = STATE(4173), + [sym_unset_command] = STATE(4173), + [sym_command] = STATE(4173), + [sym_command_name] = STATE(524), + [sym_variable_assignment] = STATE(811), + [sym_variable_assignments] = STATE(4173), + [sym_subscript] = STATE(6661), + [sym_file_redirect] = STATE(1630), + [sym_incomplete_redirect] = STATE(1630), + [sym_herestring_redirect] = STATE(1631), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym_redirected_statement_repeat2] = STATE(4013), + [aux_sym_command_repeat1] = STATE(875), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [sym_test_operator] = ACTIONS(731), - [sym__brace_start] = ACTIONS(733), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(440)] = { - [sym__statement_not_pipeline] = STATE(4562), - [sym_redirected_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_c_style_for_statement] = STATE(4562), - [sym_while_statement] = STATE(4285), - [sym_if_statement] = STATE(4285), - [sym_case_statement] = STATE(4562), - [sym_function_definition] = STATE(4562), - [sym_compound_statement] = STATE(4562), - [sym_subshell] = STATE(4562), - [sym_pipeline] = STATE(5520), - [sym_list] = STATE(4562), - [sym_negated_command] = STATE(4562), - [sym_test_command] = STATE(4562), - [sym_declaration_command] = STATE(4562), - [sym_unset_command] = STATE(4562), - [sym_command] = STATE(4562), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(962), - [sym_variable_assignments] = STATE(4562), - [sym_subscript] = STATE(6655), - [sym_file_redirect] = STATE(2125), - [sym_herestring_redirect] = STATE(2207), - [sym_arithmetic_expansion] = STATE(944), - [sym_brace_expression] = STATE(944), - [sym_concatenation] = STATE(1431), - [sym_string] = STATE(944), - [sym_translated_string] = STATE(944), - [sym_number] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_expansion] = STATE(944), - [sym_command_substitution] = STATE(944), - [sym_process_substitution] = STATE(944), - [aux_sym_redirected_statement_repeat2] = STATE(4333), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1181), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym__statement_not_pipeline] = STATE(4804), + [sym_redirected_statement] = STATE(4804), + [sym_for_statement] = STATE(4804), + [sym_c_style_for_statement] = STATE(4804), + [sym_while_statement] = STATE(4129), + [sym_if_statement] = STATE(4129), + [sym_case_statement] = STATE(4804), + [sym_function_definition] = STATE(4804), + [sym_compound_statement] = STATE(4804), + [sym_subshell] = STATE(4804), + [sym_pipeline] = STATE(5461), + [sym_list] = STATE(4804), + [sym_negated_command] = STATE(4804), + [sym_test_command] = STATE(4804), + [sym_declaration_command] = STATE(4804), + [sym_unset_command] = STATE(4804), + [sym_command] = STATE(4804), + [sym_command_name] = STATE(526), + [sym_variable_assignment] = STATE(848), + [sym_variable_assignments] = STATE(4804), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(441)] = { - [sym__statement_not_pipeline] = STATE(6618), - [sym_redirected_statement] = STATE(4587), - [sym_for_statement] = STATE(4587), - [sym_c_style_for_statement] = STATE(4587), - [sym_while_statement] = STATE(4313), - [sym_if_statement] = STATE(4313), - [sym_case_statement] = STATE(4587), - [sym_function_definition] = STATE(4587), - [sym_compound_statement] = STATE(4587), - [sym_subshell] = STATE(4587), - [sym_pipeline] = STATE(4597), - [sym_list] = STATE(4587), - [sym_negated_command] = STATE(4587), - [sym_test_command] = STATE(4587), - [sym_declaration_command] = STATE(4587), - [sym_unset_command] = STATE(4587), - [sym_command] = STATE(4587), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(939), - [sym_variable_assignments] = STATE(4587), - [sym_subscript] = STATE(6655), - [sym_file_redirect] = STATE(2125), - [sym_herestring_redirect] = STATE(2207), - [sym_arithmetic_expansion] = STATE(944), - [sym_brace_expression] = STATE(944), - [sym_concatenation] = STATE(1431), - [sym_string] = STATE(944), - [sym_translated_string] = STATE(944), - [sym_number] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_expansion] = STATE(944), - [sym_command_substitution] = STATE(944), - [sym_process_substitution] = STATE(944), - [aux_sym_redirected_statement_repeat2] = STATE(4333), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1181), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym__statement_not_pipeline] = STATE(6450), + [sym_redirected_statement] = STATE(4220), + [sym_for_statement] = STATE(4220), + [sym_c_style_for_statement] = STATE(4220), + [sym_while_statement] = STATE(3992), + [sym_if_statement] = STATE(3992), + [sym_case_statement] = STATE(4220), + [sym_function_definition] = STATE(4220), + [sym_compound_statement] = STATE(4220), + [sym_subshell] = STATE(4220), + [sym_pipeline] = STATE(4237), + [sym_list] = STATE(4220), + [sym_negated_command] = STATE(4220), + [sym_test_command] = STATE(4220), + [sym_declaration_command] = STATE(4220), + [sym_unset_command] = STATE(4220), + [sym_command] = STATE(4220), + [sym_command_name] = STATE(526), + [sym_variable_assignment] = STATE(840), + [sym_variable_assignments] = STATE(4220), + [sym_subscript] = STATE(6637), + [sym_file_redirect] = STATE(1817), + [sym_incomplete_redirect] = STATE(1817), + [sym_herestring_redirect] = STATE(1818), + [sym_arithmetic_expansion] = STATE(867), + [sym_brace_expression] = STATE(867), + [sym_concatenation] = STATE(1205), + [sym_string] = STATE(867), + [sym_translated_string] = STATE(867), + [sym_number] = STATE(867), + [sym_simple_expansion] = STATE(867), + [sym_expansion] = STATE(867), + [sym_command_substitution] = STATE(867), + [sym_process_substitution] = STATE(867), + [aux_sym_redirected_statement_repeat2] = STATE(4180), + [aux_sym_command_repeat1] = STATE(920), + [aux_sym__literal_repeat1] = STATE(1183), + [sym_word] = ACTIONS(618), + [anon_sym_for] = ACTIONS(620), + [anon_sym_select] = ACTIONS(622), + [anon_sym_LPAREN_LPAREN] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_while] = ACTIONS(632), + [anon_sym_until] = ACTIONS(632), + [anon_sym_if] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(648), + [anon_sym_declare] = ACTIONS(650), + [anon_sym_typeset] = ACTIONS(650), + [anon_sym_export] = ACTIONS(650), + [anon_sym_readonly] = ACTIONS(650), + [anon_sym_local] = ACTIONS(650), + [anon_sym_unset] = ACTIONS(652), + [anon_sym_unsetenv] = ACTIONS(652), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(628), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_GT_PIPE] = ACTIONS(628), + [anon_sym_LT_AMP_DASH] = ACTIONS(654), + [anon_sym_GT_AMP_DASH] = ACTIONS(654), + [anon_sym_LT_LT_LT] = ACTIONS(656), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(658), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [sym__special_character] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(666), + [sym_raw_string] = ACTIONS(668), + [sym_ansi_c_string] = ACTIONS(668), + [aux_sym_number_token1] = ACTIONS(670), + [aux_sym_number_token2] = ACTIONS(672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(674), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(680), + [anon_sym_LT_LPAREN] = ACTIONS(682), + [anon_sym_GT_LPAREN] = ACTIONS(682), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(686), + [sym_test_operator] = ACTIONS(688), + [sym__brace_start] = ACTIONS(690), }, [STATE(442)] = { - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4736), - [sym_for_statement] = STATE(4736), - [sym_c_style_for_statement] = STATE(4736), - [sym_while_statement] = STATE(4437), - [sym_if_statement] = STATE(4437), - [sym_case_statement] = STATE(4736), - [sym_function_definition] = STATE(4736), - [sym_compound_statement] = STATE(4736), - [sym_subshell] = STATE(4736), - [sym_pipeline] = STATE(4739), - [sym_list] = STATE(4736), - [sym_negated_command] = STATE(4736), - [sym_test_command] = STATE(4736), - [sym_declaration_command] = STATE(4736), - [sym_unset_command] = STATE(4736), - [sym_command] = STATE(4736), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1128), - [sym_variable_assignments] = STATE(4736), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6504), + [sym_redirected_statement] = STATE(5233), + [sym_for_statement] = STATE(5233), + [sym_c_style_for_statement] = STATE(5233), + [sym_while_statement] = STATE(5021), + [sym_if_statement] = STATE(5021), + [sym_case_statement] = STATE(5233), + [sym_function_definition] = STATE(5233), + [sym_compound_statement] = STATE(5233), + [sym_subshell] = STATE(5233), + [sym_pipeline] = STATE(5236), + [sym_list] = STATE(5233), + [sym_negated_command] = STATE(5233), + [sym_test_command] = STATE(5233), + [sym_declaration_command] = STATE(5233), + [sym_unset_command] = STATE(5233), + [sym_command] = STATE(5233), + [sym_command_name] = STATE(639), + [sym_variable_assignment] = STATE(1597), + [sym_variable_assignments] = STATE(5233), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(2983), + [sym_incomplete_redirect] = STATE(2983), + [sym_herestring_redirect] = STATE(2984), + [sym_arithmetic_expansion] = STATE(1779), + [sym_brace_expression] = STATE(1779), + [sym_concatenation] = STATE(2424), + [sym_string] = STATE(1779), + [sym_translated_string] = STATE(1779), + [sym_number] = STATE(1779), + [sym_simple_expansion] = STATE(1779), + [sym_expansion] = STATE(1779), + [sym_command_substitution] = STATE(1779), + [sym_process_substitution] = STATE(1779), + [aux_sym_redirected_statement_repeat2] = STATE(5113), + [aux_sym_command_repeat1] = STATE(903), + [aux_sym__literal_repeat1] = STATE(2330), + [sym_word] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(143), + [anon_sym_select] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(155), + [anon_sym_until] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_case] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(171), + [anon_sym_declare] = ACTIONS(173), + [anon_sym_typeset] = ACTIONS(173), + [anon_sym_export] = ACTIONS(173), + [anon_sym_readonly] = ACTIONS(173), + [anon_sym_local] = ACTIONS(173), + [anon_sym_unset] = ACTIONS(175), + [anon_sym_unsetenv] = ACTIONS(175), + [anon_sym_AMP_GT] = ACTIONS(1027), + [anon_sym_AMP_GT_GT] = ACTIONS(1029), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_GT_PIPE] = ACTIONS(1029), + [anon_sym_LT_AMP_DASH] = ACTIONS(1035), + [anon_sym_GT_AMP_DASH] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym_raw_string] = ACTIONS(1049), + [sym_ansi_c_string] = ACTIONS(1049), + [aux_sym_number_token1] = ACTIONS(1051), + [aux_sym_number_token2] = ACTIONS(1053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(215), + [sym_test_operator] = ACTIONS(1067), + [sym__brace_start] = ACTIONS(1069), + }, + [STATE(443)] = { + [sym__statement_not_pipeline] = STATE(4674), + [sym_redirected_statement] = STATE(4674), + [sym_for_statement] = STATE(4674), + [sym_c_style_for_statement] = STATE(4674), + [sym_while_statement] = STATE(4203), + [sym_if_statement] = STATE(4203), + [sym_case_statement] = STATE(4674), + [sym_function_definition] = STATE(4674), + [sym_compound_statement] = STATE(4674), + [sym_subshell] = STATE(4674), + [sym_pipeline] = STATE(5445), + [sym_list] = STATE(4674), + [sym_negated_command] = STATE(4674), + [sym_test_command] = STATE(4674), + [sym_declaration_command] = STATE(4674), + [sym_unset_command] = STATE(4674), + [sym_command] = STATE(4674), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4674), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -69731,43 +70269,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(443)] = { - [sym__statement_not_pipeline] = STATE(4562), - [sym_redirected_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_c_style_for_statement] = STATE(4562), - [sym_while_statement] = STATE(4439), - [sym_if_statement] = STATE(4439), - [sym_case_statement] = STATE(4562), - [sym_function_definition] = STATE(4562), - [sym_compound_statement] = STATE(4562), - [sym_subshell] = STATE(4562), - [sym_pipeline] = STATE(5512), - [sym_list] = STATE(4562), - [sym_negated_command] = STATE(4562), - [sym_test_command] = STATE(4562), - [sym_declaration_command] = STATE(4562), - [sym_unset_command] = STATE(4562), - [sym_command] = STATE(4562), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1130), - [sym_variable_assignments] = STATE(4562), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(444)] = { + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4589), + [sym_for_statement] = STATE(4589), + [sym_c_style_for_statement] = STATE(4589), + [sym_while_statement] = STATE(4202), + [sym_if_statement] = STATE(4202), + [sym_case_statement] = STATE(4589), + [sym_function_definition] = STATE(4589), + [sym_compound_statement] = STATE(4589), + [sym_subshell] = STATE(4589), + [sym_pipeline] = STATE(4590), + [sym_list] = STATE(4589), + [sym_negated_command] = STATE(4589), + [sym_test_command] = STATE(4589), + [sym_declaration_command] = STATE(4589), + [sym_unset_command] = STATE(4589), + [sym_command] = STATE(4589), + [sym_command_name] = STATE(545), + [sym_variable_assignment] = STATE(1029), + [sym_variable_assignments] = STATE(4589), + [sym_subscript] = STATE(6647), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1161), + [sym_brace_expression] = STATE(1161), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1161), + [sym_translated_string] = STATE(1161), + [sym_number] = STATE(1161), + [sym_simple_expansion] = STATE(1161), + [sym_expansion] = STATE(1161), + [sym_command_substitution] = STATE(1161), + [sym_process_substitution] = STATE(1161), + [aux_sym_redirected_statement_repeat2] = STATE(4442), + [aux_sym_command_repeat1] = STATE(874), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -69821,43 +70360,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(444)] = { - [sym__statement_not_pipeline] = STATE(4562), - [sym_redirected_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_c_style_for_statement] = STATE(4562), - [sym_while_statement] = STATE(5017), - [sym_if_statement] = STATE(5017), - [sym_case_statement] = STATE(4562), - [sym_function_definition] = STATE(4562), - [sym_compound_statement] = STATE(4562), - [sym_subshell] = STATE(4562), - [sym_pipeline] = STATE(5500), - [sym_list] = STATE(4562), - [sym_negated_command] = STATE(4562), - [sym_test_command] = STATE(4562), - [sym_declaration_command] = STATE(4562), - [sym_unset_command] = STATE(4562), - [sym_command] = STATE(4562), - [sym_command_name] = STATE(581), - [sym_variable_assignment] = STATE(1698), - [sym_variable_assignments] = STATE(4562), - [sym_subscript] = STATE(6679), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1692), - [sym_brace_expression] = STATE(1692), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1692), - [sym_translated_string] = STATE(1692), - [sym_number] = STATE(1692), - [sym_simple_expansion] = STATE(1692), - [sym_expansion] = STATE(1692), - [sym_command_substitution] = STATE(1692), - [sym_process_substitution] = STATE(1692), - [aux_sym_redirected_statement_repeat2] = STATE(5057), - [aux_sym_command_repeat1] = STATE(974), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(445)] = { + [sym__statement_not_pipeline] = STATE(4674), + [sym_redirected_statement] = STATE(4674), + [sym_for_statement] = STATE(4674), + [sym_c_style_for_statement] = STATE(4674), + [sym_while_statement] = STATE(4835), + [sym_if_statement] = STATE(4835), + [sym_case_statement] = STATE(4674), + [sym_function_definition] = STATE(4674), + [sym_compound_statement] = STATE(4674), + [sym_subshell] = STATE(4674), + [sym_pipeline] = STATE(5459), + [sym_list] = STATE(4674), + [sym_negated_command] = STATE(4674), + [sym_test_command] = STATE(4674), + [sym_declaration_command] = STATE(4674), + [sym_unset_command] = STATE(4674), + [sym_command] = STATE(4674), + [sym_command_name] = STATE(618), + [sym_variable_assignment] = STATE(1503), + [sym_variable_assignments] = STATE(4674), + [sym_subscript] = STATE(6687), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1744), + [sym_brace_expression] = STATE(1744), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1744), + [sym_translated_string] = STATE(1744), + [sym_number] = STATE(1744), + [sym_simple_expansion] = STATE(1744), + [sym_expansion] = STATE(1744), + [sym_command_substitution] = STATE(1744), + [sym_process_substitution] = STATE(1744), + [aux_sym_redirected_statement_repeat2] = STATE(5027), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -69911,43 +70451,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(1023), [sym__brace_start] = ACTIONS(340), }, - [STATE(445)] = { - [sym__statement_not_pipeline] = STATE(6604), - [sym_redirected_statement] = STATE(5165), - [sym_for_statement] = STATE(5165), - [sym_c_style_for_statement] = STATE(5165), - [sym_while_statement] = STATE(5014), - [sym_if_statement] = STATE(5014), - [sym_case_statement] = STATE(5165), - [sym_function_definition] = STATE(5165), - [sym_compound_statement] = STATE(5165), - [sym_subshell] = STATE(5165), - [sym_pipeline] = STATE(5166), - [sym_list] = STATE(5165), - [sym_negated_command] = STATE(5165), - [sym_test_command] = STATE(5165), - [sym_declaration_command] = STATE(5165), - [sym_unset_command] = STATE(5165), - [sym_command] = STATE(5165), - [sym_command_name] = STATE(581), - [sym_variable_assignment] = STATE(1695), - [sym_variable_assignments] = STATE(5165), - [sym_subscript] = STATE(6679), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1692), - [sym_brace_expression] = STATE(1692), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1692), - [sym_translated_string] = STATE(1692), - [sym_number] = STATE(1692), - [sym_simple_expansion] = STATE(1692), - [sym_expansion] = STATE(1692), - [sym_command_substitution] = STATE(1692), - [sym_process_substitution] = STATE(1692), - [aux_sym_redirected_statement_repeat2] = STATE(5057), - [aux_sym_command_repeat1] = STATE(974), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(446)] = { + [sym__statement_not_pipeline] = STATE(6612), + [sym_redirected_statement] = STATE(5093), + [sym_for_statement] = STATE(5093), + [sym_c_style_for_statement] = STATE(5093), + [sym_while_statement] = STATE(4834), + [sym_if_statement] = STATE(4834), + [sym_case_statement] = STATE(5093), + [sym_function_definition] = STATE(5093), + [sym_compound_statement] = STATE(5093), + [sym_subshell] = STATE(5093), + [sym_pipeline] = STATE(5095), + [sym_list] = STATE(5093), + [sym_negated_command] = STATE(5093), + [sym_test_command] = STATE(5093), + [sym_declaration_command] = STATE(5093), + [sym_unset_command] = STATE(5093), + [sym_command] = STATE(5093), + [sym_command_name] = STATE(618), + [sym_variable_assignment] = STATE(1501), + [sym_variable_assignments] = STATE(5093), + [sym_subscript] = STATE(6687), + [sym_file_redirect] = STATE(2077), + [sym_incomplete_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2078), + [sym_arithmetic_expansion] = STATE(1744), + [sym_brace_expression] = STATE(1744), + [sym_concatenation] = STATE(1437), + [sym_string] = STATE(1744), + [sym_translated_string] = STATE(1744), + [sym_number] = STATE(1744), + [sym_simple_expansion] = STATE(1744), + [sym_expansion] = STATE(1744), + [sym_command_substitution] = STATE(1744), + [sym_process_substitution] = STATE(1744), + [aux_sym_redirected_statement_repeat2] = STATE(5027), + [aux_sym_command_repeat1] = STATE(896), + [aux_sym__literal_repeat1] = STATE(1300), [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -70001,115 +70542,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(1023), [sym__brace_start] = ACTIONS(340), }, - [STATE(446)] = { - [sym__statement_not_pipeline] = STATE(4562), - [sym_redirected_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_c_style_for_statement] = STATE(4562), - [sym_while_statement] = STATE(4172), - [sym_if_statement] = STATE(4172), - [sym_case_statement] = STATE(4562), - [sym_function_definition] = STATE(4562), - [sym_compound_statement] = STATE(4562), - [sym_subshell] = STATE(4562), - [sym_pipeline] = STATE(5458), - [sym_list] = STATE(4562), - [sym_negated_command] = STATE(4562), - [sym_test_command] = STATE(4562), - [sym_declaration_command] = STATE(4562), - [sym_unset_command] = STATE(4562), - [sym_command] = STATE(4562), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(884), - [sym_variable_assignments] = STATE(4562), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(340), - }, [STATE(447)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [sym__expression] = STATE(2746), + [sym_binary_expression] = STATE(2824), + [sym_ternary_expression] = STATE(2824), + [sym_unary_expression] = STATE(2824), + [sym_postfix_expression] = STATE(2824), + [sym_parenthesized_expression] = STATE(2824), + [sym_arithmetic_expansion] = STATE(2432), + [sym_brace_expression] = STATE(2432), + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(2432), + [sym_translated_string] = STATE(2432), + [sym_number] = STATE(2432), + [sym_simple_expansion] = STATE(2432), + [sym_expansion] = STATE(2432), + [sym_command_substitution] = STATE(2432), + [sym_process_substitution] = STATE(2432), + [aux_sym__literal_repeat1] = STATE(2405), + [aux_sym_concatenation_repeat1] = STATE(2384), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70120,13 +70571,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70134,8 +70585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70154,47 +70605,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(715), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(719), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), [sym__concat] = ACTIONS(1091), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(739), }, [STATE(448)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), - [sym_word] = ACTIONS(1071), + [sym__expression] = STATE(3067), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(2457), + [sym_brace_expression] = STATE(2457), + [sym_concatenation] = STATE(2506), + [sym_string] = STATE(2457), + [sym_translated_string] = STATE(2457), + [sym_number] = STATE(2457), + [sym_simple_expansion] = STATE(2457), + [sym_expansion] = STATE(2457), + [sym_command_substitution] = STATE(2457), + [sym_process_substitution] = STATE(2457), + [aux_sym__literal_repeat1] = STATE(2625), + [aux_sym_concatenation_repeat1] = STATE(2458), + [sym_word] = ACTIONS(1095), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70204,13 +70655,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70218,8 +70669,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70228,56 +70679,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_RBRACK_RBRACK] = ACTIONS(700), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_PLUS_PLUS2] = ACTIONS(1079), - [anon_sym_DASH_DASH2] = ACTIONS(1079), - [anon_sym_DASH2] = ACTIONS(1081), - [anon_sym_PLUS2] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), - [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), - [sym_raw_string] = ACTIONS(1089), - [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [anon_sym_PLUS_PLUS2] = ACTIONS(1101), + [anon_sym_DASH_DASH2] = ACTIONS(1101), + [anon_sym_DASH2] = ACTIONS(1103), + [anon_sym_PLUS2] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1105), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1109), + [aux_sym_concatenation_token1] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(256), + [sym__special_character] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_raw_string] = ACTIONS(1117), + [sym_ansi_c_string] = ACTIONS(1117), + [aux_sym_number_token1] = ACTIONS(262), + [aux_sym_number_token2] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), + [anon_sym_BQUOTE] = ACTIONS(270), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1121), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1097), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1111), + [sym_test_operator] = ACTIONS(1125), + [sym__brace_start] = ACTIONS(282), }, [STATE(449)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [sym__expression] = STATE(3008), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(2456), + [sym_brace_expression] = STATE(2456), + [sym_concatenation] = STATE(2506), + [sym_string] = STATE(2456), + [sym_translated_string] = STATE(2456), + [sym_number] = STATE(2456), + [sym_simple_expansion] = STATE(2456), + [sym_expansion] = STATE(2456), + [sym_command_substitution] = STATE(2456), + [sym_process_substitution] = STATE(2456), + [aux_sym__literal_repeat1] = STATE(2434), + [aux_sym_concatenation_repeat1] = STATE(2464), + [sym_word] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(239), + [anon_sym_PLUS_PLUS] = ACTIONS(239), + [anon_sym_DASH_DASH] = ACTIONS(239), + [anon_sym_PLUS_EQ] = ACTIONS(239), + [anon_sym_DASH_EQ] = ACTIONS(239), + [anon_sym_STAR_EQ] = ACTIONS(239), + [anon_sym_SLASH_EQ] = ACTIONS(239), + [anon_sym_PERCENT_EQ] = ACTIONS(239), + [anon_sym_STAR_STAR_EQ] = ACTIONS(239), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), + [anon_sym_CARET_EQ] = ACTIONS(239), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(239), + [anon_sym_CARET] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_EQ_EQ] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_LT] = ACTIONS(239), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(239), + [anon_sym_GT_GT] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_SLASH] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_STAR_STAR] = ACTIONS(239), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_PLUS_PLUS2] = ACTIONS(1131), + [anon_sym_DASH_DASH2] = ACTIONS(1131), + [anon_sym_DASH2] = ACTIONS(1133), + [anon_sym_PLUS2] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1109), + [aux_sym_concatenation_token1] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(256), + [sym__special_character] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_raw_string] = ACTIONS(1139), + [sym_ansi_c_string] = ACTIONS(1139), + [aux_sym_number_token1] = ACTIONS(262), + [aux_sym_number_token2] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), + [anon_sym_BQUOTE] = ACTIONS(270), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1121), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1111), + [sym_test_operator] = ACTIONS(1141), + [sym__brace_start] = ACTIONS(282), + }, + [STATE(450)] = { + [sym__expression] = STATE(2746), + [sym_binary_expression] = STATE(2824), + [sym_ternary_expression] = STATE(2824), + [sym_unary_expression] = STATE(2824), + [sym_postfix_expression] = STATE(2824), + [sym_parenthesized_expression] = STATE(2824), + [sym_arithmetic_expansion] = STATE(2432), + [sym_brace_expression] = STATE(2432), + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(2432), + [sym_translated_string] = STATE(2432), + [sym_number] = STATE(2432), + [sym_simple_expansion] = STATE(2432), + [sym_expansion] = STATE(2432), + [sym_command_substitution] = STATE(2432), + [sym_process_substitution] = STATE(2432), + [aux_sym__literal_repeat1] = STATE(2405), + [aux_sym_concatenation_repeat1] = STATE(2384), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70288,13 +70823,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70302,8 +70837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70314,7 +70849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1099), + [anon_sym_RBRACK] = ACTIONS(1143), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70322,46 +70857,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(715), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(719), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1101), + [sym__concat] = ACTIONS(1145), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(739), }, - [STATE(450)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [STATE(451)] = { + [sym__expression] = STATE(2746), + [sym_binary_expression] = STATE(2824), + [sym_ternary_expression] = STATE(2824), + [sym_unary_expression] = STATE(2824), + [sym_postfix_expression] = STATE(2824), + [sym_parenthesized_expression] = STATE(2824), + [sym_arithmetic_expansion] = STATE(2432), + [sym_brace_expression] = STATE(2432), + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(2432), + [sym_translated_string] = STATE(2432), + [sym_number] = STATE(2432), + [sym_simple_expansion] = STATE(2432), + [sym_expansion] = STATE(2432), + [sym_command_substitution] = STATE(2432), + [sym_process_substitution] = STATE(2432), + [aux_sym__literal_repeat1] = STATE(2405), + [aux_sym_concatenation_repeat1] = STATE(2384), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70372,13 +70907,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70386,8 +70921,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70398,7 +70933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(1147), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70406,46 +70941,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(715), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(719), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1105), + [sym__concat] = ACTIONS(1149), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(739), }, - [STATE(451)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [STATE(452)] = { + [sym__expression] = STATE(2746), + [sym_binary_expression] = STATE(2824), + [sym_ternary_expression] = STATE(2824), + [sym_unary_expression] = STATE(2824), + [sym_postfix_expression] = STATE(2824), + [sym_parenthesized_expression] = STATE(2824), + [sym_arithmetic_expansion] = STATE(2432), + [sym_brace_expression] = STATE(2432), + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(2432), + [sym_translated_string] = STATE(2432), + [sym_number] = STATE(2432), + [sym_simple_expansion] = STATE(2432), + [sym_expansion] = STATE(2432), + [sym_command_substitution] = STATE(2432), + [sym_process_substitution] = STATE(2432), + [aux_sym__literal_repeat1] = STATE(2405), + [aux_sym_concatenation_repeat1] = STATE(2384), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70456,13 +70991,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70470,8 +71005,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70482,7 +71017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_RBRACK] = ACTIONS(1151), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70490,46 +71025,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(715), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(719), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(358), + [sym__concat] = ACTIONS(1153), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(739), }, - [STATE(452)] = { - [sym__expression] = STATE(2956), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(2344), - [sym_brace_expression] = STATE(2344), - [sym_concatenation] = STATE(2518), - [sym_string] = STATE(2344), - [sym_translated_string] = STATE(2344), - [sym_number] = STATE(2344), - [sym_simple_expansion] = STATE(2344), - [sym_expansion] = STATE(2344), - [sym_command_substitution] = STATE(2344), - [sym_process_substitution] = STATE(2344), - [aux_sym__literal_repeat1] = STATE(2312), - [aux_sym_concatenation_repeat1] = STATE(2314), + [STATE(453)] = { + [sym__expression] = STATE(2862), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(2487), + [sym_brace_expression] = STATE(2487), + [sym_concatenation] = STATE(2506), + [sym_string] = STATE(2487), + [sym_translated_string] = STATE(2487), + [sym_number] = STATE(2487), + [sym_simple_expansion] = STATE(2487), + [sym_expansion] = STATE(2487), + [sym_command_substitution] = STATE(2487), + [sym_process_substitution] = STATE(2487), + [aux_sym__literal_repeat1] = STATE(2434), + [aux_sym_concatenation_repeat1] = STATE(2426), [sym_word] = ACTIONS(235), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70540,13 +71075,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70554,8 +71089,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70564,8 +71099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_RPAREN] = ACTIONS(700), [anon_sym_BANG] = ACTIONS(246), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), @@ -70574,47 +71109,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(103), [anon_sym_PLUS2] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1109), + [aux_sym_concatenation_token1] = ACTIONS(1111), [anon_sym_DOLLAR] = ACTIONS(256), - [sym__special_character] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(1119), - [sym_ansi_c_string] = ACTIONS(1119), + [sym__special_character] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_raw_string] = ACTIONS(1157), + [sym_ansi_c_string] = ACTIONS(1157), [aux_sym_number_token1] = ACTIONS(262), [aux_sym_number_token2] = ACTIONS(264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), [anon_sym_BQUOTE] = ACTIONS(270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1121), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), + [sym__concat] = ACTIONS(1111), [sym_test_operator] = ACTIONS(280), [sym__brace_start] = ACTIONS(282), }, - [STATE(453)] = { - [sym__expression] = STATE(2951), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(2361), - [sym_brace_expression] = STATE(2361), - [sym_concatenation] = STATE(2518), - [sym_string] = STATE(2361), - [sym_translated_string] = STATE(2361), - [sym_number] = STATE(2361), - [sym_simple_expansion] = STATE(2361), - [sym_expansion] = STATE(2361), - [sym_command_substitution] = STATE(2361), - [sym_process_substitution] = STATE(2361), - [aux_sym__literal_repeat1] = STATE(2451), - [aux_sym_concatenation_repeat1] = STATE(2421), - [sym_word] = ACTIONS(1127), + [STATE(454)] = { + [sym__expression] = STATE(2746), + [sym_binary_expression] = STATE(2824), + [sym_ternary_expression] = STATE(2824), + [sym_unary_expression] = STATE(2824), + [sym_postfix_expression] = STATE(2824), + [sym_parenthesized_expression] = STATE(2824), + [sym_arithmetic_expansion] = STATE(2432), + [sym_brace_expression] = STATE(2432), + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(2432), + [sym_translated_string] = STATE(2432), + [sym_number] = STATE(2432), + [sym_simple_expansion] = STATE(2432), + [sym_expansion] = STATE(2432), + [sym_command_substitution] = STATE(2432), + [sym_process_substitution] = STATE(2432), + [aux_sym__literal_repeat1] = STATE(2405), + [aux_sym_concatenation_repeat1] = STATE(2384), + [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70624,13 +71159,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70638,8 +71173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70648,56 +71183,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_RBRACK_RBRACK] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_RBRACK] = ACTIONS(1159), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_PLUS_PLUS2] = ACTIONS(1131), - [anon_sym_DASH_DASH2] = ACTIONS(1131), - [anon_sym_DASH2] = ACTIONS(1133), - [anon_sym_PLUS2] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(256), - [sym__special_character] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(1139), - [sym_ansi_c_string] = ACTIONS(1139), - [aux_sym_number_token1] = ACTIONS(262), - [aux_sym_number_token2] = ACTIONS(264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), - [anon_sym_BQUOTE] = ACTIONS(270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), + [anon_sym_PLUS_PLUS2] = ACTIONS(1079), + [anon_sym_DASH_DASH2] = ACTIONS(1079), + [anon_sym_DASH2] = ACTIONS(1081), + [anon_sym_PLUS2] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1083), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), + [aux_sym_concatenation_token1] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__special_character] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(719), + [sym_raw_string] = ACTIONS(1089), + [sym_ansi_c_string] = ACTIONS(1089), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1141), - [sym__brace_start] = ACTIONS(282), + [sym__concat] = ACTIONS(1161), + [sym_test_operator] = ACTIONS(1093), + [sym__brace_start] = ACTIONS(739), }, - [STATE(454)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [STATE(455)] = { + [sym__expression] = STATE(2746), + [sym_binary_expression] = STATE(2824), + [sym_ternary_expression] = STATE(2824), + [sym_unary_expression] = STATE(2824), + [sym_postfix_expression] = STATE(2824), + [sym_parenthesized_expression] = STATE(2824), + [sym_arithmetic_expansion] = STATE(2432), + [sym_brace_expression] = STATE(2432), + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(2432), + [sym_translated_string] = STATE(2432), + [sym_number] = STATE(2432), + [sym_simple_expansion] = STATE(2432), + [sym_expansion] = STATE(2432), + [sym_command_substitution] = STATE(2432), + [sym_process_substitution] = STATE(2432), + [aux_sym__literal_repeat1] = STATE(2405), + [aux_sym_concatenation_repeat1] = STATE(2384), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70708,13 +71243,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70722,8 +71257,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70734,7 +71269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1143), + [anon_sym_RBRACK] = ACTIONS(700), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70742,47 +71277,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(715), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(719), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1145), + [sym__concat] = ACTIONS(700), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(739), }, - [STATE(455)] = { - [sym__expression] = STATE(2989), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(2381), - [sym_brace_expression] = STATE(2381), - [sym_concatenation] = STATE(2518), - [sym_string] = STATE(2381), - [sym_translated_string] = STATE(2381), - [sym_number] = STATE(2381), - [sym_simple_expansion] = STATE(2381), - [sym_expansion] = STATE(2381), - [sym_command_substitution] = STATE(2381), - [sym_process_substitution] = STATE(2381), - [aux_sym__literal_repeat1] = STATE(2312), - [aux_sym_concatenation_repeat1] = STATE(2396), - [sym_word] = ACTIONS(1147), + [STATE(456)] = { + [sym__expression] = STATE(2746), + [sym_binary_expression] = STATE(2824), + [sym_ternary_expression] = STATE(2824), + [sym_unary_expression] = STATE(2824), + [sym_postfix_expression] = STATE(2824), + [sym_parenthesized_expression] = STATE(2824), + [sym_arithmetic_expansion] = STATE(2432), + [sym_brace_expression] = STATE(2432), + [sym_concatenation] = STATE(2824), + [sym_string] = STATE(2432), + [sym_translated_string] = STATE(2432), + [sym_number] = STATE(2432), + [sym_simple_expansion] = STATE(2432), + [sym_expansion] = STATE(2432), + [sym_command_substitution] = STATE(2432), + [sym_process_substitution] = STATE(2432), + [aux_sym__literal_repeat1] = STATE(2405), + [aux_sym_concatenation_repeat1] = STATE(2384), + [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70792,13 +71327,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70806,92 +71341,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_PERCENT] = ACTIONS(239), - [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_EQ_TILDE] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(239), - [anon_sym_PLUS_PLUS2] = ACTIONS(1151), - [anon_sym_DASH_DASH2] = ACTIONS(1151), - [anon_sym_DASH2] = ACTIONS(1153), - [anon_sym_PLUS2] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(256), - [sym__special_character] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(262), - [aux_sym_number_token2] = ACTIONS(264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), - [anon_sym_BQUOTE] = ACTIONS(270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1161), - [sym__brace_start] = ACTIONS(282), - }, - [STATE(456)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), - [sym_word] = ACTIONS(1071), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(239), - [anon_sym_DASH_EQ] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(239), - [anon_sym_SLASH_EQ] = ACTIONS(239), - [anon_sym_PERCENT_EQ] = ACTIONS(239), - [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), - [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), - [anon_sym_PIPE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70910,47 +71361,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(715), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(719), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), [sym__concat] = ACTIONS(1165), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(739), }, [STATE(457)] = { - [sym__expression] = STATE(2994), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), - [sym_arithmetic_expansion] = STATE(2309), - [sym_brace_expression] = STATE(2309), - [sym_concatenation] = STATE(2847), - [sym_string] = STATE(2309), - [sym_translated_string] = STATE(2309), - [sym_number] = STATE(2309), - [sym_simple_expansion] = STATE(2309), - [sym_expansion] = STATE(2309), - [sym_command_substitution] = STATE(2309), - [sym_process_substitution] = STATE(2309), - [aux_sym__literal_repeat1] = STATE(2549), - [aux_sym_concatenation_repeat1] = STATE(2417), - [sym_word] = ACTIONS(356), + [sym__expression] = STATE(2895), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), + [sym_arithmetic_expansion] = STATE(2383), + [sym_brace_expression] = STATE(2383), + [sym_concatenation] = STATE(3002), + [sym_string] = STATE(2383), + [sym_translated_string] = STATE(2383), + [sym_number] = STATE(2383), + [sym_simple_expansion] = STATE(2383), + [sym_expansion] = STATE(2383), + [sym_command_substitution] = STATE(2383), + [sym_process_substitution] = STATE(2383), + [aux_sym__literal_repeat1] = STATE(2513), + [aux_sym_concatenation_repeat1] = STATE(2431), + [sym_word] = ACTIONS(698), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70960,13 +71411,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70974,8 +71425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70984,9 +71435,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(700), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(181), @@ -70994,46 +71445,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(183), [anon_sym_PLUS2] = ACTIONS(183), [anon_sym_TILDE] = ACTIONS(185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(709), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(711), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), - [sym__special_character] = ACTIONS(375), - [anon_sym_DQUOTE] = ACTIONS(377), - [sym_raw_string] = ACTIONS(379), - [sym_ansi_c_string] = ACTIONS(379), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__special_character] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(719), + [sym_raw_string] = ACTIONS(721), + [sym_ansi_c_string] = ACTIONS(721), + [aux_sym_number_token1] = ACTIONS(723), + [aux_sym_number_token2] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(729), + [anon_sym_BQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(733), + [anon_sym_LT_LPAREN] = ACTIONS(735), + [anon_sym_GT_LPAREN] = ACTIONS(735), [sym_comment] = ACTIONS(71), [sym__concat] = ACTIONS(1085), - [sym_test_operator] = ACTIONS(395), - [sym__brace_start] = ACTIONS(397), + [sym_test_operator] = ACTIONS(737), + [sym__brace_start] = ACTIONS(739), }, [STATE(458)] = { - [sym__expression] = STATE(3258), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(2557), - [sym_brace_expression] = STATE(2557), - [sym_concatenation] = STATE(2518), - [sym_string] = STATE(2557), - [sym_translated_string] = STATE(2557), - [sym_number] = STATE(2557), - [sym_simple_expansion] = STATE(2557), - [sym_expansion] = STATE(2557), - [sym_command_substitution] = STATE(2557), - [sym_process_substitution] = STATE(2557), - [aux_sym__literal_repeat1] = STATE(2312), - [aux_sym_concatenation_repeat1] = STATE(2528), + [sym__expression] = STATE(3339), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(2564), + [sym_brace_expression] = STATE(2564), + [sym_concatenation] = STATE(2506), + [sym_string] = STATE(2564), + [sym_translated_string] = STATE(2564), + [sym_number] = STATE(2564), + [sym_simple_expansion] = STATE(2564), + [sym_expansion] = STATE(2564), + [sym_command_substitution] = STATE(2564), + [sym_process_substitution] = STATE(2564), + [aux_sym__literal_repeat1] = STATE(2434), + [aux_sym_concatenation_repeat1] = STATE(2568), [sym_word] = ACTIONS(1167), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -71044,13 +71495,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -71058,8 +71509,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(239), [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -71068,7 +71519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(1169), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), @@ -71077,29 +71528,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1173), [anon_sym_PLUS2] = ACTIONS(1173), [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1109), + [aux_sym_concatenation_token1] = ACTIONS(1111), [anon_sym_DOLLAR] = ACTIONS(256), [sym__special_character] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1115), [sym_raw_string] = ACTIONS(1179), [sym_ansi_c_string] = ACTIONS(1179), [aux_sym_number_token1] = ACTIONS(262), [aux_sym_number_token2] = ACTIONS(264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1119), [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), [anon_sym_BQUOTE] = ACTIONS(270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1123), - [anon_sym_LT_LPAREN] = ACTIONS(1125), - [anon_sym_GT_LPAREN] = ACTIONS(1125), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1121), + [anon_sym_LT_LPAREN] = ACTIONS(1123), + [anon_sym_GT_LPAREN] = ACTIONS(1123), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), + [sym__concat] = ACTIONS(1111), [sym_test_operator] = ACTIONS(1181), [sym__brace_start] = ACTIONS(282), }, [STATE(459)] = { - [sym_string] = STATE(470), + [sym_string] = STATE(471), [sym_word] = ACTIONS(1183), [anon_sym_SEMI] = ACTIONS(1183), [anon_sym_EQ] = ACTIONS(1183), @@ -71180,7 +71631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1191), }, [STATE(460)] = { - [sym_string] = STATE(470), + [sym_string] = STATE(471), [sym_word] = ACTIONS(1195), [anon_sym_SEMI] = ACTIONS(1195), [anon_sym_EQ] = ACTIONS(1195), @@ -71261,85 +71712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1197), }, [STATE(461)] = { - [sym_string] = STATE(516), - [sym_word] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_EQ] = ACTIONS(1183), - [anon_sym_DASH_EQ] = ACTIONS(1183), - [anon_sym_STAR_EQ] = ACTIONS(1183), - [anon_sym_SLASH_EQ] = ACTIONS(1183), - [anon_sym_PERCENT_EQ] = ACTIONS(1183), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1183), - [anon_sym_LT_LT_EQ] = ACTIONS(1183), - [anon_sym_GT_GT_EQ] = ACTIONS(1183), - [anon_sym_AMP_EQ] = ACTIONS(1183), - [anon_sym_CARET_EQ] = ACTIONS(1183), - [anon_sym_PIPE_EQ] = ACTIONS(1183), - [anon_sym_PIPE_PIPE] = ACTIONS(1183), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1183), - [anon_sym_CARET] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_EQ_EQ] = ACTIONS(1183), - [anon_sym_BANG_EQ] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(1183), - [anon_sym_GT] = ACTIONS(1183), - [anon_sym_LT_EQ] = ACTIONS(1183), - [anon_sym_GT_EQ] = ACTIONS(1183), - [anon_sym_LT_LT] = ACTIONS(1183), - [anon_sym_GT_GT] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1183), - [anon_sym_PERCENT] = ACTIONS(1183), - [anon_sym_STAR_STAR] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(1183), - [anon_sym_AMP_GT] = ACTIONS(1183), - [anon_sym_AMP_GT_GT] = ACTIONS(1183), - [anon_sym_LT_AMP] = ACTIONS(1183), - [anon_sym_GT_AMP] = ACTIONS(1183), - [anon_sym_GT_PIPE] = ACTIONS(1183), - [anon_sym_LT_AMP_DASH] = ACTIONS(1183), - [anon_sym_GT_AMP_DASH] = ACTIONS(1183), - [anon_sym_LT_LT_DASH] = ACTIONS(1183), - [anon_sym_LT_LT_LT] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1199), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_raw_string] = ACTIONS(1183), - [sym_ansi_c_string] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(1183), - [aux_sym_number_token2] = ACTIONS(1183), - [anon_sym_POUND] = ACTIONS(1199), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1183), - [anon_sym_LT_LPAREN] = ACTIONS(1183), - [anon_sym_GT_LPAREN] = ACTIONS(1183), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1203), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1203), - [anon_sym_AT2] = ACTIONS(1199), - [anon_sym__] = ACTIONS(1199), - [sym_file_descriptor] = ACTIONS(1191), - [sym_variable_name] = ACTIONS(1205), - [sym_test_operator] = ACTIONS(1191), - [sym__bare_dollar] = ACTIONS(1191), - [sym__brace_start] = ACTIONS(1191), - }, - [STATE(462)] = { - [sym_string] = STATE(516), + [sym_string] = STATE(506), [sym_word] = ACTIONS(1195), [anon_sym_EQ] = ACTIONS(1195), [anon_sym_PLUS_PLUS] = ACTIONS(1195), @@ -71416,8 +71789,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1197), [sym__brace_start] = ACTIONS(1197), }, + [STATE(462)] = { + [sym_string] = STATE(506), + [sym_word] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_STAR_STAR] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(1183), + [anon_sym_EQ_TILDE] = ACTIONS(1183), + [anon_sym_AMP_GT] = ACTIONS(1183), + [anon_sym_AMP_GT_GT] = ACTIONS(1183), + [anon_sym_LT_AMP] = ACTIONS(1183), + [anon_sym_GT_AMP] = ACTIONS(1183), + [anon_sym_GT_PIPE] = ACTIONS(1183), + [anon_sym_LT_AMP_DASH] = ACTIONS(1183), + [anon_sym_GT_AMP_DASH] = ACTIONS(1183), + [anon_sym_LT_LT_DASH] = ACTIONS(1183), + [anon_sym_LT_LT_LT] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1199), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1199), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_raw_string] = ACTIONS(1183), + [sym_ansi_c_string] = ACTIONS(1183), + [aux_sym_number_token1] = ACTIONS(1183), + [aux_sym_number_token2] = ACTIONS(1183), + [anon_sym_POUND] = ACTIONS(1199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), + [anon_sym_BQUOTE] = ACTIONS(1183), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1183), + [anon_sym_LT_LPAREN] = ACTIONS(1183), + [anon_sym_GT_LPAREN] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1203), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1203), + [anon_sym_AT2] = ACTIONS(1199), + [anon_sym__] = ACTIONS(1199), + [sym_file_descriptor] = ACTIONS(1191), + [sym_variable_name] = ACTIONS(1205), + [sym_test_operator] = ACTIONS(1191), + [sym__bare_dollar] = ACTIONS(1191), + [sym__brace_start] = ACTIONS(1191), + }, [STATE(463)] = { - [aux_sym_concatenation_repeat1] = STATE(464), + [aux_sym_concatenation_repeat1] = STATE(467), [sym_word] = ACTIONS(1207), [anon_sym_SEMI] = ACTIONS(1207), [anon_sym_EQ] = ACTIONS(1207), @@ -71493,7 +71944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1209), }, [STATE(464)] = { - [aux_sym_concatenation_repeat1] = STATE(464), + [aux_sym_concatenation_repeat1] = STATE(467), [sym_word] = ACTIONS(1213), [anon_sym_SEMI] = ACTIONS(1213), [anon_sym_EQ] = ACTIONS(1213), @@ -71547,7 +71998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1213), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1213), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1213), - [aux_sym_concatenation_token1] = ACTIONS(1217), + [aux_sym_concatenation_token1] = ACTIONS(254), [anon_sym_DOLLAR] = ACTIONS(1213), [sym__special_character] = ACTIONS(1213), [anon_sym_DQUOTE] = ACTIONS(1213), @@ -71563,167 +72014,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1213), [sym_comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(1215), - [sym__concat] = ACTIONS(1220), + [sym__concat] = ACTIONS(1217), [sym_test_operator] = ACTIONS(1215), [sym__bare_dollar] = ACTIONS(1215), [sym__brace_start] = ACTIONS(1215), }, [STATE(465)] = { - [aux_sym_concatenation_repeat1] = STATE(466), - [sym_word] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_STAR_EQ] = ACTIONS(1223), - [anon_sym_SLASH_EQ] = ACTIONS(1223), - [anon_sym_PERCENT_EQ] = ACTIONS(1223), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1223), - [anon_sym_LT_LT_EQ] = ACTIONS(1223), - [anon_sym_GT_GT_EQ] = ACTIONS(1223), - [anon_sym_AMP_EQ] = ACTIONS(1223), - [anon_sym_CARET_EQ] = ACTIONS(1223), - [anon_sym_PIPE_EQ] = ACTIONS(1223), + [aux_sym_concatenation_repeat1] = STATE(464), + [sym_word] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_PERCENT_EQ] = ACTIONS(1221), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP_EQ] = ACTIONS(1221), + [anon_sym_CARET_EQ] = ACTIONS(1221), + [anon_sym_PIPE_EQ] = ACTIONS(1221), [anon_sym_PIPE_PIPE] = ACTIONS(1223), [anon_sym_AMP_AMP] = ACTIONS(1223), [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_AMP] = ACTIONS(1223), [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1221), [anon_sym_LT] = ACTIONS(1223), [anon_sym_GT] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1223), - [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), [anon_sym_LT_LT] = ACTIONS(1223), [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1223), - [anon_sym_STAR_STAR] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1219), [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1219), + [anon_sym_PIPE_AMP] = ACTIONS(1219), [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_GT_PIPE] = ACTIONS(1223), - [anon_sym_LT_AMP_DASH] = ACTIONS(1223), - [anon_sym_GT_AMP_DASH] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1219), + [anon_sym_LT_AMP_DASH] = ACTIONS(1219), + [anon_sym_GT_AMP_DASH] = ACTIONS(1219), + [anon_sym_LT_LT_DASH] = ACTIONS(1219), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1219), [aux_sym_concatenation_token1] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(1223), - [sym_ansi_c_string] = ACTIONS(1223), - [aux_sym_number_token1] = ACTIONS(1223), - [aux_sym_number_token2] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1219), + [sym_ansi_c_string] = ACTIONS(1219), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1226), [sym__concat] = ACTIONS(278), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), + [sym_test_operator] = ACTIONS(1228), + [sym__bare_dollar] = ACTIONS(1226), + [sym__brace_start] = ACTIONS(1226), }, [STATE(466)] = { - [aux_sym_concatenation_repeat1] = STATE(464), - [sym_word] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_GT_PIPE] = ACTIONS(1227), - [anon_sym_LT_AMP_DASH] = ACTIONS(1227), - [anon_sym_GT_AMP_DASH] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1229), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1227), + [aux_sym_concatenation_repeat1] = STATE(463), + [sym_word] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_GT_PIPE] = ACTIONS(1231), + [anon_sym_LT_AMP_DASH] = ACTIONS(1231), + [anon_sym_GT_AMP_DASH] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1231), [aux_sym_concatenation_token1] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(1227), - [sym_ansi_c_string] = ACTIONS(1227), - [aux_sym_number_token1] = ACTIONS(1227), - [aux_sym_number_token2] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_ansi_c_string] = ACTIONS(1231), + [aux_sym_number_token1] = ACTIONS(1231), + [aux_sym_number_token2] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1229), - [sym__concat] = ACTIONS(1231), - [sym_test_operator] = ACTIONS(1229), - [sym__bare_dollar] = ACTIONS(1229), - [sym__brace_start] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1233), + [sym__concat] = ACTIONS(278), + [sym_test_operator] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, [STATE(467)] = { - [aux_sym_concatenation_repeat1] = STATE(463), - [sym_word] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), + [aux_sym_concatenation_repeat1] = STATE(467), + [sym_word] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), [anon_sym_EQ] = ACTIONS(1235), [anon_sym_PLUS_PLUS] = ACTIONS(1235), [anon_sym_DASH_DASH] = ACTIONS(1235), @@ -71738,139 +72189,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1235), [anon_sym_CARET_EQ] = ACTIONS(1235), [anon_sym_PIPE_EQ] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), [anon_sym_LT_EQ] = ACTIONS(1235), [anon_sym_GT_EQ] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), [anon_sym_PLUS] = ACTIONS(1235), [anon_sym_DASH] = ACTIONS(1235), [anon_sym_STAR] = ACTIONS(1235), [anon_sym_SLASH] = ACTIONS(1235), [anon_sym_PERCENT] = ACTIONS(1235), [anon_sym_STAR_STAR] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1233), - [anon_sym_PIPE_AMP] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1233), - [anon_sym_AMP_GT_GT] = ACTIONS(1233), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_GT_PIPE] = ACTIONS(1233), - [anon_sym_LT_AMP_DASH] = ACTIONS(1233), - [anon_sym_GT_AMP_DASH] = ACTIONS(1233), - [anon_sym_LT_LT_DASH] = ACTIONS(1233), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1235), + [anon_sym_LT_AMP_DASH] = ACTIONS(1235), + [anon_sym_GT_AMP_DASH] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1235), [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1233), - [aux_sym_concatenation_token1] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_raw_string] = ACTIONS(1233), - [sym_ansi_c_string] = ACTIONS(1233), - [aux_sym_number_token1] = ACTIONS(1233), - [aux_sym_number_token2] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1233), - [anon_sym_LT_LPAREN] = ACTIONS(1233), - [anon_sym_GT_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1235), + [aux_sym_concatenation_token1] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(278), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1237), + [sym__concat] = ACTIONS(1242), + [sym_test_operator] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), }, [STATE(468)] = { - [aux_sym_concatenation_repeat1] = STATE(463), - [sym_word] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), - [anon_sym_STAR_EQ] = ACTIONS(1235), - [anon_sym_SLASH_EQ] = ACTIONS(1235), - [anon_sym_PERCENT_EQ] = ACTIONS(1235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), - [anon_sym_LT_LT_EQ] = ACTIONS(1235), - [anon_sym_GT_GT_EQ] = ACTIONS(1235), - [anon_sym_AMP_EQ] = ACTIONS(1235), - [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_PERCENT] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1235), + [aux_sym_concatenation_repeat1] = STATE(464), + [sym_word] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_PERCENT_EQ] = ACTIONS(1221), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP_EQ] = ACTIONS(1221), + [anon_sym_CARET_EQ] = ACTIONS(1221), + [anon_sym_PIPE_EQ] = ACTIONS(1221), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1233), - [anon_sym_PIPE_AMP] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1233), - [anon_sym_AMP_GT_GT] = ACTIONS(1233), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_GT_PIPE] = ACTIONS(1233), - [anon_sym_LT_AMP_DASH] = ACTIONS(1233), - [anon_sym_GT_AMP_DASH] = ACTIONS(1233), - [anon_sym_LT_LT_DASH] = ACTIONS(1233), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1233), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1219), + [anon_sym_PIPE_AMP] = ACTIONS(1219), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1219), + [anon_sym_LT_AMP_DASH] = ACTIONS(1219), + [anon_sym_GT_AMP_DASH] = ACTIONS(1219), + [anon_sym_LT_LT_DASH] = ACTIONS(1219), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1219), [aux_sym_concatenation_token1] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_raw_string] = ACTIONS(1233), - [sym_ansi_c_string] = ACTIONS(1233), - [aux_sym_number_token1] = ACTIONS(1233), - [aux_sym_number_token2] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1233), - [anon_sym_LT_LPAREN] = ACTIONS(1233), - [anon_sym_GT_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1219), + [sym_ansi_c_string] = ACTIONS(1219), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1226), [sym__concat] = ACTIONS(278), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_test_operator] = ACTIONS(1228), + [sym__bare_dollar] = ACTIONS(1226), + [sym__brace_start] = ACTIONS(1226), }, [STATE(469)] = { [sym_word] = ACTIONS(1248), @@ -72173,6 +72624,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1262), }, [STATE(473)] = { + [sym_word] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1235), + [anon_sym_LT_AMP_DASH] = ACTIONS(1235), + [anon_sym_GT_AMP_DASH] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1235), + [aux_sym_concatenation_token1] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_test_operator] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), + }, + [STATE(474)] = { [sym_word] = ACTIONS(1264), [anon_sym_SEMI] = ACTIONS(1264), [anon_sym_EQ] = ACTIONS(1264), @@ -72247,7 +72773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1266), [sym__brace_start] = ACTIONS(1266), }, - [STATE(474)] = { + [STATE(475)] = { [sym_word] = ACTIONS(1268), [anon_sym_SEMI] = ACTIONS(1268), [anon_sym_EQ] = ACTIONS(1268), @@ -72322,7 +72848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1270), [sym__brace_start] = ACTIONS(1270), }, - [STATE(475)] = { + [STATE(476)] = { [sym_word] = ACTIONS(1272), [anon_sym_SEMI] = ACTIONS(1272), [anon_sym_EQ] = ACTIONS(1272), @@ -72397,7 +72923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1274), [sym__brace_start] = ACTIONS(1274), }, - [STATE(476)] = { + [STATE(477)] = { [sym_word] = ACTIONS(1276), [anon_sym_SEMI] = ACTIONS(1276), [anon_sym_EQ] = ACTIONS(1276), @@ -72472,7 +72998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1278), [sym__brace_start] = ACTIONS(1278), }, - [STATE(477)] = { + [STATE(478)] = { [sym_word] = ACTIONS(1280), [anon_sym_SEMI] = ACTIONS(1280), [anon_sym_EQ] = ACTIONS(1280), @@ -72547,7 +73073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1282), [sym__brace_start] = ACTIONS(1282), }, - [STATE(478)] = { + [STATE(479)] = { [sym_word] = ACTIONS(1284), [anon_sym_SEMI] = ACTIONS(1284), [anon_sym_EQ] = ACTIONS(1284), @@ -72622,7 +73148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1286), [sym__brace_start] = ACTIONS(1286), }, - [STATE(479)] = { + [STATE(480)] = { [sym_word] = ACTIONS(1288), [anon_sym_SEMI] = ACTIONS(1288), [anon_sym_EQ] = ACTIONS(1288), @@ -72697,7 +73223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1290), [sym__brace_start] = ACTIONS(1290), }, - [STATE(480)] = { + [STATE(481)] = { [sym_word] = ACTIONS(1292), [anon_sym_SEMI] = ACTIONS(1292), [anon_sym_EQ] = ACTIONS(1292), @@ -72772,7 +73298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1294), [sym__brace_start] = ACTIONS(1294), }, - [STATE(481)] = { + [STATE(482)] = { [sym_word] = ACTIONS(1296), [anon_sym_SEMI] = ACTIONS(1296), [anon_sym_EQ] = ACTIONS(1296), @@ -72847,7 +73373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1298), [sym__brace_start] = ACTIONS(1298), }, - [STATE(482)] = { + [STATE(483)] = { [sym_word] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1300), [anon_sym_EQ] = ACTIONS(1300), @@ -72922,7 +73448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [STATE(483)] = { + [STATE(484)] = { [sym_word] = ACTIONS(1304), [anon_sym_SEMI] = ACTIONS(1304), [anon_sym_EQ] = ACTIONS(1304), @@ -72997,82 +73523,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1306), [sym__brace_start] = ACTIONS(1306), }, - [STATE(484)] = { - [sym_word] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PERCENT] = ACTIONS(1300), - [anon_sym_STAR_STAR] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1300), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_GT_PIPE] = ACTIONS(1300), - [anon_sym_LT_AMP_DASH] = ACTIONS(1300), - [anon_sym_GT_AMP_DASH] = ACTIONS(1300), - [anon_sym_LT_LT_DASH] = ACTIONS(1300), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1302), - [anon_sym_LT_LT_LT] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1300), - [aux_sym_concatenation_token1] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), - [sym_ansi_c_string] = ACTIONS(1300), - [aux_sym_number_token1] = ACTIONS(1300), - [aux_sym_number_token2] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), - [anon_sym_LT_LPAREN] = ACTIONS(1300), - [anon_sym_GT_LPAREN] = ACTIONS(1300), + [STATE(485)] = { + [sym_word] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_GT_EQ] = ACTIONS(1252), + [anon_sym_AMP_EQ] = ACTIONS(1252), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1252), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_SEMI_SEMI] = ACTIONS(1252), + [anon_sym_PIPE_AMP] = ACTIONS(1252), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_AMP_GT_GT] = ACTIONS(1252), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [anon_sym_GT_PIPE] = ACTIONS(1252), + [anon_sym_LT_AMP_DASH] = ACTIONS(1252), + [anon_sym_GT_AMP_DASH] = ACTIONS(1252), + [anon_sym_LT_LT_DASH] = ACTIONS(1252), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1252), + [aux_sym_concatenation_token1] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1252), + [sym__special_character] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1252), + [sym_raw_string] = ACTIONS(1252), + [sym_ansi_c_string] = ACTIONS(1252), + [aux_sym_number_token1] = ACTIONS(1252), + [aux_sym_number_token2] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), + [anon_sym_LT_LPAREN] = ACTIONS(1252), + [anon_sym_GT_LPAREN] = ACTIONS(1252), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), - [sym_test_operator] = ACTIONS(1302), - [sym__bare_dollar] = ACTIONS(1302), - [sym__brace_start] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1254), + [sym__concat] = ACTIONS(1254), + [sym_test_operator] = ACTIONS(1254), + [sym__bare_dollar] = ACTIONS(1254), + [sym__brace_start] = ACTIONS(1254), }, - [STATE(485)] = { + [STATE(486)] = { [sym_word] = ACTIONS(1308), [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_EQ] = ACTIONS(1308), @@ -73147,81 +73673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1310), [sym__brace_start] = ACTIONS(1310), }, - [STATE(486)] = { - [sym_word] = ACTIONS(1213), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_PLUS_EQ] = ACTIONS(1213), - [anon_sym_DASH_EQ] = ACTIONS(1213), - [anon_sym_STAR_EQ] = ACTIONS(1213), - [anon_sym_SLASH_EQ] = ACTIONS(1213), - [anon_sym_PERCENT_EQ] = ACTIONS(1213), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1213), - [anon_sym_LT_LT_EQ] = ACTIONS(1213), - [anon_sym_GT_GT_EQ] = ACTIONS(1213), - [anon_sym_AMP_EQ] = ACTIONS(1213), - [anon_sym_CARET_EQ] = ACTIONS(1213), - [anon_sym_PIPE_EQ] = ACTIONS(1213), - [anon_sym_PIPE_PIPE] = ACTIONS(1213), - [anon_sym_AMP_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_EQ_EQ] = ACTIONS(1213), - [anon_sym_BANG_EQ] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_GT] = ACTIONS(1213), - [anon_sym_LT_EQ] = ACTIONS(1213), - [anon_sym_GT_EQ] = ACTIONS(1213), - [anon_sym_LT_LT] = ACTIONS(1213), - [anon_sym_GT_GT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1213), - [anon_sym_PERCENT] = ACTIONS(1213), - [anon_sym_STAR_STAR] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1213), - [anon_sym_SEMI_SEMI] = ACTIONS(1213), - [anon_sym_PIPE_AMP] = ACTIONS(1213), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_AMP_GT] = ACTIONS(1213), - [anon_sym_AMP_GT_GT] = ACTIONS(1213), - [anon_sym_LT_AMP] = ACTIONS(1213), - [anon_sym_GT_AMP] = ACTIONS(1213), - [anon_sym_GT_PIPE] = ACTIONS(1213), - [anon_sym_LT_AMP_DASH] = ACTIONS(1213), - [anon_sym_GT_AMP_DASH] = ACTIONS(1213), - [anon_sym_LT_LT_DASH] = ACTIONS(1213), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1213), - [anon_sym_QMARK] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1213), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1213), - [aux_sym_concatenation_token1] = ACTIONS(1213), - [anon_sym_DOLLAR] = ACTIONS(1213), - [sym__special_character] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_raw_string] = ACTIONS(1213), - [sym_ansi_c_string] = ACTIONS(1213), - [aux_sym_number_token1] = ACTIONS(1213), - [aux_sym_number_token2] = ACTIONS(1213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), - [anon_sym_BQUOTE] = ACTIONS(1213), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1213), - [anon_sym_LT_LPAREN] = ACTIONS(1213), - [anon_sym_GT_LPAREN] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1215), - [sym__concat] = ACTIONS(1215), - [sym_test_operator] = ACTIONS(1215), - [sym__bare_dollar] = ACTIONS(1215), - [sym__brace_start] = ACTIONS(1215), - }, [STATE(487)] = { [sym_word] = ACTIONS(1312), [anon_sym_SEMI] = ACTIONS(1312), @@ -73298,81 +73749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1314), }, [STATE(488)] = { - [aux_sym__literal_repeat1] = STATE(488), - [sym_word] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_EQ] = ACTIONS(1316), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_SEMI_SEMI] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1316), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1316), - [anon_sym_LT_AMP_DASH] = ACTIONS(1316), - [anon_sym_GT_AMP_DASH] = ACTIONS(1316), - [anon_sym_LT_LT_DASH] = ACTIONS(1316), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [sym__special_character] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1316), - [sym_ansi_c_string] = ACTIONS(1316), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), - [anon_sym_LT_LPAREN] = ACTIONS(1316), - [anon_sym_GT_LPAREN] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1318), - [sym_test_operator] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), - }, - [STATE(489)] = { - [aux_sym__literal_repeat1] = STATE(488), + [aux_sym__literal_repeat1] = STATE(489), [sym_word] = ACTIONS(237), [anon_sym_SEMI] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(239), @@ -73427,7 +73804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(237), [anon_sym_DOLLAR_LBRACK] = ACTIONS(237), [anon_sym_DOLLAR] = ACTIONS(237), - [sym__special_character] = ACTIONS(1323), + [sym__special_character] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(237), [sym_raw_string] = ACTIONS(237), [sym_ansi_c_string] = ACTIONS(237), @@ -73441,230 +73818,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(237), [sym_comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(276), - [sym_test_operator] = ACTIONS(360), + [sym_test_operator] = ACTIONS(702), [sym__bare_dollar] = ACTIONS(276), [sym__brace_start] = ACTIONS(276), }, - [STATE(490)] = { - [sym_word] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), - [anon_sym_STAR_EQ] = ACTIONS(1235), - [anon_sym_SLASH_EQ] = ACTIONS(1235), - [anon_sym_PERCENT_EQ] = ACTIONS(1235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), - [anon_sym_LT_LT_EQ] = ACTIONS(1235), - [anon_sym_GT_GT_EQ] = ACTIONS(1235), - [anon_sym_AMP_EQ] = ACTIONS(1235), - [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1235), - [anon_sym_LT_LT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_PERCENT] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1233), - [anon_sym_PIPE_AMP] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1233), - [anon_sym_AMP_GT_GT] = ACTIONS(1233), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_GT_PIPE] = ACTIONS(1233), - [anon_sym_LT_AMP_DASH] = ACTIONS(1233), - [anon_sym_GT_AMP_DASH] = ACTIONS(1233), - [anon_sym_LT_LT_DASH] = ACTIONS(1233), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1233), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_raw_string] = ACTIONS(1233), - [sym_ansi_c_string] = ACTIONS(1233), - [aux_sym_number_token1] = ACTIONS(1233), - [aux_sym_number_token2] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1233), - [anon_sym_LT_LPAREN] = ACTIONS(1233), - [anon_sym_GT_LPAREN] = ACTIONS(1233), + [STATE(489)] = { + [aux_sym__literal_repeat1] = STATE(489), + [sym_word] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1318), + [anon_sym_STAR_EQ] = ACTIONS(1318), + [anon_sym_SLASH_EQ] = ACTIONS(1318), + [anon_sym_PERCENT_EQ] = ACTIONS(1318), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1318), + [anon_sym_LT_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_EQ] = ACTIONS(1318), + [anon_sym_CARET_EQ] = ACTIONS(1318), + [anon_sym_PIPE_EQ] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_STAR_STAR] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1318), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_AMP_GT] = ACTIONS(1318), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1318), + [anon_sym_GT_AMP] = ACTIONS(1318), + [anon_sym_GT_PIPE] = ACTIONS(1318), + [anon_sym_LT_AMP_DASH] = ACTIONS(1318), + [anon_sym_GT_AMP_DASH] = ACTIONS(1318), + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [sym__special_character] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_raw_string] = ACTIONS(1318), + [sym_ansi_c_string] = ACTIONS(1318), + [aux_sym_number_token1] = ACTIONS(1318), + [aux_sym_number_token2] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), + [anon_sym_LT_LPAREN] = ACTIONS(1318), + [anon_sym_GT_LPAREN] = ACTIONS(1318), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1240), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1320), + [sym_test_operator] = ACTIONS(1320), + [sym__bare_dollar] = ACTIONS(1320), + [sym__brace_start] = ACTIONS(1320), + }, + [STATE(490)] = { + [aux_sym_concatenation_repeat1] = STATE(495), + [sym_word] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_PERCENT_EQ] = ACTIONS(1221), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_CARET_EQ] = ACTIONS(1221), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_RBRACK] = ACTIONS(1325), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1226), + [anon_sym_LT_AMP_DASH] = ACTIONS(1226), + [anon_sym_GT_AMP_DASH] = ACTIONS(1226), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1226), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1226), + [aux_sym_concatenation_token1] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_raw_string] = ACTIONS(1226), + [sym_ansi_c_string] = ACTIONS(1226), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(1226), + [anon_sym_GT_LPAREN] = ACTIONS(1226), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1226), + [sym__concat] = ACTIONS(713), + [sym_test_operator] = ACTIONS(1228), + [sym__bare_dollar] = ACTIONS(1226), + [sym__brace_start] = ACTIONS(1226), }, [STATE(491)] = { - [sym_word] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_STAR_EQ] = ACTIONS(1223), - [anon_sym_SLASH_EQ] = ACTIONS(1223), - [anon_sym_PERCENT_EQ] = ACTIONS(1223), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1223), - [anon_sym_LT_LT_EQ] = ACTIONS(1223), - [anon_sym_GT_GT_EQ] = ACTIONS(1223), - [anon_sym_AMP_EQ] = ACTIONS(1223), - [anon_sym_CARET_EQ] = ACTIONS(1223), - [anon_sym_PIPE_EQ] = ACTIONS(1223), + [sym_word] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_PERCENT_EQ] = ACTIONS(1221), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP_EQ] = ACTIONS(1221), + [anon_sym_CARET_EQ] = ACTIONS(1221), + [anon_sym_PIPE_EQ] = ACTIONS(1221), [anon_sym_PIPE_PIPE] = ACTIONS(1223), [anon_sym_AMP_AMP] = ACTIONS(1223), [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), [anon_sym_AMP] = ACTIONS(1223), [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1221), [anon_sym_LT] = ACTIONS(1223), [anon_sym_GT] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1223), - [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), [anon_sym_LT_LT] = ACTIONS(1223), [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1223), - [anon_sym_STAR_STAR] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1219), [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_SEMI_SEMI] = ACTIONS(1219), + [anon_sym_PIPE_AMP] = ACTIONS(1219), [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_AMP_GT_GT] = ACTIONS(1223), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_GT_PIPE] = ACTIONS(1223), - [anon_sym_LT_AMP_DASH] = ACTIONS(1223), - [anon_sym_GT_AMP_DASH] = ACTIONS(1223), - [anon_sym_LT_LT_DASH] = ACTIONS(1223), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1223), - [anon_sym_DOLLAR] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym_raw_string] = ACTIONS(1223), - [sym_ansi_c_string] = ACTIONS(1223), - [aux_sym_number_token1] = ACTIONS(1223), - [aux_sym_number_token2] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1223), - [anon_sym_LT_LPAREN] = ACTIONS(1223), - [anon_sym_GT_LPAREN] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1219), + [anon_sym_LT_AMP_DASH] = ACTIONS(1219), + [anon_sym_GT_AMP_DASH] = ACTIONS(1219), + [anon_sym_LT_LT_DASH] = ACTIONS(1219), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1219), + [sym_ansi_c_string] = ACTIONS(1219), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1225), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1226), + [sym_test_operator] = ACTIONS(1228), + [sym__bare_dollar] = ACTIONS(1226), + [sym__brace_start] = ACTIONS(1226), }, [STATE(492)] = { - [aux_sym_concatenation_repeat1] = STATE(494), - [sym_word] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1229), - [anon_sym_GT_GT_EQ] = ACTIONS(1229), - [anon_sym_AMP_EQ] = ACTIONS(1229), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1229), - [anon_sym_PIPE_PIPE] = ACTIONS(1229), - [anon_sym_AMP_AMP] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1229), - [anon_sym_GT_EQ] = ACTIONS(1229), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_PIPE_AMP] = ACTIONS(1229), - [anon_sym_RBRACK] = ACTIONS(1229), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_AMP_GT_GT] = ACTIONS(1229), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_GT_PIPE] = ACTIONS(1229), - [anon_sym_LT_AMP_DASH] = ACTIONS(1229), - [anon_sym_GT_AMP_DASH] = ACTIONS(1229), - [anon_sym_LT_LT_DASH] = ACTIONS(1229), - [anon_sym_LT_LT_LT] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1229), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1229), - [aux_sym_concatenation_token1] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_raw_string] = ACTIONS(1229), - [sym_ansi_c_string] = ACTIONS(1229), - [aux_sym_number_token1] = ACTIONS(1227), - [aux_sym_number_token2] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1229), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1229), - [anon_sym_LT_LPAREN] = ACTIONS(1229), - [anon_sym_GT_LPAREN] = ACTIONS(1229), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1229), - [sym__concat] = ACTIONS(1325), - [sym_test_operator] = ACTIONS(1229), - [sym__bare_dollar] = ACTIONS(1229), - [sym__brace_start] = ACTIONS(1229), - }, - [STATE(493)] = { [aux_sym_concatenation_repeat1] = STATE(494), [sym_word] = ACTIONS(1207), [anon_sym_EQ] = ACTIONS(1207), @@ -73716,7 +74094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1207), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1209), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1209), - [aux_sym_concatenation_token1] = ACTIONS(371), + [aux_sym_concatenation_token1] = ACTIONS(713), [anon_sym_DOLLAR] = ACTIONS(1207), [sym__special_character] = ACTIONS(1207), [anon_sym_DQUOTE] = ACTIONS(1209), @@ -73732,12 +74110,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1209), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1209), - [sym__concat] = ACTIONS(1327), + [sym__concat] = ACTIONS(1330), [sym_test_operator] = ACTIONS(1209), [sym__bare_dollar] = ACTIONS(1209), [sym__brace_start] = ACTIONS(1209), }, + [STATE(493)] = { + [sym_word] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_GT_PIPE] = ACTIONS(1231), + [anon_sym_LT_AMP_DASH] = ACTIONS(1231), + [anon_sym_GT_AMP_DASH] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_ansi_c_string] = ACTIONS(1231), + [aux_sym_number_token1] = ACTIONS(1231), + [aux_sym_number_token2] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1233), + [sym_test_operator] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), + }, [STATE(494)] = { + [aux_sym_concatenation_repeat1] = STATE(494), + [sym_word] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_PIPE_AMP] = ACTIONS(1237), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1237), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1237), + [anon_sym_LT_AMP_DASH] = ACTIONS(1237), + [anon_sym_GT_AMP_DASH] = ACTIONS(1237), + [anon_sym_LT_LT_DASH] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1237), + [aux_sym_concatenation_token1] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_raw_string] = ACTIONS(1237), + [sym_ansi_c_string] = ACTIONS(1237), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1237), + [sym__concat] = ACTIONS(1332), + [sym_test_operator] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), + }, + [STATE(495)] = { [aux_sym_concatenation_repeat1] = STATE(494), [sym_word] = ACTIONS(1213), [anon_sym_EQ] = ACTIONS(1213), @@ -73789,7 +74313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1213), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1215), - [aux_sym_concatenation_token1] = ACTIONS(1329), + [aux_sym_concatenation_token1] = ACTIONS(713), [anon_sym_DOLLAR] = ACTIONS(1213), [sym__special_character] = ACTIONS(1213), [anon_sym_DQUOTE] = ACTIONS(1215), @@ -73805,519 +74329,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1215), - [sym__concat] = ACTIONS(1329), + [sym__concat] = ACTIONS(1335), [sym_test_operator] = ACTIONS(1215), [sym__bare_dollar] = ACTIONS(1215), [sym__brace_start] = ACTIONS(1215), }, - [STATE(495)] = { - [aux_sym_concatenation_repeat1] = STATE(493), - [sym_word] = ACTIONS(1233), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), - [anon_sym_STAR_EQ] = ACTIONS(1235), - [anon_sym_SLASH_EQ] = ACTIONS(1235), - [anon_sym_PERCENT_EQ] = ACTIONS(1235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), - [anon_sym_LT_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_GT_EQ] = ACTIONS(1332), - [anon_sym_AMP_EQ] = ACTIONS(1332), - [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_LT_LT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_PERCENT] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1233), - [anon_sym_AMP_GT_GT] = ACTIONS(1240), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_GT_PIPE] = ACTIONS(1240), - [anon_sym_LT_AMP_DASH] = ACTIONS(1240), - [anon_sym_GT_AMP_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [aux_sym_concatenation_token1] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_raw_string] = ACTIONS(1240), - [sym_ansi_c_string] = ACTIONS(1240), - [aux_sym_number_token1] = ACTIONS(1233), - [aux_sym_number_token2] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1240), - [anon_sym_GT_LPAREN] = ACTIONS(1240), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), - }, [STATE(496)] = { - [aux_sym_concatenation_repeat1] = STATE(493), - [sym_word] = ACTIONS(1233), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), - [anon_sym_STAR_EQ] = ACTIONS(1235), - [anon_sym_SLASH_EQ] = ACTIONS(1235), - [anon_sym_PERCENT_EQ] = ACTIONS(1235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), - [anon_sym_LT_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_GT_EQ] = ACTIONS(1332), - [anon_sym_AMP_EQ] = ACTIONS(1332), - [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_LT_LT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_PERCENT] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1233), - [anon_sym_AMP_GT_GT] = ACTIONS(1240), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_GT_PIPE] = ACTIONS(1240), - [anon_sym_LT_AMP_DASH] = ACTIONS(1240), - [anon_sym_GT_AMP_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [aux_sym_concatenation_token1] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_raw_string] = ACTIONS(1240), - [sym_ansi_c_string] = ACTIONS(1240), - [aux_sym_number_token1] = ACTIONS(1233), - [aux_sym_number_token2] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1240), - [anon_sym_GT_LPAREN] = ACTIONS(1240), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), - }, - [STATE(497)] = { - [aux_sym_concatenation_repeat1] = STATE(492), - [sym_word] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_STAR_EQ] = ACTIONS(1223), - [anon_sym_SLASH_EQ] = ACTIONS(1223), - [anon_sym_PERCENT_EQ] = ACTIONS(1223), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1223), - [anon_sym_LT_LT_EQ] = ACTIONS(1225), - [anon_sym_GT_GT_EQ] = ACTIONS(1225), - [anon_sym_AMP_EQ] = ACTIONS(1225), - [anon_sym_CARET_EQ] = ACTIONS(1223), - [anon_sym_PIPE_EQ] = ACTIONS(1225), - [anon_sym_PIPE_PIPE] = ACTIONS(1225), - [anon_sym_AMP_AMP] = ACTIONS(1225), + [aux_sym_concatenation_repeat1] = STATE(495), + [sym_word] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_PERCENT_EQ] = ACTIONS(1221), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_CARET_EQ] = ACTIONS(1221), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1221), [anon_sym_LT] = ACTIONS(1223), [anon_sym_GT] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1225), - [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1325), [anon_sym_LT_LT] = ACTIONS(1223), [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1223), - [anon_sym_STAR_STAR] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_RBRACK] = ACTIONS(1325), [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_AMP_DASH] = ACTIONS(1225), - [anon_sym_GT_AMP_DASH] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1225), - [aux_sym_concatenation_token1] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1223), - [aux_sym_number_token2] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_BQUOTE] = ACTIONS(1223), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1225), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), - }, - [STATE(498)] = { - [sym_word] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_EQ] = ACTIONS(1266), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_AMP_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_PIPE_AMP] = ACTIONS(1266), - [anon_sym_RBRACK] = ACTIONS(1266), - [anon_sym_EQ_TILDE] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1266), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_GT_PIPE] = ACTIONS(1266), - [anon_sym_LT_AMP_DASH] = ACTIONS(1266), - [anon_sym_GT_AMP_DASH] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1266), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1266), - [aux_sym_concatenation_token1] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym__special_character] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_raw_string] = ACTIONS(1266), - [sym_ansi_c_string] = ACTIONS(1266), - [aux_sym_number_token1] = ACTIONS(1264), - [aux_sym_number_token2] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), - [anon_sym_LT_LPAREN] = ACTIONS(1266), - [anon_sym_GT_LPAREN] = ACTIONS(1266), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1266), - [sym__concat] = ACTIONS(1266), - [sym_test_operator] = ACTIONS(1266), - [sym__bare_dollar] = ACTIONS(1266), - [sym__brace_start] = ACTIONS(1266), - }, - [STATE(499)] = { - [sym_word] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_STAR_STAR] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_AMP_DASH] = ACTIONS(1294), - [anon_sym_GT_AMP_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1294), - [sym__concat] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), - }, - [STATE(500)] = { - [sym_word] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1248), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_STAR_EQ] = ACTIONS(1248), - [anon_sym_SLASH_EQ] = ACTIONS(1248), - [anon_sym_PERCENT_EQ] = ACTIONS(1248), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1248), - [anon_sym_LT_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_EQ] = ACTIONS(1250), - [anon_sym_CARET_EQ] = ACTIONS(1248), - [anon_sym_PIPE_EQ] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_STAR_STAR] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_PIPE_AMP] = ACTIONS(1250), - [anon_sym_RBRACK] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(1250), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_GT_PIPE] = ACTIONS(1250), - [anon_sym_LT_AMP_DASH] = ACTIONS(1250), - [anon_sym_GT_AMP_DASH] = ACTIONS(1250), - [anon_sym_LT_LT_DASH] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1250), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1250), - [aux_sym_concatenation_token1] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1248), - [sym__special_character] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_raw_string] = ACTIONS(1250), - [sym_ansi_c_string] = ACTIONS(1250), - [aux_sym_number_token1] = ACTIONS(1248), - [aux_sym_number_token2] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1250), - [anon_sym_LT_LPAREN] = ACTIONS(1250), - [anon_sym_GT_LPAREN] = ACTIONS(1250), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1226), + [anon_sym_LT_AMP_DASH] = ACTIONS(1226), + [anon_sym_GT_AMP_DASH] = ACTIONS(1226), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1226), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1226), + [aux_sym_concatenation_token1] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_raw_string] = ACTIONS(1226), + [sym_ansi_c_string] = ACTIONS(1226), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(1226), + [anon_sym_GT_LPAREN] = ACTIONS(1226), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1250), - [sym__concat] = ACTIONS(1250), - [sym_test_operator] = ACTIONS(1250), - [sym__bare_dollar] = ACTIONS(1250), - [sym__brace_start] = ACTIONS(1250), + [sym_file_descriptor] = ACTIONS(1226), + [sym__concat] = ACTIONS(713), + [sym_test_operator] = ACTIONS(1228), + [sym__bare_dollar] = ACTIONS(1226), + [sym__brace_start] = ACTIONS(1226), }, - [STATE(501)] = { - [sym_word] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1296), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_AMP_DASH] = ACTIONS(1298), - [anon_sym_GT_AMP_DASH] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1296), - [aux_sym_number_token2] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), + [STATE(497)] = { + [aux_sym_concatenation_repeat1] = STATE(492), + [sym_word] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP_EQ] = ACTIONS(1233), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1233), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_GT_PIPE] = ACTIONS(1233), + [anon_sym_LT_AMP_DASH] = ACTIONS(1233), + [anon_sym_GT_AMP_DASH] = ACTIONS(1233), + [anon_sym_LT_LT_DASH] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1233), + [aux_sym_concatenation_token1] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_raw_string] = ACTIONS(1233), + [sym_ansi_c_string] = ACTIONS(1233), + [aux_sym_number_token1] = ACTIONS(1231), + [aux_sym_number_token2] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1233), + [anon_sym_LT_LPAREN] = ACTIONS(1233), + [anon_sym_GT_LPAREN] = ACTIONS(1233), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [sym_test_operator] = ACTIONS(1298), - [sym__bare_dollar] = ACTIONS(1298), - [sym__brace_start] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1233), + [sym__concat] = ACTIONS(713), + [sym_test_operator] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, - [STATE(502)] = { + [STATE(498)] = { [sym_word] = ACTIONS(1300), [anon_sym_EQ] = ACTIONS(1300), [anon_sym_PLUS_PLUS] = ACTIONS(1300), @@ -74389,7 +74552,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [STATE(503)] = { + [STATE(499)] = { + [sym_word] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_EQ] = ACTIONS(1288), + [anon_sym_DASH_EQ] = ACTIONS(1288), + [anon_sym_STAR_EQ] = ACTIONS(1288), + [anon_sym_SLASH_EQ] = ACTIONS(1288), + [anon_sym_PERCENT_EQ] = ACTIONS(1288), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1288), + [anon_sym_LT_LT_EQ] = ACTIONS(1290), + [anon_sym_GT_GT_EQ] = ACTIONS(1290), + [anon_sym_AMP_EQ] = ACTIONS(1290), + [anon_sym_CARET_EQ] = ACTIONS(1288), + [anon_sym_PIPE_EQ] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_EQ_EQ] = ACTIONS(1288), + [anon_sym_BANG_EQ] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1290), + [anon_sym_GT_EQ] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1288), + [anon_sym_AMP_GT] = ACTIONS(1288), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1288), + [anon_sym_GT_AMP] = ACTIONS(1288), + [anon_sym_GT_PIPE] = ACTIONS(1290), + [anon_sym_LT_AMP_DASH] = ACTIONS(1290), + [anon_sym_GT_AMP_DASH] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_QMARK] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1290), + [aux_sym_concatenation_token1] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1288), + [sym__special_character] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_ansi_c_string] = ACTIONS(1290), + [aux_sym_number_token1] = ACTIONS(1288), + [aux_sym_number_token2] = ACTIONS(1288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1290), + [sym__concat] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1290), + [sym__bare_dollar] = ACTIONS(1290), + [sym__brace_start] = ACTIONS(1290), + }, + [STATE(500)] = { [sym_word] = ACTIONS(1304), [anon_sym_EQ] = ACTIONS(1304), [anon_sym_PLUS_PLUS] = ACTIONS(1304), @@ -74461,151 +74696,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1306), [sym__brace_start] = ACTIONS(1306), }, - [STATE(504)] = { - [sym_word] = ACTIONS(1300), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PERCENT] = ACTIONS(1300), - [anon_sym_STAR_STAR] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_PIPE_AMP] = ACTIONS(1302), - [anon_sym_RBRACK] = ACTIONS(1302), - [anon_sym_EQ_TILDE] = ACTIONS(1300), - [anon_sym_AMP_GT] = ACTIONS(1300), - [anon_sym_AMP_GT_GT] = ACTIONS(1302), - [anon_sym_LT_AMP] = ACTIONS(1300), - [anon_sym_GT_AMP] = ACTIONS(1300), - [anon_sym_GT_PIPE] = ACTIONS(1302), - [anon_sym_LT_AMP_DASH] = ACTIONS(1302), - [anon_sym_GT_AMP_DASH] = ACTIONS(1302), - [anon_sym_LT_LT_DASH] = ACTIONS(1302), - [anon_sym_LT_LT_LT] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1302), - [aux_sym_concatenation_token1] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1300), - [sym__special_character] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_raw_string] = ACTIONS(1302), - [sym_ansi_c_string] = ACTIONS(1302), - [aux_sym_number_token1] = ACTIONS(1300), - [aux_sym_number_token2] = ACTIONS(1300), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), - [anon_sym_LT_LPAREN] = ACTIONS(1302), - [anon_sym_GT_LPAREN] = ACTIONS(1302), + [STATE(501)] = { + [sym_word] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_GT_EQ] = ACTIONS(1254), + [anon_sym_AMP_EQ] = ACTIONS(1254), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1254), + [anon_sym_PIPE_PIPE] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_PIPE_AMP] = ACTIONS(1254), + [anon_sym_RBRACK] = ACTIONS(1254), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_AMP_GT_GT] = ACTIONS(1254), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [anon_sym_GT_PIPE] = ACTIONS(1254), + [anon_sym_LT_AMP_DASH] = ACTIONS(1254), + [anon_sym_GT_AMP_DASH] = ACTIONS(1254), + [anon_sym_LT_LT_DASH] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1254), + [aux_sym_concatenation_token1] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1252), + [sym__special_character] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_raw_string] = ACTIONS(1254), + [sym_ansi_c_string] = ACTIONS(1254), + [aux_sym_number_token1] = ACTIONS(1252), + [aux_sym_number_token2] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), + [anon_sym_LT_LPAREN] = ACTIONS(1254), + [anon_sym_GT_LPAREN] = ACTIONS(1254), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), - [sym_test_operator] = ACTIONS(1302), - [sym__bare_dollar] = ACTIONS(1302), - [sym__brace_start] = ACTIONS(1302), + [sym_file_descriptor] = ACTIONS(1254), + [sym__concat] = ACTIONS(1254), + [sym_test_operator] = ACTIONS(1254), + [sym__bare_dollar] = ACTIONS(1254), + [sym__brace_start] = ACTIONS(1254), }, - [STATE(505)] = { - [sym_word] = ACTIONS(1256), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1256), - [anon_sym_PLUS_EQ] = ACTIONS(1256), - [anon_sym_DASH_EQ] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1256), - [anon_sym_SLASH_EQ] = ACTIONS(1256), - [anon_sym_PERCENT_EQ] = ACTIONS(1256), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1256), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1256), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_STAR] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_AMP_DASH] = ACTIONS(1258), - [anon_sym_GT_AMP_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1256), - [aux_sym_number_token2] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), + [STATE(502)] = { + [sym_word] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_AMP_DASH] = ACTIONS(1310), + [anon_sym_GT_AMP_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1258), - [sym__concat] = ACTIONS(1258), - [sym_test_operator] = ACTIONS(1258), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), }, - [STATE(506)] = { + [STATE(503)] = { + [sym_word] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_GT_EQ] = ACTIONS(1254), + [anon_sym_AMP_EQ] = ACTIONS(1254), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1254), + [anon_sym_PIPE_PIPE] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_PIPE_AMP] = ACTIONS(1254), + [anon_sym_RBRACK] = ACTIONS(1254), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_AMP_GT_GT] = ACTIONS(1254), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [anon_sym_GT_PIPE] = ACTIONS(1254), + [anon_sym_LT_AMP_DASH] = ACTIONS(1254), + [anon_sym_GT_AMP_DASH] = ACTIONS(1254), + [anon_sym_LT_LT_DASH] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1254), + [aux_sym_concatenation_token1] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1252), + [sym__special_character] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_raw_string] = ACTIONS(1254), + [sym_ansi_c_string] = ACTIONS(1254), + [aux_sym_number_token1] = ACTIONS(1252), + [aux_sym_number_token2] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), + [anon_sym_LT_LPAREN] = ACTIONS(1254), + [anon_sym_GT_LPAREN] = ACTIONS(1254), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1254), + [sym__concat] = ACTIONS(1254), + [sym_test_operator] = ACTIONS(1254), + [sym__bare_dollar] = ACTIONS(1254), + [sym__brace_start] = ACTIONS(1254), + }, + [STATE(504)] = { [sym_word] = ACTIONS(1280), [anon_sym_EQ] = ACTIONS(1280), [anon_sym_PLUS_PLUS] = ACTIONS(1280), @@ -74677,151 +74984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1282), [sym__brace_start] = ACTIONS(1282), }, - [STATE(507)] = { - [sym_word] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_EQ] = ACTIONS(1286), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1286), - [anon_sym_LT_AMP_DASH] = ACTIONS(1286), - [anon_sym_GT_AMP_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), - [aux_sym_concatenation_token1] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [sym_ansi_c_string] = ACTIONS(1286), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1286), - [sym__concat] = ACTIONS(1286), - [sym_test_operator] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), - }, - [STATE(508)] = { - [sym_word] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_PLUS_EQ] = ACTIONS(1213), - [anon_sym_DASH_EQ] = ACTIONS(1213), - [anon_sym_STAR_EQ] = ACTIONS(1213), - [anon_sym_SLASH_EQ] = ACTIONS(1213), - [anon_sym_PERCENT_EQ] = ACTIONS(1213), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1213), - [anon_sym_LT_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_GT_EQ] = ACTIONS(1215), - [anon_sym_AMP_EQ] = ACTIONS(1215), - [anon_sym_CARET_EQ] = ACTIONS(1213), - [anon_sym_PIPE_EQ] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_EQ_EQ] = ACTIONS(1213), - [anon_sym_BANG_EQ] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_GT] = ACTIONS(1213), - [anon_sym_LT_EQ] = ACTIONS(1215), - [anon_sym_GT_EQ] = ACTIONS(1215), - [anon_sym_LT_LT] = ACTIONS(1213), - [anon_sym_GT_GT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1213), - [anon_sym_PERCENT] = ACTIONS(1213), - [anon_sym_STAR_STAR] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_RBRACK] = ACTIONS(1215), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_AMP_GT] = ACTIONS(1213), - [anon_sym_AMP_GT_GT] = ACTIONS(1215), - [anon_sym_LT_AMP] = ACTIONS(1213), - [anon_sym_GT_AMP] = ACTIONS(1213), - [anon_sym_GT_PIPE] = ACTIONS(1215), - [anon_sym_LT_AMP_DASH] = ACTIONS(1215), - [anon_sym_GT_AMP_DASH] = ACTIONS(1215), - [anon_sym_LT_LT_DASH] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1215), - [anon_sym_QMARK] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1215), - [aux_sym_concatenation_token1] = ACTIONS(1215), - [anon_sym_DOLLAR] = ACTIONS(1213), - [sym__special_character] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_raw_string] = ACTIONS(1215), - [sym_ansi_c_string] = ACTIONS(1215), - [aux_sym_number_token1] = ACTIONS(1213), - [aux_sym_number_token2] = ACTIONS(1213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), - [anon_sym_BQUOTE] = ACTIONS(1213), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1215), - [sym__concat] = ACTIONS(1215), - [sym_test_operator] = ACTIONS(1215), - [sym__bare_dollar] = ACTIONS(1215), - [sym__brace_start] = ACTIONS(1215), - }, - [STATE(509)] = { + [STATE(505)] = { [sym_word] = ACTIONS(1260), [anon_sym_EQ] = ACTIONS(1260), [anon_sym_PLUS_PLUS] = ACTIONS(1260), @@ -74893,151 +75056,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1262), [sym__brace_start] = ACTIONS(1262), }, - [STATE(510)] = { - [sym_word] = ACTIONS(1312), - [anon_sym_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_PERCENT_EQ] = ACTIONS(1312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1312), - [anon_sym_LT_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_EQ] = ACTIONS(1314), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_RBRACK] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_AMP_GT] = ACTIONS(1312), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1314), - [anon_sym_LT_AMP_DASH] = ACTIONS(1314), - [anon_sym_GT_AMP_DASH] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1314), - [aux_sym_concatenation_token1] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_raw_string] = ACTIONS(1314), - [sym_ansi_c_string] = ACTIONS(1314), - [aux_sym_number_token1] = ACTIONS(1312), - [aux_sym_number_token2] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), - [anon_sym_LT_LPAREN] = ACTIONS(1314), - [anon_sym_GT_LPAREN] = ACTIONS(1314), + [STATE(506)] = { + [sym_word] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_EQ] = ACTIONS(1256), + [anon_sym_DASH_EQ] = ACTIONS(1256), + [anon_sym_STAR_EQ] = ACTIONS(1256), + [anon_sym_SLASH_EQ] = ACTIONS(1256), + [anon_sym_PERCENT_EQ] = ACTIONS(1256), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1256), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_CARET_EQ] = ACTIONS(1256), + [anon_sym_PIPE_EQ] = ACTIONS(1258), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_PERCENT] = ACTIONS(1256), + [anon_sym_STAR_STAR] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_RBRACK] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_AMP_DASH] = ACTIONS(1258), + [anon_sym_GT_AMP_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), + [aux_sym_concatenation_token1] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), + [aux_sym_number_token1] = ACTIONS(1256), + [aux_sym_number_token2] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1314), - [sym__concat] = ACTIONS(1314), - [sym_test_operator] = ACTIONS(1314), - [sym__bare_dollar] = ACTIONS(1314), - [sym__brace_start] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1258), + [sym__concat] = ACTIONS(1258), + [sym_test_operator] = ACTIONS(1258), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), }, - [STATE(511)] = { - [sym_word] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_GT_EQ] = ACTIONS(1290), - [anon_sym_AMP_EQ] = ACTIONS(1290), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(1290), - [anon_sym_RBRACK] = ACTIONS(1290), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1290), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_GT_PIPE] = ACTIONS(1290), - [anon_sym_LT_AMP_DASH] = ACTIONS(1290), - [anon_sym_GT_AMP_DASH] = ACTIONS(1290), - [anon_sym_LT_LT_DASH] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1290), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1290), - [aux_sym_concatenation_token1] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1288), - [sym__special_character] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_raw_string] = ACTIONS(1290), - [sym_ansi_c_string] = ACTIONS(1290), - [aux_sym_number_token1] = ACTIONS(1288), - [aux_sym_number_token2] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1290), - [anon_sym_LT_LPAREN] = ACTIONS(1290), - [anon_sym_GT_LPAREN] = ACTIONS(1290), + [STATE(507)] = { + [sym_word] = ACTIONS(1284), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_EQ] = ACTIONS(1284), + [anon_sym_DASH_EQ] = ACTIONS(1284), + [anon_sym_STAR_EQ] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1284), + [anon_sym_PERCENT_EQ] = ACTIONS(1284), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1284), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_CARET_EQ] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_EQ_EQ] = ACTIONS(1284), + [anon_sym_BANG_EQ] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1284), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_PIPE_AMP] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_EQ_TILDE] = ACTIONS(1284), + [anon_sym_AMP_GT] = ACTIONS(1284), + [anon_sym_AMP_GT_GT] = ACTIONS(1286), + [anon_sym_LT_AMP] = ACTIONS(1284), + [anon_sym_GT_AMP] = ACTIONS(1284), + [anon_sym_GT_PIPE] = ACTIONS(1286), + [anon_sym_LT_AMP_DASH] = ACTIONS(1286), + [anon_sym_GT_AMP_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), + [aux_sym_concatenation_token1] = ACTIONS(1286), + [anon_sym_DOLLAR] = ACTIONS(1284), + [sym__special_character] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_raw_string] = ACTIONS(1286), + [sym_ansi_c_string] = ACTIONS(1286), + [aux_sym_number_token1] = ACTIONS(1284), + [aux_sym_number_token2] = ACTIONS(1284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), + [anon_sym_BQUOTE] = ACTIONS(1284), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1290), - [sym__concat] = ACTIONS(1290), - [sym_test_operator] = ACTIONS(1290), - [sym__bare_dollar] = ACTIONS(1290), - [sym__brace_start] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1286), + [sym__concat] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1286), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), }, - [STATE(512)] = { + [STATE(508)] = { + [sym_word] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_PIPE_AMP] = ACTIONS(1237), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1237), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1237), + [anon_sym_LT_AMP_DASH] = ACTIONS(1237), + [anon_sym_GT_AMP_DASH] = ACTIONS(1237), + [anon_sym_LT_LT_DASH] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1237), + [aux_sym_concatenation_token1] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_raw_string] = ACTIONS(1237), + [sym_ansi_c_string] = ACTIONS(1237), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_test_operator] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), + }, + [STATE(509)] = { + [sym_word] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_AMP_DASH] = ACTIONS(1294), + [anon_sym_GT_AMP_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), + }, + [STATE(510)] = { + [sym_word] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1248), + [anon_sym_PLUS_PLUS] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1248), + [anon_sym_PLUS_EQ] = ACTIONS(1248), + [anon_sym_DASH_EQ] = ACTIONS(1248), + [anon_sym_STAR_EQ] = ACTIONS(1248), + [anon_sym_SLASH_EQ] = ACTIONS(1248), + [anon_sym_PERCENT_EQ] = ACTIONS(1248), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1248), + [anon_sym_LT_LT_EQ] = ACTIONS(1250), + [anon_sym_GT_GT_EQ] = ACTIONS(1250), + [anon_sym_AMP_EQ] = ACTIONS(1250), + [anon_sym_CARET_EQ] = ACTIONS(1248), + [anon_sym_PIPE_EQ] = ACTIONS(1250), + [anon_sym_PIPE_PIPE] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_EQ_EQ] = ACTIONS(1248), + [anon_sym_BANG_EQ] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_LT_EQ] = ACTIONS(1250), + [anon_sym_GT_EQ] = ACTIONS(1250), + [anon_sym_LT_LT] = ACTIONS(1248), + [anon_sym_GT_GT] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_PERCENT] = ACTIONS(1248), + [anon_sym_STAR_STAR] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_PIPE_AMP] = ACTIONS(1250), + [anon_sym_RBRACK] = ACTIONS(1250), + [anon_sym_EQ_TILDE] = ACTIONS(1248), + [anon_sym_AMP_GT] = ACTIONS(1248), + [anon_sym_AMP_GT_GT] = ACTIONS(1250), + [anon_sym_LT_AMP] = ACTIONS(1248), + [anon_sym_GT_AMP] = ACTIONS(1248), + [anon_sym_GT_PIPE] = ACTIONS(1250), + [anon_sym_LT_AMP_DASH] = ACTIONS(1250), + [anon_sym_GT_AMP_DASH] = ACTIONS(1250), + [anon_sym_LT_LT_DASH] = ACTIONS(1250), + [anon_sym_LT_LT_LT] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(1248), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1250), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1250), + [aux_sym_concatenation_token1] = ACTIONS(1250), + [anon_sym_DOLLAR] = ACTIONS(1248), + [sym__special_character] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_raw_string] = ACTIONS(1250), + [sym_ansi_c_string] = ACTIONS(1250), + [aux_sym_number_token1] = ACTIONS(1248), + [aux_sym_number_token2] = ACTIONS(1248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1250), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1250), + [anon_sym_LT_LPAREN] = ACTIONS(1250), + [anon_sym_GT_LPAREN] = ACTIONS(1250), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1250), + [sym__concat] = ACTIONS(1250), + [sym_test_operator] = ACTIONS(1250), + [sym__bare_dollar] = ACTIONS(1250), + [sym__brace_start] = ACTIONS(1250), + }, + [STATE(511)] = { [sym_word] = ACTIONS(1268), [anon_sym_EQ] = ACTIONS(1268), [anon_sym_PLUS_PLUS] = ACTIONS(1268), @@ -75109,79 +75488,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1270), [sym__brace_start] = ACTIONS(1270), }, - [STATE(513)] = { - [sym_word] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_AMP_DASH] = ACTIONS(1310), - [anon_sym_GT_AMP_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), + [STATE(512)] = { + [sym_word] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_RBRACK] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_AMP_DASH] = ACTIONS(1314), + [anon_sym_GT_AMP_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym_test_operator] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), }, - [STATE(514)] = { + [STATE(513)] = { [sym_word] = ACTIONS(1272), [anon_sym_EQ] = ACTIONS(1272), [anon_sym_PLUS_PLUS] = ACTIONS(1272), @@ -75253,6 +75632,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1274), [sym__brace_start] = ACTIONS(1274), }, + [STATE(514)] = { + [sym_word] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1264), + [anon_sym_PLUS_EQ] = ACTIONS(1264), + [anon_sym_DASH_EQ] = ACTIONS(1264), + [anon_sym_STAR_EQ] = ACTIONS(1264), + [anon_sym_SLASH_EQ] = ACTIONS(1264), + [anon_sym_PERCENT_EQ] = ACTIONS(1264), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1264), + [anon_sym_LT_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_EQ] = ACTIONS(1266), + [anon_sym_CARET_EQ] = ACTIONS(1264), + [anon_sym_PIPE_EQ] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_CARET] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_EQ_EQ] = ACTIONS(1264), + [anon_sym_BANG_EQ] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_GT] = ACTIONS(1264), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1264), + [anon_sym_GT_GT] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_SLASH] = ACTIONS(1264), + [anon_sym_PERCENT] = ACTIONS(1264), + [anon_sym_STAR_STAR] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_RBRACK] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1264), + [anon_sym_AMP_GT] = ACTIONS(1264), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1264), + [anon_sym_GT_AMP] = ACTIONS(1264), + [anon_sym_GT_PIPE] = ACTIONS(1266), + [anon_sym_LT_AMP_DASH] = ACTIONS(1266), + [anon_sym_GT_AMP_DASH] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1264), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1266), + [aux_sym_concatenation_token1] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1264), + [sym__special_character] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_ansi_c_string] = ACTIONS(1266), + [aux_sym_number_token1] = ACTIONS(1264), + [aux_sym_number_token2] = ACTIONS(1264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), + [anon_sym_BQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1266), + [sym__concat] = ACTIONS(1266), + [sym_test_operator] = ACTIONS(1266), + [sym__bare_dollar] = ACTIONS(1266), + [sym__brace_start] = ACTIONS(1266), + }, [STATE(515)] = { [sym_word] = ACTIONS(1276), [anon_sym_EQ] = ACTIONS(1276), @@ -75326,76 +75777,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1278), }, [STATE(516)] = { - [sym_word] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1254), - [anon_sym_LT_AMP_DASH] = ACTIONS(1254), - [anon_sym_GT_AMP_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1254), - [aux_sym_concatenation_token1] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_ansi_c_string] = ACTIONS(1254), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), + [sym_word] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_EQ] = ACTIONS(1298), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_PIPE_AMP] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1298), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1298), + [anon_sym_LT_AMP_DASH] = ACTIONS(1298), + [anon_sym_GT_AMP_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1298), + [aux_sym_concatenation_token1] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [sym_ansi_c_string] = ACTIONS(1298), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [anon_sym_GT_LPAREN] = ACTIONS(1298), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [sym_test_operator] = ACTIONS(1254), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), }, [STATE(517)] = { [aux_sym__literal_repeat1] = STATE(518), @@ -75409,13 +75860,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(239), [anon_sym_PERCENT_EQ] = ACTIONS(239), [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), + [anon_sym_LT_LT_EQ] = ACTIONS(700), + [anon_sym_GT_GT_EQ] = ACTIONS(700), + [anon_sym_AMP_EQ] = ACTIONS(700), [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(360), - [anon_sym_AMP_AMP] = ACTIONS(360), + [anon_sym_PIPE_EQ] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(702), + [anon_sym_AMP_AMP] = ACTIONS(702), [anon_sym_PIPE] = ACTIONS(241), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -75423,8 +75874,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(239), [anon_sym_LT] = ACTIONS(241), [anon_sym_GT] = ACTIONS(241), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), [anon_sym_LT_LT] = ACTIONS(241), [anon_sym_GT_GT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(239), @@ -75435,7 +75886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(276), [anon_sym_PIPE_AMP] = ACTIONS(276), - [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_RBRACK] = ACTIONS(700), [anon_sym_EQ_TILDE] = ACTIONS(241), [anon_sym_AMP_GT] = ACTIONS(237), [anon_sym_AMP_GT_GT] = ACTIONS(276), @@ -75464,248 +75915,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(276), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(276), - [sym_test_operator] = ACTIONS(360), + [sym_test_operator] = ACTIONS(702), [sym__bare_dollar] = ACTIONS(276), [sym__brace_start] = ACTIONS(276), }, [STATE(518)] = { [aux_sym__literal_repeat1] = STATE(518), - [sym_word] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_AMP_DASH] = ACTIONS(1318), - [anon_sym_GT_AMP_DASH] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1316), + [sym_word] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1318), + [anon_sym_STAR_EQ] = ACTIONS(1318), + [anon_sym_SLASH_EQ] = ACTIONS(1318), + [anon_sym_PERCENT_EQ] = ACTIONS(1318), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1318), + [anon_sym_LT_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_GT_EQ] = ACTIONS(1320), + [anon_sym_AMP_EQ] = ACTIONS(1320), + [anon_sym_CARET_EQ] = ACTIONS(1318), + [anon_sym_PIPE_EQ] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_EQ_EQ] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_EQ] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1318), + [anon_sym_GT_GT] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_STAR_STAR] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1320), + [anon_sym_EQ_TILDE] = ACTIONS(1318), + [anon_sym_AMP_GT] = ACTIONS(1318), + [anon_sym_AMP_GT_GT] = ACTIONS(1320), + [anon_sym_LT_AMP] = ACTIONS(1318), + [anon_sym_GT_AMP] = ACTIONS(1318), + [anon_sym_GT_PIPE] = ACTIONS(1320), + [anon_sym_LT_AMP_DASH] = ACTIONS(1320), + [anon_sym_GT_AMP_DASH] = ACTIONS(1320), + [anon_sym_LT_LT_DASH] = ACTIONS(1320), + [anon_sym_LT_LT_LT] = ACTIONS(1320), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1318), [sym__special_character] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1318), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_raw_string] = ACTIONS(1320), + [sym_ansi_c_string] = ACTIONS(1320), + [aux_sym_number_token1] = ACTIONS(1318), + [aux_sym_number_token2] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1320), + [anon_sym_LT_LPAREN] = ACTIONS(1320), + [anon_sym_GT_LPAREN] = ACTIONS(1320), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1318), - [sym_test_operator] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1320), + [sym_test_operator] = ACTIONS(1320), + [sym__bare_dollar] = ACTIONS(1320), + [sym__brace_start] = ACTIONS(1320), }, [STATE(519)] = { - [sym_word] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_STAR_EQ] = ACTIONS(1223), - [anon_sym_SLASH_EQ] = ACTIONS(1223), - [anon_sym_PERCENT_EQ] = ACTIONS(1223), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1223), - [anon_sym_LT_LT_EQ] = ACTIONS(1225), - [anon_sym_GT_GT_EQ] = ACTIONS(1225), - [anon_sym_AMP_EQ] = ACTIONS(1225), - [anon_sym_CARET_EQ] = ACTIONS(1223), - [anon_sym_PIPE_EQ] = ACTIONS(1225), - [anon_sym_PIPE_PIPE] = ACTIONS(1225), - [anon_sym_AMP_AMP] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_EQ_EQ] = ACTIONS(1223), - [anon_sym_BANG_EQ] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1223), - [anon_sym_GT] = ACTIONS(1223), - [anon_sym_LT_EQ] = ACTIONS(1225), - [anon_sym_GT_EQ] = ACTIONS(1225), - [anon_sym_LT_LT] = ACTIONS(1223), - [anon_sym_GT_GT] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1223), - [anon_sym_SLASH] = ACTIONS(1223), - [anon_sym_PERCENT] = ACTIONS(1223), - [anon_sym_STAR_STAR] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_PIPE_AMP] = ACTIONS(1225), - [anon_sym_RBRACK] = ACTIONS(1225), - [anon_sym_EQ_TILDE] = ACTIONS(1223), - [anon_sym_AMP_GT] = ACTIONS(1223), - [anon_sym_AMP_GT_GT] = ACTIONS(1225), - [anon_sym_LT_AMP] = ACTIONS(1223), - [anon_sym_GT_AMP] = ACTIONS(1223), - [anon_sym_GT_PIPE] = ACTIONS(1225), - [anon_sym_LT_AMP_DASH] = ACTIONS(1225), - [anon_sym_GT_AMP_DASH] = ACTIONS(1225), - [anon_sym_LT_LT_DASH] = ACTIONS(1225), - [anon_sym_LT_LT_LT] = ACTIONS(1225), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1225), - [anon_sym_DOLLAR] = ACTIONS(1223), - [sym__special_character] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_raw_string] = ACTIONS(1225), - [sym_ansi_c_string] = ACTIONS(1225), - [aux_sym_number_token1] = ACTIONS(1223), - [aux_sym_number_token2] = ACTIONS(1223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), - [anon_sym_BQUOTE] = ACTIONS(1225), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), - [anon_sym_LT_LPAREN] = ACTIONS(1225), - [anon_sym_GT_LPAREN] = ACTIONS(1225), + [sym_word] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP_EQ] = ACTIONS(1233), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1233), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_GT_PIPE] = ACTIONS(1233), + [anon_sym_LT_AMP_DASH] = ACTIONS(1233), + [anon_sym_GT_AMP_DASH] = ACTIONS(1233), + [anon_sym_LT_LT_DASH] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1233), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_raw_string] = ACTIONS(1233), + [sym_ansi_c_string] = ACTIONS(1233), + [aux_sym_number_token1] = ACTIONS(1231), + [aux_sym_number_token2] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1233), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1233), + [anon_sym_LT_LPAREN] = ACTIONS(1233), + [anon_sym_GT_LPAREN] = ACTIONS(1233), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1225), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1233), + [sym_test_operator] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, [STATE(520)] = { - [sym_word] = ACTIONS(1233), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), - [anon_sym_STAR_EQ] = ACTIONS(1235), - [anon_sym_SLASH_EQ] = ACTIONS(1235), - [anon_sym_PERCENT_EQ] = ACTIONS(1235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), - [anon_sym_LT_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_GT_EQ] = ACTIONS(1332), - [anon_sym_AMP_EQ] = ACTIONS(1332), - [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_LT_LT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_PERCENT] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1233), - [anon_sym_AMP_GT_GT] = ACTIONS(1240), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_GT_PIPE] = ACTIONS(1240), - [anon_sym_LT_AMP_DASH] = ACTIONS(1240), - [anon_sym_GT_AMP_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [anon_sym_DOLLAR] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_raw_string] = ACTIONS(1240), - [sym_ansi_c_string] = ACTIONS(1240), - [aux_sym_number_token1] = ACTIONS(1233), - [aux_sym_number_token2] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1240), - [anon_sym_GT_LPAREN] = ACTIONS(1240), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1240), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), - }, - [STATE(521)] = { - [sym_subshell] = STATE(4724), - [sym_test_command] = STATE(4724), - [sym_command] = STATE(4726), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(2030), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(3491), - [sym_herestring_redirect] = STATE(3491), - [sym__expression] = STATE(2957), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(467), - [sym_brace_expression] = STATE(467), - [sym_concatenation] = STATE(490), - [sym_string] = STATE(467), - [sym_translated_string] = STATE(467), - [sym_number] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(489), + [sym_subshell] = STATE(4874), + [sym_test_command] = STATE(4874), + [sym_command] = STATE(4883), + [sym_command_name] = STATE(533), + [sym_variable_assignment] = STATE(2098), + [sym_subscript] = STATE(6686), + [sym_file_redirect] = STATE(3682), + [sym_incomplete_redirect] = STATE(3682), + [sym_herestring_redirect] = STATE(3682), + [sym__expression] = STATE(2893), + [sym_binary_expression] = STATE(2506), + [sym_ternary_expression] = STATE(2506), + [sym_unary_expression] = STATE(2506), + [sym_postfix_expression] = STATE(2506), + [sym_parenthesized_expression] = STATE(2506), + [sym_arithmetic_expansion] = STATE(465), + [sym_brace_expression] = STATE(465), + [sym_concatenation] = STATE(491), + [sym_string] = STATE(465), + [sym_translated_string] = STATE(465), + [sym_number] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_command_repeat1] = STATE(921), + [aux_sym__literal_repeat1] = STATE(488), [sym_word] = ACTIONS(1342), [anon_sym_LT] = ACTIONS(1344), [anon_sym_GT] = ACTIONS(1344), @@ -75748,24 +76130,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(137), [sym__brace_start] = ACTIONS(139), }, - [STATE(522)] = { - [sym_subshell] = STATE(5584), - [sym_test_command] = STATE(5584), - [sym_command] = STATE(5567), + [STATE(521)] = { + [sym_subshell] = STATE(5561), + [sym_test_command] = STATE(5561), + [sym_command] = STATE(5578), [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(2945), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(3491), - [sym_herestring_redirect] = STATE(3491), - [sym__expression] = STATE(3013), - [sym_binary_expression] = STATE(2847), - [sym_ternary_expression] = STATE(2847), - [sym_unary_expression] = STATE(2847), - [sym_postfix_expression] = STATE(2847), - [sym_parenthesized_expression] = STATE(2847), + [sym_variable_assignment] = STATE(2994), + [sym_subscript] = STATE(6695), + [sym_file_redirect] = STATE(3682), + [sym_incomplete_redirect] = STATE(3682), + [sym_herestring_redirect] = STATE(3682), + [sym__expression] = STATE(2898), + [sym_binary_expression] = STATE(3002), + [sym_ternary_expression] = STATE(3002), + [sym_unary_expression] = STATE(3002), + [sym_postfix_expression] = STATE(3002), + [sym_parenthesized_expression] = STATE(3002), [sym_arithmetic_expansion] = STATE(496), [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), + [sym_concatenation] = STATE(522), [sym_string] = STATE(496), [sym_translated_string] = STATE(496), [sym_number] = STATE(496), @@ -75773,14 +76156,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(496), [sym_command_substitution] = STATE(496), [sym_process_substitution] = STATE(496), - [aux_sym_command_repeat1] = STATE(880), + [aux_sym_command_repeat1] = STATE(903), [aux_sym__literal_repeat1] = STATE(517), [sym_word] = ACTIONS(1356), [anon_sym_LT] = ACTIONS(1344), [anon_sym_GT] = ACTIONS(1344), [anon_sym_GT_GT] = ACTIONS(1346), [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(707), [anon_sym_LBRACK] = ACTIONS(167), [anon_sym_LBRACK_LBRACK] = ACTIONS(171), [anon_sym_AMP_GT] = ACTIONS(1344), @@ -75817,13 +76200,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(217), [sym__brace_start] = ACTIONS(219), }, + [STATE(522)] = { + [sym_word] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_PERCENT_EQ] = ACTIONS(1221), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_CARET_EQ] = ACTIONS(1221), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_PIPE_PIPE] = ACTIONS(1228), + [anon_sym_AMP_AMP] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_STAR_STAR] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_PIPE_AMP] = ACTIONS(1226), + [anon_sym_RBRACK] = ACTIONS(1325), + [anon_sym_EQ_TILDE] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1226), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1226), + [anon_sym_LT_AMP_DASH] = ACTIONS(1226), + [anon_sym_GT_AMP_DASH] = ACTIONS(1226), + [anon_sym_LT_LT_DASH] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1226), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1226), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_raw_string] = ACTIONS(1226), + [sym_ansi_c_string] = ACTIONS(1226), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1226), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1226), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(1226), + [anon_sym_GT_LPAREN] = ACTIONS(1226), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1226), + [sym_test_operator] = ACTIONS(1228), + [sym__bare_dollar] = ACTIONS(1226), + [sym__brace_start] = ACTIONS(1226), + }, }; static const uint16_t ts_small_parse_table[] = { [0] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(411), 1, + ACTIONS(368), 1, anon_sym_LPAREN, ACTIONS(1368), 1, anon_sym_LT_LT_LT, @@ -75855,15 +76308,15 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1398), 1, sym__brace_start, - STATE(531), 1, + STATE(532), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1156), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1302), 1, sym_concatenation, - STATE(1197), 1, + STATE(1304), 1, sym_herestring_redirect, - STATE(4723), 1, + STATE(4789), 1, sym_subshell, ACTIONS(1364), 2, anon_sym_EQ_EQ, @@ -75878,7 +76331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(877), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -75914,7 +76367,7 @@ static const uint16_t ts_small_parse_table[] = { [119] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(411), 1, + ACTIONS(368), 1, anon_sym_LPAREN, ACTIONS(1368), 1, anon_sym_LT_LT_LT, @@ -75948,13 +76401,13 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, STATE(527), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1156), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1302), 1, sym_concatenation, - STATE(1197), 1, + STATE(1304), 1, sym_herestring_redirect, - STATE(4837), 1, + STATE(4907), 1, sym_subshell, ACTIONS(1364), 2, anon_sym_EQ_EQ, @@ -75969,7 +76422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(877), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76005,7 +76458,7 @@ static const uint16_t ts_small_parse_table[] = { [238] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(673), 1, + ACTIONS(630), 1, anon_sym_LPAREN, ACTIONS(1408), 1, anon_sym_LT_LT_LT, @@ -76037,14 +76490,14 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1438), 1, sym__brace_start, - STATE(545), 1, + STATE(538), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1190), 1, aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, + STATE(1352), 1, sym_herestring_redirect, + STATE(1504), 1, + sym_concatenation, STATE(4960), 1, sym_subshell, ACTIONS(1366), 2, @@ -76060,7 +76513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(941), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76095,7 +76548,7 @@ static const uint16_t ts_small_parse_table[] = { [356] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(673), 1, + ACTIONS(630), 1, anon_sym_LPAREN, ACTIONS(1408), 1, anon_sym_LT_LT_LT, @@ -76127,15 +76580,15 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1438), 1, sym__brace_start, - STATE(543), 1, + STATE(536), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1190), 1, aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, + STATE(1352), 1, sym_herestring_redirect, - STATE(5016), 1, + STATE(1504), 1, + sym_concatenation, + STATE(5007), 1, sym_subshell, ACTIONS(1402), 2, sym_file_descriptor, @@ -76150,7 +76603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(941), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76215,13 +76668,13 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1398), 1, sym__brace_start, - STATE(529), 1, + STATE(531), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1156), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1302), 1, sym_concatenation, - STATE(1197), 1, + STATE(1304), 1, sym_herestring_redirect, ACTIONS(1364), 2, anon_sym_EQ_EQ, @@ -76236,7 +76689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(877), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76304,31 +76757,30 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1478), 1, sym__brace_start, - STATE(552), 1, + STATE(556), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1606), 1, + STATE(1612), 1, sym_concatenation, - STATE(1607), 1, + STATE(1690), 1, sym_herestring_redirect, - STATE(4842), 1, + STATE(4739), 1, sym_subshell, + ACTIONS(1366), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, ACTIONS(1446), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1402), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + STATE(1098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76338,7 +76790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 19, + ACTIONS(1362), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76348,6 +76800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -76358,62 +76811,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [704] = 27, + [704] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1490), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1484), 1, anon_sym_LT_LT_LT, - ACTIONS(1493), 1, + ACTIONS(1486), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1496), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1499), 1, + ACTIONS(1490), 1, anon_sym_DOLLAR, - ACTIONS(1502), 1, + ACTIONS(1492), 1, sym__special_character, - ACTIONS(1505), 1, + ACTIONS(1494), 1, anon_sym_DQUOTE, - ACTIONS(1508), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(1511), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(1514), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1517), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1520), 1, + ACTIONS(1504), 1, anon_sym_BQUOTE, - ACTIONS(1523), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1529), 1, - sym_file_descriptor, - ACTIONS(1532), 1, + ACTIONS(1510), 1, sym_test_operator, - ACTIONS(1535), 1, + ACTIONS(1512), 1, sym__bare_dollar, - ACTIONS(1538), 1, + ACTIONS(1514), 1, sym__brace_start, - STATE(529), 1, + STATE(548), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1475), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1659), 1, sym_concatenation, - STATE(1197), 1, + STATE(1678), 1, sym_herestring_redirect, - ACTIONS(1485), 2, + STATE(4740), 1, + sym_subshell, + ACTIONS(1482), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1526), 2, + ACTIONS(1508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1402), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, ACTIONS(1480), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76423,7 +76880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 22, + ACTIONS(1400), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76433,10 +76890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76446,65 +76900,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [819] = 28, + [821] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1484), 1, anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(1486), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1490), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1492), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1494), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1504), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1510), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1512), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1514), 1, sym__brace_start, - STATE(548), 1, + STATE(551), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1475), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1659), 1, sym_concatenation, - STATE(1654), 1, + STATE(1678), 1, sym_herestring_redirect, - STATE(4702), 1, + STATE(4739), 1, sym_subshell, - ACTIONS(1366), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(1482), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1366), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1480), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76514,7 +76969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 20, + ACTIONS(1362), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76524,7 +76979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -76535,18 +76989,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [936] = 26, + [938] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1368), 1, + ACTIONS(1524), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1526), 1, anon_sym_LT_LT_LT, - ACTIONS(1370), 1, + ACTIONS(1529), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, + ACTIONS(1532), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1535), 1, anon_sym_DOLLAR, - ACTIONS(1376), 1, + ACTIONS(1538), 1, + sym__special_character, + ACTIONS(1541), 1, + anon_sym_DQUOTE, + ACTIONS(1544), 1, + aux_sym_number_token1, + ACTIONS(1547), 1, + aux_sym_number_token2, + ACTIONS(1550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1553), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1556), 1, + anon_sym_BQUOTE, + ACTIONS(1559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1565), 1, + sym_file_descriptor, + ACTIONS(1568), 1, + sym_test_operator, + ACTIONS(1571), 1, + sym__bare_dollar, + ACTIONS(1574), 1, + sym__brace_start, + STATE(531), 1, + aux_sym_command_repeat2, + STATE(1156), 1, + aux_sym__literal_repeat1, + STATE(1302), 1, + sym_concatenation, + STATE(1304), 1, + sym_herestring_redirect, + ACTIONS(1521), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1562), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1516), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(877), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1519), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1053] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_LT_LT_LT, + ACTIONS(1370), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1372), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1374), 1, + anon_sym_DOLLAR, + ACTIONS(1376), 1, sym__special_character, ACTIONS(1378), 1, anon_sym_DQUOTE, @@ -76568,13 +77110,13 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1398), 1, sym__brace_start, - STATE(529), 1, + STATE(531), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1156), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1302), 1, sym_concatenation, - STATE(1197), 1, + STATE(1304), 1, sym_herestring_redirect, ACTIONS(1364), 2, anon_sym_EQ_EQ, @@ -76589,7 +77131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(877), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76622,65 +77164,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1049] = 28, + [1166] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1448), 1, anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1456), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1474), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - STATE(555), 1, + STATE(554), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, - STATE(4842), 1, + STATE(4740), 1, sym_subshell, ACTIONS(1402), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(1446), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76711,21 +77253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1166] = 28, + [1283] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1448), 1, - anon_sym_LT_LT_LT, ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym__special_character, ACTIONS(1458), 1, anon_sym_DQUOTE, ACTIONS(1460), 1, @@ -76736,41 +77274,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, - anon_sym_BQUOTE, ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, - sym_test_operator, ACTIONS(1476), 1, sym__bare_dollar, ACTIONS(1478), 1, sym__brace_start, - STATE(553), 1, + ACTIONS(1585), 1, + anon_sym_LT_LT_LT, + ACTIONS(1587), 1, + sym__special_character, + ACTIONS(1589), 1, + sym_test_operator, + STATE(580), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1606), 1, + STATE(1612), 1, sym_concatenation, - STATE(1607), 1, + STATE(1690), 1, sym_herestring_redirect, - STATE(4702), 1, + STATE(4740), 1, sym_subshell, - ACTIONS(1446), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, + ACTIONS(1402), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1366), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, + ACTIONS(1583), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76780,7 +77319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 19, + ACTIONS(1400), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76800,58 +77339,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1283] = 24, + anon_sym_BQUOTE, + [1397] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, + ACTIONS(1597), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1591), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(1603), 1, sym__special_character, - ACTIONS(1595), 1, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(1601), 1, + ACTIONS(1611), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1603), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1615), 1, anon_sym_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1617), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1611), 1, + ACTIONS(1621), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1613), 1, + ACTIONS(1623), 1, sym_variable_name, - ACTIONS(1615), 1, + ACTIONS(1625), 1, sym_test_operator, - ACTIONS(1617), 1, + ACTIONS(1627), 1, sym__brace_start, - STATE(1427), 1, + STATE(1422), 1, aux_sym__literal_repeat1, - STATE(6651), 1, + STATE(6639), 1, sym_subscript, - ACTIONS(1585), 2, + ACTIONS(1595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1609), 2, + ACTIONS(1619), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1581), 3, + ACTIONS(1591), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(539), 3, + STATE(542), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1064), 9, + STATE(1146), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76861,7 +77401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 22, + ACTIONS(1593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76884,62 +77424,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1391] = 27, + [1505] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1625), 1, + ACTIONS(1408), 1, anon_sym_LT_LT_LT, - ACTIONS(1628), 1, + ACTIONS(1410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1631), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1634), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(1637), 1, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(1640), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1643), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(1646), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(1649), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1652), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1658), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1664), 1, - sym_file_descriptor, - ACTIONS(1667), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1670), 1, + ACTIONS(1436), 1, sym__bare_dollar, - ACTIONS(1673), 1, + ACTIONS(1438), 1, sym__brace_start, - STATE(535), 1, + STATE(540), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1190), 1, aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, + STATE(1352), 1, sym_herestring_redirect, - ACTIONS(1622), 2, + STATE(1504), 1, + sym_concatenation, + ACTIONS(1406), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1661), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1619), 3, + ACTIONS(1442), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1404), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(941), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76949,7 +77488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 21, + ACTIONS(1440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76971,24 +77510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1505] = 8, + [1617] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1682), 1, + ACTIONS(1635), 1, sym_variable_name, - STATE(857), 1, + STATE(864), 1, sym_string, - ACTIONS(1680), 2, + ACTIONS(1633), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1676), 8, + ACTIONS(1629), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -76997,7 +77536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 41, + ACTIONS(1183), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77039,50 +77578,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1581] = 8, + [1693] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(1408), 1, + anon_sym_LT_LT_LT, + ACTIONS(1410), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1412), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, + sym__special_character, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1682), 1, - sym_variable_name, - STATE(857), 1, - sym_string, - ACTIONS(1680), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1424), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, + anon_sym_BQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, sym_test_operator, + ACTIONS(1436), 1, sym__bare_dollar, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(1676), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 41, + STATE(540), 1, + aux_sym_command_repeat2, + STATE(1190), 1, + aux_sym__literal_repeat1, + STATE(1352), 1, + sym_herestring_redirect, + STATE(1504), 1, + sym_concatenation, + ACTIONS(1406), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1579), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1404), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(941), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1577), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77091,79 +77664,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [1657] = 27, + [1805] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(1597), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1603), 1, + sym__special_character, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1611), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1615), 1, + anon_sym_BQUOTE, + ACTIONS(1617), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, + ACTIONS(1623), 1, + sym_variable_name, + ACTIONS(1625), 1, sym_test_operator, - STATE(561), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + ACTIONS(1627), 1, + sym__brace_start, + ACTIONS(1641), 1, + aux_sym__simple_variable_name_token1, + STATE(1422), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + STATE(6639), 1, + sym_subscript, + ACTIONS(1619), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1639), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1591), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(535), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1146), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77173,7 +77725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 20, + ACTIONS(1637), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77183,7 +77735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77193,59 +77748,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [1771] = 24, + [1913] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, + ACTIONS(1524), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1649), 1, + anon_sym_LT_LT_LT, + ACTIONS(1652), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1591), 1, + ACTIONS(1658), 1, anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(1661), 1, sym__special_character, - ACTIONS(1595), 1, + ACTIONS(1664), 1, anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1667), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(1670), 1, aux_sym_number_token2, - ACTIONS(1601), 1, + ACTIONS(1673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1603), 1, + ACTIONS(1676), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1679), 1, anon_sym_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1682), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1613), 1, - sym_variable_name, - ACTIONS(1615), 1, + ACTIONS(1688), 1, + sym_file_descriptor, + ACTIONS(1691), 1, sym_test_operator, - ACTIONS(1617), 1, + ACTIONS(1694), 1, + sym__bare_dollar, + ACTIONS(1697), 1, sym__brace_start, - ACTIONS(1698), 1, - aux_sym__simple_variable_name_token1, - STATE(1427), 1, + STATE(540), 1, + aux_sym_command_repeat2, + STATE(1190), 1, aux_sym__literal_repeat1, - STATE(6651), 1, - sym_subscript, - ACTIONS(1609), 2, + STATE(1352), 1, + sym_herestring_redirect, + STATE(1504), 1, + sym_concatenation, + ACTIONS(1646), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1685), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1581), 3, + ACTIONS(1643), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(541), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1064), 9, + STATE(941), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77255,7 +77813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 22, + ACTIONS(1519), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77265,7 +77823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -77278,63 +77835,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1879] = 27, + [2027] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1468), 1, + anon_sym_BQUOTE, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1688), 1, + ACTIONS(1585), 1, anon_sym_LT_LT_LT, - ACTIONS(1690), 1, + ACTIONS(1587), 1, sym__special_character, - ACTIONS(1692), 1, + ACTIONS(1589), 1, sym_test_operator, - STATE(562), 1, + STATE(578), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, - STATE(4702), 1, + STATE(4739), 1, sym_subshell, ACTIONS(1366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1686), 2, + ACTIONS(1583), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77344,7 +77903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 20, + ACTIONS(1362), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77364,8 +77923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [1993] = 24, + [2143] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1707), 1, @@ -77398,9 +77956,9 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(1752), 1, sym__brace_start, - STATE(1427), 1, + STATE(1422), 1, aux_sym__literal_repeat1, - STATE(6651), 1, + STATE(6639), 1, sym_subscript, ACTIONS(1705), 2, sym_file_descriptor, @@ -77412,11 +77970,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(541), 3, + STATE(542), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1064), 9, + STATE(1146), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77449,86 +78007,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2101] = 28, + [2251] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1635), 1, + sym_variable_name, + STATE(864), 1, + sym_string, + ACTIONS(1633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, - ACTIONS(1575), 1, sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, - sym_test_operator, - STATE(579), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - STATE(4702), 1, - sym_subshell, - ACTIONS(1366), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1270), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1362), 19, + ACTIONS(1629), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77537,151 +78059,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2217] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 1, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - ACTIONS(1410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, sym__special_character, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(1420), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__bare_dollar, - ACTIONS(1438), 1, - sym__brace_start, - STATE(535), 1, - aux_sym_command_repeat2, - STATE(1230), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, - sym_herestring_redirect, - ACTIONS(1406), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1404), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1440), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [2329] = 28, + [2327] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1688), 1, + ACTIONS(1585), 1, anon_sym_LT_LT_LT, - ACTIONS(1690), 1, + ACTIONS(1587), 1, sym__special_character, - ACTIONS(1692), 1, + ACTIONS(1589), 1, sym_test_operator, - STATE(577), 1, + STATE(563), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, - STATE(4842), 1, + STATE(4739), 1, sym_subshell, - ACTIONS(1402), 2, + ACTIONS(1366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1686), 2, + ACTIONS(1583), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77691,7 +78141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 19, + ACTIONS(1362), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77711,61 +78161,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2445] = 26, + anon_sym_BQUOTE, + [2441] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, - anon_sym_LT_LT_LT, - ACTIONS(1410), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, - sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1478), 1, sym__brace_start, - STATE(535), 1, + ACTIONS(1585), 1, + anon_sym_LT_LT_LT, + ACTIONS(1587), 1, + sym__special_character, + ACTIONS(1589), 1, + sym_test_operator, + STATE(576), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1330), 1, + STATE(1612), 1, sym_concatenation, - STATE(1332), 1, + STATE(1690), 1, sym_herestring_redirect, - ACTIONS(1406), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, + STATE(4740), 1, + sym_subshell, + ACTIONS(1402), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1404), 3, + ACTIONS(1472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1583), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77775,7 +78230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 21, + ACTIONS(1400), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77786,8 +78241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77804,12 +78257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1761), 1, sym_variable_name, - STATE(898), 1, + STATE(944), 1, sym_string, ACTIONS(1759), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -77823,7 +78276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 40, + ACTIONS(1183), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77867,21 +78320,21 @@ static const uint16_t ts_small_parse_table[] = { [2632] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1757), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(1761), 1, sym_variable_name, - STATE(890), 1, + STATE(944), 1, sym_string, - ACTIONS(1765), 2, + ACTIONS(1759), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1763), 8, + ACTIONS(1755), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77890,7 +78343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 40, + ACTIONS(1195), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77901,7 +78354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -77934,58 +78387,59 @@ static const uint16_t ts_small_parse_table[] = { [2707] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, + ACTIONS(1484), 1, anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(1486), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1490), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1492), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1494), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1504), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1510), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1512), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1514), 1, sym__brace_start, - STATE(556), 1, + STATE(549), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1475), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1659), 1, sym_concatenation, - STATE(1654), 1, + STATE(1678), 1, sym_herestring_redirect, - ACTIONS(1543), 2, + ACTIONS(1482), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1579), 2, + ACTIONS(1442), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1541), 3, + ACTIONS(1480), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77995,7 +78449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 20, + ACTIONS(1440), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78005,7 +78459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -78016,76 +78469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2818] = 8, + [2818] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(1761), 1, - sym_variable_name, - STATE(898), 1, - sym_string, - ACTIONS(1759), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1755), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + ACTIONS(1769), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [2893] = 24, - ACTIONS(3), 1, - sym_comment, ACTIONS(1772), 1, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(1775), 1, @@ -78109,32 +78497,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1802), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1808), 1, - aux_sym__simple_variable_name_token1, + sym_file_descriptor, ACTIONS(1811), 1, - sym_variable_name, - ACTIONS(1814), 1, sym_test_operator, + ACTIONS(1814), 1, + sym__bare_dollar, ACTIONS(1817), 1, sym__brace_start, - STATE(1605), 1, + STATE(549), 1, + aux_sym_command_repeat2, + STATE(1475), 1, aux_sym__literal_repeat1, - STATE(6695), 1, - sym_subscript, - ACTIONS(1705), 2, - sym_file_descriptor, + STATE(1659), 1, + sym_concatenation, + STATE(1678), 1, + sym_herestring_redirect, + ACTIONS(1524), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, + ACTIONS(1766), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, ACTIONS(1805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1769), 3, + ACTIONS(1763), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(550), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1227), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78144,7 +78535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 21, + ACTIONS(1519), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78155,8 +78546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78166,63 +78555,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3000] = 27, + [2931] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_LT_LT_LT, - ACTIONS(1829), 1, + ACTIONS(1823), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1832), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1835), 1, + ACTIONS(1829), 1, anon_sym_DOLLAR, - ACTIONS(1838), 1, + ACTIONS(1832), 1, sym__special_character, - ACTIONS(1841), 1, + ACTIONS(1835), 1, anon_sym_DQUOTE, - ACTIONS(1844), 1, + ACTIONS(1838), 1, aux_sym_number_token1, - ACTIONS(1847), 1, + ACTIONS(1841), 1, aux_sym_number_token2, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1853), 1, + ACTIONS(1847), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_BQUOTE, - ACTIONS(1859), 1, + ACTIONS(1853), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1859), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1862), 1, + sym_variable_name, ACTIONS(1865), 1, - sym_file_descriptor, - ACTIONS(1868), 1, sym_test_operator, - ACTIONS(1871), 1, - sym__bare_dollar, - ACTIONS(1874), 1, + ACTIONS(1868), 1, sym__brace_start, - STATE(551), 1, - aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1676), 1, aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, - sym_herestring_redirect, - ACTIONS(1488), 2, - ts_builtin_sym_end, + STATE(6654), 1, + sym_subscript, + ACTIONS(1705), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1823), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1862), 2, + ACTIONS(1856), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1820), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + STATE(550), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1213), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78232,7 +78616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 19, + ACTIONS(1703), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78243,6 +78627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78252,62 +78638,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3113] = 26, + [3038] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 1, + ACTIONS(1484), 1, anon_sym_LT_LT_LT, - ACTIONS(1450), 1, + ACTIONS(1486), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1490), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1492), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1494), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1504), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1510), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1512), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1514), 1, sym__brace_start, - STATE(551), 1, + STATE(549), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1475), 1, aux_sym__literal_repeat1, - STATE(1606), 1, + STATE(1659), 1, sym_concatenation, - STATE(1607), 1, + STATE(1678), 1, sym_herestring_redirect, - ACTIONS(1446), 2, + ACTIONS(1482), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1442), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, + ACTIONS(1480), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + ACTIONS(1579), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78317,7 +78703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 19, + ACTIONS(1577), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78337,62 +78723,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3224] = 26, + [3149] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 1, - anon_sym_LT_LT_LT, - ACTIONS(1450), 1, + ACTIONS(1873), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1879), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1881), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1883), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1885), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1887), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1889), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1891), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1897), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1899), 1, + sym_variable_name, + ACTIONS(1901), 1, sym_test_operator, - ACTIONS(1476), 1, - sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1903), 1, sym__brace_start, - STATE(551), 1, - aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1676), 1, aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, - sym_herestring_redirect, - ACTIONS(1446), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + STATE(6654), 1, + sym_subscript, + ACTIONS(1639), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1895), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1444), 3, + ACTIONS(1871), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(1579), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1095), 9, + STATE(553), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1213), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78402,7 +78784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 19, + ACTIONS(1637), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78413,6 +78795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78422,58 +78806,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3335] = 24, + [3256] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1873), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(1885), 1, + ACTIONS(1879), 1, sym__special_character, - ACTIONS(1887), 1, + ACTIONS(1881), 1, anon_sym_DQUOTE, - ACTIONS(1889), 1, + ACTIONS(1883), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(1885), 1, aux_sym_number_token2, - ACTIONS(1893), 1, + ACTIONS(1887), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1889), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1891), 1, anon_sym_BQUOTE, - ACTIONS(1899), 1, + ACTIONS(1893), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1903), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1905), 1, + ACTIONS(1899), 1, sym_variable_name, - ACTIONS(1907), 1, + ACTIONS(1901), 1, sym_test_operator, - ACTIONS(1909), 1, + ACTIONS(1903), 1, sym__brace_start, - STATE(1605), 1, + ACTIONS(1905), 1, + aux_sym__simple_variable_name_token1, + STATE(1676), 1, aux_sym__literal_repeat1, - STATE(6695), 1, + STATE(6654), 1, sym_subscript, - ACTIONS(1585), 2, + ACTIONS(1595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1901), 2, + ACTIONS(1895), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1877), 3, + ACTIONS(1871), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(557), 3, + STATE(550), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1227), 9, + STATE(1213), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78483,7 +78867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 21, + ACTIONS(1593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78505,61 +78889,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3442] = 26, + [3363] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, + ACTIONS(1448), 1, anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1456), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1474), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - STATE(556), 1, + STATE(555), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(1446), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78590,62 +78974,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3553] = 27, + [3474] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, + ACTIONS(1524), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1917), 1, + ACTIONS(1913), 1, anon_sym_LT_LT_LT, - ACTIONS(1920), 1, + ACTIONS(1916), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, + ACTIONS(1919), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, + ACTIONS(1922), 1, anon_sym_DOLLAR, - ACTIONS(1929), 1, + ACTIONS(1925), 1, sym__special_character, - ACTIONS(1932), 1, + ACTIONS(1928), 1, anon_sym_DQUOTE, - ACTIONS(1935), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(1938), 1, + ACTIONS(1934), 1, aux_sym_number_token2, - ACTIONS(1941), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, + ACTIONS(1940), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, + ACTIONS(1943), 1, anon_sym_BQUOTE, - ACTIONS(1950), 1, + ACTIONS(1946), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1956), 1, + ACTIONS(1952), 1, sym_file_descriptor, - ACTIONS(1959), 1, + ACTIONS(1955), 1, sym_test_operator, - ACTIONS(1962), 1, + ACTIONS(1958), 1, sym__bare_dollar, - ACTIONS(1965), 1, + ACTIONS(1961), 1, sym__brace_start, - STATE(556), 1, + STATE(555), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, - ACTIONS(1914), 2, + ACTIONS(1910), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1953), 2, + ACTIONS(1949), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1911), 3, + ACTIONS(1907), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78655,7 +79039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 20, + ACTIONS(1519), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78676,58 +79060,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3666] = 24, + [3587] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1448), 1, + anon_sym_LT_LT_LT, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1885), 1, + ACTIONS(1456), 1, sym__special_character, - ACTIONS(1887), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1889), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1893), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1899), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1905), 1, - sym_variable_name, - ACTIONS(1907), 1, + ACTIONS(1474), 1, sym_test_operator, - ACTIONS(1909), 1, + ACTIONS(1476), 1, + sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1968), 1, - aux_sym__simple_variable_name_token1, - STATE(1605), 1, + STATE(555), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(6695), 1, - sym_subscript, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1901), 2, + STATE(1612), 1, + sym_concatenation, + STATE(1690), 1, + sym_herestring_redirect, + ACTIONS(1446), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1877), 3, + ACTIONS(1579), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(550), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1227), 9, + STATE(1098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78737,7 +79124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 21, + ACTIONS(1577), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78747,9 +79134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78759,16 +79145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3773] = 8, + [3698] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(1968), 1, sym_variable_name, - STATE(890), 1, + STATE(935), 1, sym_string, - ACTIONS(1765), 2, + ACTIONS(1966), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 4, @@ -78776,7 +79162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1763), 8, + ACTIONS(1964), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78826,106 +79212,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3848] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1979), 1, - anon_sym_DOLLAR, - ACTIONS(1982), 1, - sym__special_character, - ACTIONS(1985), 1, - anon_sym_DQUOTE, - ACTIONS(1988), 1, - aux_sym_number_token1, - ACTIONS(1991), 1, - aux_sym_number_token2, - ACTIONS(1994), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1997), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2000), 1, - anon_sym_BQUOTE, - ACTIONS(2003), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2009), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2012), 1, - sym_variable_name, - ACTIONS(2015), 1, - sym_test_operator, - ACTIONS(2018), 1, - sym__brace_start, - STATE(1771), 1, - aux_sym__literal_repeat1, - STATE(6634), 1, - sym_subscript, - ACTIONS(2006), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1705), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1970), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(559), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1445), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1703), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [3954] = 8, + [3773] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1378), 1, anon_sym_DQUOTE, - ACTIONS(2025), 1, + ACTIONS(1968), 1, sym_variable_name, - STATE(1012), 1, + STATE(935), 1, sym_string, - ACTIONS(2023), 2, + ACTIONS(1966), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2021), 8, + ACTIONS(1964), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78934,7 +79238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 39, + ACTIONS(1183), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78945,6 +79249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -78974,224 +79279,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4028] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, - sym_test_operator, - STATE(578), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1270), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1440), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [4136] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, - sym_test_operator, - STATE(578), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1270), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1577), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [4244] = 24, + [3848] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(1976), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(1978), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(1980), 1, anon_sym_DOLLAR, - ACTIONS(2035), 1, + ACTIONS(1982), 1, sym__special_character, - ACTIONS(2037), 1, + ACTIONS(1984), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(1986), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(1988), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(1990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(1992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(1994), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(1996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2053), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2055), 1, - sym_variable_name, - ACTIONS(2057), 1, + ACTIONS(2000), 1, sym_test_operator, - ACTIONS(2059), 1, + ACTIONS(2002), 1, sym__brace_start, - STATE(1820), 1, + STATE(1413), 1, aux_sym__literal_repeat1, - STATE(6636), 1, - sym_subscript, - ACTIONS(1585), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(1998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2027), 3, + STATE(565), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1970), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(566), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1368), 9, + ACTIONS(1974), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + STATE(1140), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79201,7 +79334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 20, + ACTIONS(1972), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79211,8 +79344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79222,24 +79357,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4350] = 8, + anon_sym_LT_LT_LT, + [3948] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(2025), 1, + ACTIONS(2008), 1, sym_variable_name, - STATE(1012), 1, + STATE(1048), 1, sym_string, - ACTIONS(2023), 2, + ACTIONS(2006), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2021), 8, + ACTIONS(2004), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79248,7 +79384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 39, + ACTIONS(1195), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79288,59 +79424,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4424] = 24, + [4022] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2012), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(2069), 1, + ACTIONS(2018), 1, sym__special_character, - ACTIONS(2071), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2073), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(2077), 1, + ACTIONS(2026), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2079), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2081), 1, + ACTIONS(2030), 1, anon_sym_BQUOTE, - ACTIONS(2083), 1, + ACTIONS(2032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2087), 1, + ACTIONS(2036), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2089), 1, + ACTIONS(2038), 1, sym_variable_name, - ACTIONS(2091), 1, + ACTIONS(2040), 1, sym_test_operator, - ACTIONS(2093), 1, + ACTIONS(2042), 1, sym__brace_start, - STATE(1771), 1, + STATE(1949), 1, aux_sym__literal_repeat1, - STATE(6634), 1, + STATE(6693), 1, sym_subscript, - ACTIONS(2085), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1585), 3, + ACTIONS(1595), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2061), 3, + ACTIONS(2034), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2010), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(573), 3, + STATE(569), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1445), 9, + STATE(1517), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79350,7 +79485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 19, + ACTIONS(1593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79360,6 +79495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -79370,58 +79506,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4530] = 24, + [4128] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(2046), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR, - ACTIONS(2035), 1, + ACTIONS(2052), 1, sym__special_character, - ACTIONS(2037), 1, + ACTIONS(2054), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(2056), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2058), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(2060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(2064), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(2066), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2055), 1, + ACTIONS(2070), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2072), 1, sym_variable_name, - ACTIONS(2057), 1, + ACTIONS(2074), 1, sym_test_operator, - ACTIONS(2059), 1, + ACTIONS(2076), 1, sym__brace_start, - ACTIONS(2095), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, + STATE(1813), 1, aux_sym__literal_repeat1, - STATE(6636), 1, + STATE(6674), 1, sym_subscript, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(2068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2027), 3, + ACTIONS(1639), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2044), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(568), 3, + STATE(581), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1368), 9, + STATE(1415), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79431,7 +79568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 20, + ACTIONS(1637), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79441,7 +79578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -79452,48 +79588,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4636] = 8, + [4234] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(1450), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1452), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(2103), 1, - sym_variable_name, - STATE(1087), 1, - sym_string, - ACTIONS(2101), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 5, - sym_file_descriptor, - sym_test_operator, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1470), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1476), 1, sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2097), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 38, + ACTIONS(1585), 1, + anon_sym_LT_LT_LT, + ACTIONS(1587), 1, + sym__special_character, + ACTIONS(1589), 1, + sym_test_operator, + STATE(577), 1, + aux_sym_command_repeat2, + STATE(1461), 1, + aux_sym__literal_repeat1, + STATE(1612), 1, + sym_concatenation, + STATE(1690), 1, + sym_herestring_redirect, + ACTIONS(1472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1579), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1583), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1581), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1319), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1577), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79502,74 +79670,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4710] = 24, + [4342] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(1976), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2111), 1, + ACTIONS(1978), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2114), 1, + ACTIONS(1980), 1, anon_sym_DOLLAR, - ACTIONS(2117), 1, + ACTIONS(1982), 1, sym__special_character, - ACTIONS(2120), 1, + ACTIONS(1984), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(1986), 1, aux_sym_number_token1, - ACTIONS(2126), 1, + ACTIONS(1988), 1, aux_sym_number_token2, - ACTIONS(2129), 1, + ACTIONS(1990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2132), 1, + ACTIONS(1992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2135), 1, + ACTIONS(1994), 1, anon_sym_BQUOTE, - ACTIONS(2138), 1, + ACTIONS(1996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2144), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2147), 1, - sym_variable_name, - ACTIONS(2150), 1, + ACTIONS(2000), 1, sym_test_operator, - ACTIONS(2153), 1, + ACTIONS(2002), 1, sym__brace_start, - STATE(1820), 1, + STATE(1413), 1, aux_sym__literal_repeat1, - STATE(6636), 1, - sym_subscript, - ACTIONS(1705), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2141), 2, + ACTIONS(1998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2105), 3, + STATE(567), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1970), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(568), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1368), 9, + ACTIONS(2080), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + STATE(1140), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79579,7 +79726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 20, + ACTIONS(2078), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79589,8 +79736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79600,21 +79749,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4816] = 6, + anon_sym_LT_LT_LT, + [4442] = 6, ACTIONS(3), 1, sym_comment, - STATE(1320), 1, + STATE(1413), 1, aux_sym__literal_repeat1, - STATE(572), 2, + STATE(568), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + ACTIONS(2084), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1021), 9, + STATE(1140), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79624,7 +79774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 39, + ACTIONS(2082), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79664,82 +79814,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4886] = 3, - ACTIONS(71), 1, + [4512] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(801), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(2089), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2092), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2095), 1, + anon_sym_DOLLAR, + ACTIONS(2098), 1, + sym__special_character, + ACTIONS(2101), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2104), 1, + aux_sym_number_token1, + ACTIONS(2107), 1, + aux_sym_number_token2, + ACTIONS(2110), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2116), 1, anon_sym_BQUOTE, + ACTIONS(2119), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2125), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2128), 1, + sym_variable_name, + ACTIONS(2131), 1, + sym_test_operator, + ACTIONS(2134), 1, + sym__brace_start, + STATE(1813), 1, + aux_sym__literal_repeat1, + STATE(6674), 1, + sym_subscript, + ACTIONS(2122), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(517), 33, - anon_sym_for, - anon_sym_select, + ACTIONS(1705), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2086), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(566), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1703), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_do, - anon_sym_if, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [4950] = 6, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [4618] = 6, ACTIONS(3), 1, sym_comment, - STATE(1320), 1, + STATE(1413), 1, aux_sym__literal_repeat1, - STATE(572), 2, + STATE(568), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, + ACTIONS(2139), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1021), 9, + STATE(1140), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79749,7 +79920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 39, + ACTIONS(2137), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79789,52 +79960,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5020] = 21, + [4688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2148), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2174), 1, + ACTIONS(2151), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2154), 1, anon_sym_DOLLAR, - ACTIONS(2180), 1, + ACTIONS(2157), 1, sym__special_character, - ACTIONS(2183), 1, + ACTIONS(2160), 1, anon_sym_DQUOTE, - ACTIONS(2186), 1, + ACTIONS(2163), 1, aux_sym_number_token1, - ACTIONS(2189), 1, + ACTIONS(2166), 1, aux_sym_number_token2, - ACTIONS(2192), 1, + ACTIONS(2169), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2172), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2175), 1, anon_sym_BQUOTE, - ACTIONS(2201), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2207), 1, + ACTIONS(2184), 1, sym_test_operator, - ACTIONS(2210), 1, + ACTIONS(2187), 1, sym__brace_start, - STATE(1320), 1, + STATE(1413), 1, aux_sym__literal_repeat1, - ACTIONS(2204), 2, + ACTIONS(2181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(572), 2, + STATE(568), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2164), 3, + ACTIONS(2141), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(2169), 3, + ACTIONS(2146), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(1021), 9, + STATE(1140), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79844,7 +80015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 23, + ACTIONS(2144), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79868,59 +80039,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [5120] = 24, + [4788] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2193), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2196), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2199), 1, anon_sym_DOLLAR, - ACTIONS(2069), 1, + ACTIONS(2202), 1, sym__special_character, - ACTIONS(2071), 1, + ACTIONS(2205), 1, anon_sym_DQUOTE, - ACTIONS(2073), 1, + ACTIONS(2208), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(2211), 1, aux_sym_number_token2, - ACTIONS(2077), 1, + ACTIONS(2214), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2079), 1, + ACTIONS(2217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2081), 1, + ACTIONS(2220), 1, anon_sym_BQUOTE, - ACTIONS(2083), 1, + ACTIONS(2223), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(2229), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2232), 1, sym_variable_name, - ACTIONS(2091), 1, + ACTIONS(2235), 1, sym_test_operator, - ACTIONS(2093), 1, + ACTIONS(2238), 1, sym__brace_start, - ACTIONS(2213), 1, - aux_sym__simple_variable_name_token1, - STATE(1771), 1, + STATE(1949), 1, aux_sym__literal_repeat1, - STATE(6634), 1, + STATE(6693), 1, sym_subscript, - ACTIONS(2085), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1696), 3, + ACTIONS(1705), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2061), 3, + ACTIONS(2226), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2190), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(559), 3, + STATE(569), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1445), 9, + STATE(1517), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79930,7 +80100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 19, + ACTIONS(1703), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79940,6 +80110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -79950,16 +80121,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5226] = 8, + [4894] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(2103), 1, + ACTIONS(2008), 1, sym_variable_name, - STATE(1087), 1, + STATE(1048), 1, + sym_string, + ACTIONS(2006), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2004), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [4968] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 1, + anon_sym_DQUOTE, + ACTIONS(2247), 1, + sym_variable_name, + STATE(1077), 1, sym_string, - ACTIONS(2101), 2, + ACTIONS(2245), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 5, @@ -79968,7 +80205,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2097), 8, + ACTIONS(2241), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80016,16 +80253,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5300] = 8, + [5042] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(819), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(460), 33, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_do, + anon_sym_if, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [5106] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2012), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2014), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2016), 1, + anon_sym_DOLLAR, + ACTIONS(2018), 1, + sym__special_character, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(2022), 1, + aux_sym_number_token1, + ACTIONS(2024), 1, + aux_sym_number_token2, + ACTIONS(2026), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2030), 1, + anon_sym_BQUOTE, + ACTIONS(2032), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2038), 1, sym_variable_name, - STATE(983), 1, + ACTIONS(2040), 1, + sym_test_operator, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(2249), 1, + aux_sym__simple_variable_name_token1, + STATE(1949), 1, + aux_sym__literal_repeat1, + STATE(6693), 1, + sym_subscript, + ACTIONS(1639), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2034), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2010), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(561), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1517), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1637), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [5212] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_DQUOTE, + ACTIONS(2257), 1, + sym_variable_name, + STATE(1064), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(2255), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 4, @@ -80033,7 +80413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ACTIONS(2251), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80082,16 +80462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5374] = 8, + [5286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2253), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(2257), 1, sym_variable_name, - STATE(983), 1, + STATE(1064), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(2255), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 4, @@ -80099,7 +80479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ACTIONS(2251), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80148,61 +80528,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5448] = 26, + [5360] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1688), 1, + ACTIONS(1585), 1, anon_sym_LT_LT_LT, - ACTIONS(1690), 1, + ACTIONS(1587), 1, sym__special_character, - ACTIONS(1692), 1, + ACTIONS(1589), 1, sym_test_operator, - STATE(578), 1, + STATE(577), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1686), 2, + ACTIONS(1583), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80232,62 +80612,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5558] = 27, + [5470] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, + ACTIONS(1524), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1920), 1, + ACTIONS(1916), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, + ACTIONS(1919), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, + ACTIONS(1922), 1, anon_sym_DOLLAR, - ACTIONS(1932), 1, + ACTIONS(1928), 1, anon_sym_DQUOTE, - ACTIONS(1935), 1, + ACTIONS(1931), 1, aux_sym_number_token1, - ACTIONS(1938), 1, + ACTIONS(1934), 1, aux_sym_number_token2, - ACTIONS(1941), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, + ACTIONS(1940), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, + ACTIONS(1943), 1, anon_sym_BQUOTE, - ACTIONS(1950), 1, + ACTIONS(1946), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1962), 1, + ACTIONS(1958), 1, sym__bare_dollar, - ACTIONS(1965), 1, + ACTIONS(1961), 1, sym__brace_start, - ACTIONS(2229), 1, + ACTIONS(2265), 1, anon_sym_LT_LT_LT, - ACTIONS(2232), 1, + ACTIONS(2268), 1, sym__special_character, - ACTIONS(2235), 1, + ACTIONS(2271), 1, sym_file_descriptor, - ACTIONS(2238), 1, + ACTIONS(2274), 1, sym_test_operator, - STATE(578), 1, + STATE(577), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, - ACTIONS(1953), 2, + ACTIONS(1949), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2226), 2, + ACTIONS(2262), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2223), 3, + ACTIONS(2259), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80297,7 +80677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 19, + ACTIONS(1519), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80317,61 +80697,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5670] = 26, + [5582] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1688), 1, + ACTIONS(1585), 1, anon_sym_LT_LT_LT, - ACTIONS(1690), 1, + ACTIONS(1587), 1, sym__special_character, - ACTIONS(1692), 1, + ACTIONS(1589), 1, sym_test_operator, - STATE(578), 1, + STATE(577), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, - ACTIONS(1569), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1686), 2, + ACTIONS(1583), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80401,127 +80781,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5780] = 5, - ACTIONS(71), 1, + [5692] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(2243), 1, + anon_sym_DQUOTE, + ACTIONS(2247), 1, + sym_variable_name, + STATE(1077), 1, + sym_string, ACTIONS(2245), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2247), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ts_builtin_sym_end, + ACTIONS(2241), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [5847] = 28, + [5766] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(2253), 1, + ACTIONS(1585), 1, anon_sym_LT_LT_LT, - ACTIONS(2255), 1, + ACTIONS(1587), 1, sym__special_character, - ACTIONS(2257), 1, + ACTIONS(1589), 1, sym_test_operator, - STATE(679), 1, + STATE(577), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1612), 1, sym_concatenation, - STATE(1654), 1, + STATE(1690), 1, sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2251), 2, + ACTIONS(1583), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2249), 3, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80531,14 +80909,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 16, + ACTIONS(1440), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80548,47 +80929,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5960] = 8, + anon_sym_BQUOTE, + [5874] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(2046), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2048), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2050), 1, + anon_sym_DOLLAR, + ACTIONS(2052), 1, + sym__special_character, + ACTIONS(2054), 1, anon_sym_DQUOTE, - ACTIONS(2263), 1, + ACTIONS(2056), 1, + aux_sym_number_token1, + ACTIONS(2058), 1, + aux_sym_number_token2, + ACTIONS(2060), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2064), 1, + anon_sym_BQUOTE, + ACTIONS(2066), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2072), 1, sym_variable_name, - STATE(1246), 1, - sym_string, - ACTIONS(2261), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 5, - sym_file_descriptor, + ACTIONS(2074), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(2076), 1, sym__brace_start, + ACTIONS(2277), 1, + aux_sym__simple_variable_name_token1, + STATE(1813), 1, + aux_sym__literal_repeat1, + STATE(6674), 1, + sym_subscript, + ACTIONS(2068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1595), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(2259), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2044), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(566), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1593), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80597,128 +81012,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + [5980] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2283), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2285), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2281), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [6033] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(2263), 1, - sym_variable_name, - STATE(1246), 1, - sym_string, - ACTIONS(2261), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2259), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + ACTIONS(2279), 28, + anon_sym_for, + anon_sym_select, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [6047] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2295), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2297), 1, + anon_sym_DOLLAR, + ACTIONS(2299), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2301), 1, + anon_sym_DQUOTE, + ACTIONS(2303), 1, aux_sym_number_token1, + ACTIONS(2305), 1, aux_sym_number_token2, + ACTIONS(2307), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2309), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2311), 1, anon_sym_BQUOTE, + ACTIONS(2313), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2317), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2319), 1, + sym_test_operator, + ACTIONS(2321), 1, + sym__brace_start, + STATE(1674), 1, + aux_sym__literal_repeat1, + ACTIONS(2291), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2315), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(620), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2287), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [6106] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - sym_variable_name, - STATE(1273), 1, + STATE(1292), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2265), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 38, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2289), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80727,40 +81153,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + [6148] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, + sym_comment, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(314), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(316), 1, + anon_sym_DQUOTE, + ACTIONS(320), 1, aux_sym_number_token1, + ACTIONS(322), 1, aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(336), 1, + sym_variable_name, + ACTIONS(338), 1, + sym_test_operator, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2323), 1, + sym_word, + ACTIONS(2325), 1, + anon_sym_LPAREN, + STATE(534), 1, + sym_command_name, + STATE(908), 1, + aux_sym_command_repeat1, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1437), 1, + sym_concatenation, + STATE(2323), 1, + sym_variable_assignment, + STATE(4883), 1, + sym_command, + STATE(6647), 1, + sym_subscript, + ACTIONS(318), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4874), 2, + sym_subshell, + sym_test_command, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1161), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [6277] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2327), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2281), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2279), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [6179] = 8, + [6344] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1494), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2335), 1, sym_variable_name, - STATE(1273), 1, + STATE(1227), 1, sym_string, - ACTIONS(2267), 2, + ACTIONS(2333), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1197), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2265), 8, + ts_builtin_sym_end, + ACTIONS(2331), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80769,7 +81335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 38, + ACTIONS(1195), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80780,7 +81346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -80808,44 +81373,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6252] = 6, + [6417] = 8, ACTIONS(3), 1, sym_comment, - STATE(1457), 1, - aux_sym__literal_repeat1, - STATE(1479), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, + ACTIONS(1494), 1, + anon_sym_DQUOTE, + ACTIONS(2335), 1, sym_variable_name, + STATE(1227), 1, + sym_string, + ACTIONS(2333), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 39, + ts_builtin_sym_end, + ACTIONS(2331), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80854,12 +81422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -80871,44 +81438,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6321] = 6, + [6490] = 8, ACTIONS(3), 1, sym_comment, - STATE(1337), 1, - aux_sym__literal_repeat1, - STATE(1670), 1, - sym_concatenation, - ACTIONS(2277), 5, - sym_file_descriptor, + ACTIONS(1458), 1, + anon_sym_DQUOTE, + ACTIONS(2341), 1, sym_variable_name, + STATE(1268), 1, + sym_string, + ACTIONS(2339), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1096), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 39, + ACTIONS(2337), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80917,12 +81487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -80934,156 +81503,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6390] = 22, + [6563] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2287), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2289), 1, - anon_sym_DOLLAR, - ACTIONS(2291), 1, - sym__special_character, - ACTIONS(2293), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(2295), 1, - aux_sym_number_token1, - ACTIONS(2297), 1, - aux_sym_number_token2, - ACTIONS(2299), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2301), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2303), 1, - anon_sym_BQUOTE, - ACTIONS(2305), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2309), 1, + ACTIONS(2341), 1, + sym_variable_name, + STATE(1268), 1, + sym_string, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, - ACTIONS(2311), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(2313), 1, + sym__bare_dollar, sym__brace_start, - STATE(1464), 1, - aux_sym__literal_repeat1, - ACTIONS(2283), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2307), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(591), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2279), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2281), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [6491] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2337), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(2039), 1, - aux_sym_number_token1, - ACTIONS(2041), 1, - aux_sym_number_token2, - ACTIONS(2043), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2049), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(2317), 1, - sym__special_character, - ACTIONS(2319), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2321), 1, - sym_variable_name, - ACTIONS(2323), 1, - sym_test_operator, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2315), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1694), 20, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81092,116 +81552,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [6594] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2245), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2247), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [6661] = 22, + [6636] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 1, + ACTIONS(2293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2287), 1, + ACTIONS(2295), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2289), 1, + ACTIONS(2297), 1, anon_sym_DOLLAR, - ACTIONS(2291), 1, + ACTIONS(2299), 1, sym__special_character, - ACTIONS(2293), 1, + ACTIONS(2301), 1, anon_sym_DQUOTE, - ACTIONS(2295), 1, + ACTIONS(2303), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(2305), 1, aux_sym_number_token2, - ACTIONS(2299), 1, + ACTIONS(2307), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2301), 1, + ACTIONS(2309), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2311), 1, anon_sym_BQUOTE, - ACTIONS(2305), 1, + ACTIONS(2313), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2311), 1, + ACTIONS(2319), 1, sym_test_operator, - ACTIONS(2313), 1, + ACTIONS(2321), 1, sym__brace_start, - ACTIONS(2329), 1, + ACTIONS(2347), 1, aux_sym__simple_variable_name_token1, - STATE(1464), 1, + STATE(1674), 1, aux_sym__literal_repeat1, - ACTIONS(2307), 2, + ACTIONS(2315), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2327), 2, + ACTIONS(2345), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(598), 2, + STATE(583), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2279), 3, + ACTIONS(2287), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1137), 9, + STATE(1292), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81211,7 +81624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 22, + ACTIONS(2343), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81234,51 +81647,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6762] = 21, + [6737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2335), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2337), 1, + ACTIONS(2355), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2357), 1, sym__special_character, - ACTIONS(2341), 1, + ACTIONS(2359), 1, anon_sym_DQUOTE, - ACTIONS(2343), 1, + ACTIONS(2361), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(2363), 1, aux_sym_number_token2, - ACTIONS(2347), 1, + ACTIONS(2365), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, + ACTIONS(2367), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2351), 1, + ACTIONS(2369), 1, anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(2371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2357), 1, + ACTIONS(2375), 1, sym_test_operator, - ACTIONS(2359), 1, + ACTIONS(2377), 1, sym__brace_start, - STATE(1491), 1, + STATE(1686), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(1974), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2355), 2, + ACTIONS(2373), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(594), 2, + STATE(601), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2331), 3, + ACTIONS(2349), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1165), 9, + STATE(1307), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81288,7 +81701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 23, + ACTIONS(1972), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81312,51 +81725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [6861] = 21, + [6836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2335), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, - sym__special_character, - ACTIONS(2341), 1, - anon_sym_DQUOTE, - ACTIONS(2343), 1, - aux_sym_number_token1, - ACTIONS(2345), 1, - aux_sym_number_token2, - ACTIONS(2347), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2351), 1, - anon_sym_BQUOTE, - ACTIONS(2353), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, - sym__brace_start, - STATE(1491), 1, + STATE(1350), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(1598), 1, + sym_concatenation, + ACTIONS(2381), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2355), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(594), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2331), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1165), 9, + STATE(1110), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81366,7 +81748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 23, + ACTIONS(2379), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81390,51 +81772,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [6960] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6905] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2370), 1, + ACTIONS(2355), 1, anon_sym_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2357), 1, sym__special_character, - ACTIONS(2376), 1, + ACTIONS(2359), 1, anon_sym_DQUOTE, - ACTIONS(2379), 1, + ACTIONS(2361), 1, aux_sym_number_token1, - ACTIONS(2382), 1, + ACTIONS(2363), 1, aux_sym_number_token2, - ACTIONS(2385), 1, + ACTIONS(2365), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2388), 1, + ACTIONS(2367), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2391), 1, + ACTIONS(2369), 1, anon_sym_BQUOTE, - ACTIONS(2394), 1, + ACTIONS(2371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2375), 1, sym_test_operator, - ACTIONS(2403), 1, + ACTIONS(2377), 1, sym__brace_start, - STATE(1491), 1, + STATE(1686), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2080), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2397), 2, + ACTIONS(2373), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(594), 2, + STATE(602), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2361), 3, + ACTIONS(2349), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1165), 9, + STATE(1307), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81444,7 +81842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 23, + ACTIONS(2078), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81468,21 +81866,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [7059] = 6, + [7004] = 6, ACTIONS(3), 1, sym_comment, - STATE(1501), 1, + STATE(1353), 1, aux_sym__literal_repeat1, - STATE(597), 2, + STATE(1601), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + ACTIONS(2385), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1210), 9, + STATE(1111), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81492,7 +81889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 38, + ACTIONS(2383), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81502,6 +81899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -81531,21 +81929,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7128] = 6, - ACTIONS(3), 1, + [7073] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - STATE(1501), 1, - aux_sym__literal_repeat1, - STATE(597), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, - sym_file_descriptor, + ACTIONS(135), 1, sym_variable_name, - sym_test_operator, + ACTIONS(308), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(316), 1, + anon_sym_DQUOTE, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(340), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1210), 9, + ACTIONS(767), 1, + sym__special_character, + ACTIONS(771), 1, + sym_test_operator, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2325), 1, + anon_sym_LPAREN, + ACTIONS(2387), 1, + sym_word, + STATE(533), 1, + sym_command_name, + STATE(921), 1, + aux_sym_command_repeat1, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1437), 1, + sym_concatenation, + STATE(2098), 1, + sym_variable_assignment, + STATE(4883), 1, + sym_command, + STATE(6686), 1, + sym_subscript, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(769), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4874), 2, + sym_subshell, + sym_test_command, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81555,20 +82022,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 38, + [7202] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_DQUOTE, + ACTIONS(2257), 1, + sym_variable_name, + STATE(1064), 1, + sym_string, + ACTIONS(2255), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2251), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81577,12 +82071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -81594,52 +82087,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7197] = 21, + [7275] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 1, + ACTIONS(2391), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2412), 1, + ACTIONS(2393), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2415), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR, - ACTIONS(2418), 1, + ACTIONS(2397), 1, sym__special_character, - ACTIONS(2421), 1, + ACTIONS(2399), 1, anon_sym_DQUOTE, - ACTIONS(2424), 1, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(2427), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(2430), 1, + ACTIONS(2405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2433), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2436), 1, + ACTIONS(2409), 1, anon_sym_BQUOTE, - ACTIONS(2439), 1, + ACTIONS(2411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2445), 1, + ACTIONS(2415), 1, sym_test_operator, - ACTIONS(2448), 1, + ACTIONS(2417), 1, sym__brace_start, - STATE(1501), 1, + STATE(1696), 1, aux_sym__literal_repeat1, - ACTIONS(2442), 2, + ACTIONS(2413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(597), 2, + STATE(604), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + ACTIONS(1974), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2406), 3, + ACTIONS(2389), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1210), 9, + STATE(1313), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81649,7 +82142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(1972), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81672,53 +82165,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [7296] = 22, + [7374] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, + ACTIONS(2012), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2464), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(2467), 1, - sym__special_character, - ACTIONS(2470), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2473), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(2476), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(2479), 1, + ACTIONS(2026), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2482), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2030), 1, anon_sym_BQUOTE, - ACTIONS(2488), 1, + ACTIONS(2032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2494), 1, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(2421), 1, + sym__special_character, + ACTIONS(2423), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2497), 1, + ACTIONS(2425), 1, + sym_variable_name, + ACTIONS(2427), 1, sym_test_operator, - ACTIONS(2500), 1, - sym__brace_start, - STATE(1464), 1, + STATE(1949), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + STATE(6649), 1, + sym_subscript, + ACTIONS(1639), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2491), 2, + ACTIONS(2034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2451), 3, + ACTIONS(2419), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1137), 9, + STATE(613), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81728,7 +82226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 22, + ACTIONS(1637), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81738,10 +82236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -81751,16 +82246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7397] = 5, + [7479] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2503), 2, - anon_sym_esac, + ACTIONS(2283), 1, anon_sym_SEMI_SEMI, - ACTIONS(2505), 2, + ACTIONS(2285), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, + ACTIONS(2281), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -81784,7 +82279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, + ACTIONS(2279), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -81813,77 +82308,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [7464] = 23, + [7546] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(2253), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, - aux_sym_number_token1, - ACTIONS(2041), 1, - aux_sym_number_token2, - ACTIONS(2043), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2049), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(2317), 1, - sym__special_character, - ACTIONS(2321), 1, + ACTIONS(2257), 1, sym_variable_name, - ACTIONS(2323), 1, - sym_test_operator, - ACTIONS(2507), 1, + STATE(1064), 1, + sym_string, + ACTIONS(2255), 2, aux_sym__simple_variable_name_token1, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1585), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2315), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(589), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1583), 20, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2251), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81892,59 +82357,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [7567] = 24, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7619] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(2353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2355), 1, anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(2357), 1, + sym__special_character, + ACTIONS(2359), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(2361), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2363), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(2365), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2367), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(2369), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(2371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(2317), 1, - sym__special_character, - ACTIONS(2319), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2321), 1, - sym_variable_name, - ACTIONS(2323), 1, + ACTIONS(2375), 1, sym_test_operator, - STATE(1820), 1, + ACTIONS(2377), 1, + sym__brace_start, + STATE(1686), 1, aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1696), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(2373), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2315), 3, + STATE(603), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2349), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, + STATE(1307), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81954,7 +82427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 19, + ACTIONS(2082), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81964,7 +82437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -81974,47 +82450,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7672] = 8, + anon_sym_LT_LT_LT, + [7718] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2351), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2353), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2355), 1, + anon_sym_DOLLAR, + ACTIONS(2357), 1, + sym__special_character, + ACTIONS(2359), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, - sym_variable_name, - STATE(983), 1, - sym_string, - ACTIONS(2219), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, + ACTIONS(2361), 1, + aux_sym_number_token1, + ACTIONS(2363), 1, + aux_sym_number_token2, + ACTIONS(2365), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2367), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2369), 1, + anon_sym_BQUOTE, + ACTIONS(2371), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2375), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(2377), 1, sym__brace_start, - ACTIONS(2215), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 38, + STATE(1686), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2373), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(603), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2349), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1307), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82023,74 +82528,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7745] = 24, + [7817] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(2432), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2111), 1, + ACTIONS(2435), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2114), 1, + ACTIONS(2438), 1, anon_sym_DOLLAR, - ACTIONS(2120), 1, + ACTIONS(2441), 1, + sym__special_character, + ACTIONS(2444), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(2447), 1, aux_sym_number_token1, - ACTIONS(2126), 1, + ACTIONS(2450), 1, aux_sym_number_token2, - ACTIONS(2129), 1, + ACTIONS(2453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2132), 1, + ACTIONS(2456), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2135), 1, + ACTIONS(2459), 1, anon_sym_BQUOTE, - ACTIONS(2138), 1, + ACTIONS(2462), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2153), 1, - sym__brace_start, - ACTIONS(2512), 1, - sym__special_character, - ACTIONS(2515), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2518), 1, - sym_variable_name, - ACTIONS(2521), 1, + ACTIONS(2468), 1, sym_test_operator, - STATE(1820), 1, + ACTIONS(2471), 1, + sym__brace_start, + STATE(1686), 1, aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1705), 2, + ACTIONS(2146), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2141), 2, + ACTIONS(2465), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2509), 3, + STATE(603), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2429), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, + STATE(1307), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82100,7 +82583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 19, + ACTIONS(2144), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82110,7 +82593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82120,47 +82606,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7850] = 8, + anon_sym_LT_LT_LT, + [7916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, - anon_sym_DQUOTE, - ACTIONS(2221), 1, - sym_variable_name, - STATE(983), 1, - sym_string, - ACTIONS(2219), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + STATE(1696), 1, + aux_sym__literal_repeat1, + STATE(606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2084), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 38, + aux_sym_heredoc_redirect_token1, + STATE(1313), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82169,11 +82653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -82185,65 +82670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7923] = 28, + [7985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(2253), 1, - anon_sym_LT_LT_LT, - ACTIONS(2255), 1, - sym__special_character, - ACTIONS(2257), 1, - sym_test_operator, - STATE(643), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1696), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(606), 2, sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - STATE(4702), 1, - sym_subshell, - ACTIONS(1366), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2251), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2249), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1890), 9, + STATE(1313), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82253,14 +82694,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 16, + ACTIONS(2137), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82270,120 +82716,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8036] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2503), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2505), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [8103] = 24, + [8054] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(2477), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(2480), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2483), 1, anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(2486), 1, + sym__special_character, + ACTIONS(2489), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(2492), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2495), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(2498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2501), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(2504), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(2317), 1, - sym__special_character, - ACTIONS(2321), 1, - sym_variable_name, - ACTIONS(2323), 1, + ACTIONS(2513), 1, sym_test_operator, - ACTIONS(2524), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, + ACTIONS(2516), 1, + sym__brace_start, + STATE(1696), 1, aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1585), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(2510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2315), 3, + STATE(606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2146), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2474), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(601), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, + STATE(1313), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82393,7 +82788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 19, + ACTIONS(2144), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82404,6 +82799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82413,89 +82810,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8208] = 36, + anon_sym_LT_LT_LT, + [8153] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(167), 1, anon_sym_LBRACK, - ACTIONS(435), 1, + ACTIONS(171), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(445), 1, + ACTIONS(215), 1, + sym_variable_name, + ACTIONS(1039), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(449), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR, - ACTIONS(451), 1, + ACTIONS(1045), 1, sym__special_character, - ACTIONS(453), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(459), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(473), 1, - sym_variable_name, - ACTIONS(475), 1, + ACTIONS(1067), 1, sym_test_operator, - ACTIONS(477), 1, + ACTIONS(1069), 1, sym__brace_start, ACTIONS(1352), 1, anon_sym_LT_LT_LT, ACTIONS(1354), 1, sym_file_descriptor, - ACTIONS(2526), 1, + ACTIONS(2519), 1, sym_word, - ACTIONS(2528), 1, + ACTIONS(2521), 1, anon_sym_LPAREN, - STATE(524), 1, + STATE(639), 1, sym_command_name, - STATE(942), 1, + STATE(903), 1, aux_sym_command_repeat1, - STATE(943), 1, + STATE(2330), 1, aux_sym__literal_repeat1, - STATE(1056), 1, + STATE(2424), 1, sym_concatenation, - STATE(1604), 1, + STATE(2994), 1, sym_variable_assignment, - STATE(4805), 1, + STATE(5578), 1, sym_command, - STATE(6697), 1, + STATE(6695), 1, sym_subscript, - ACTIONS(455), 2, + ACTIONS(1049), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(469), 2, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1350), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4789), 2, + STATE(5561), 2, sym_subshell, sym_test_command, ACTIONS(1346), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, ACTIONS(1344), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(781), 9, + STATE(1779), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82505,22 +82904,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [8336] = 6, - ACTIONS(3), 1, + [8282] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(51), 1, + sym__special_character, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, sym_comment, - STATE(1803), 1, - aux_sym__literal_repeat1, - STATE(622), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 6, - sym_file_descriptor, + ACTIONS(75), 1, sym_variable_name, + ACTIONS(77), 1, sym_test_operator, + ACTIONS(79), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1325), 9, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2325), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + sym_word, + STATE(529), 1, + sym_command_name, + STATE(883), 1, + aux_sym_command_repeat1, + STATE(1216), 1, + aux_sym__literal_repeat1, + STATE(1499), 1, + sym_concatenation, + STATE(2045), 1, + sym_variable_assignment, + STATE(4883), 1, + sym_command, + STATE(6635), 1, + sym_subscript, + ACTIONS(55), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4874), 2, + sym_subshell, + sym_test_command, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(986), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82530,126 +82997,183 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [8411] = 36, + ACTIONS(71), 1, + sym_comment, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(648), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(658), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(660), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(662), 1, anon_sym_DOLLAR, + ACTIONS(664), 1, sym__special_character, + ACTIONS(666), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(670), 1, aux_sym_number_token1, + ACTIONS(672), 1, aux_sym_number_token2, + ACTIONS(674), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(676), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(678), 1, anon_sym_BQUOTE, + ACTIONS(680), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(686), 1, + sym_variable_name, + ACTIONS(688), 1, + sym_test_operator, + ACTIONS(690), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2525), 1, + sym_word, + ACTIONS(2527), 1, + anon_sym_LPAREN, + STATE(526), 1, + sym_command_name, + STATE(920), 1, + aux_sym_command_repeat1, + STATE(1183), 1, + aux_sym__literal_repeat1, + STATE(1205), 1, + sym_concatenation, + STATE(1896), 1, + sym_variable_assignment, + STATE(4966), 1, + sym_command, + STATE(6637), 1, + sym_subscript, + ACTIONS(668), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [8404] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4999), 2, + sym_subshell, + sym_test_command, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(867), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [8540] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(135), 1, - sym_variable_name, - ACTIONS(308), 1, + ACTIONS(390), 1, + anon_sym_LBRACK, + ACTIONS(392), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + ACTIONS(406), 1, anon_sym_DOLLAR, - ACTIONS(316), 1, + ACTIONS(408), 1, + sym__special_character, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(771), 1, - sym__special_character, - ACTIONS(775), 1, + ACTIONS(430), 1, + sym_variable_name, + ACTIONS(432), 1, sym_test_operator, + ACTIONS(434), 1, + sym__brace_start, ACTIONS(1352), 1, anon_sym_LT_LT_LT, ACTIONS(1354), 1, sym_file_descriptor, - ACTIONS(2530), 1, + ACTIONS(2529), 1, sym_word, - ACTIONS(2532), 1, + ACTIONS(2531), 1, anon_sym_LPAREN, - STATE(532), 1, + STATE(524), 1, sym_command_name, - STATE(961), 1, + STATE(875), 1, aux_sym_command_repeat1, - STATE(1237), 1, + STATE(1026), 1, aux_sym__literal_repeat1, - STATE(1350), 1, + STATE(1141), 1, sym_concatenation, - STATE(2030), 1, + STATE(1545), 1, sym_variable_assignment, - STATE(4726), 1, + STATE(4777), 1, sym_command, - STATE(6664), 1, + STATE(6661), 1, sym_subscript, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(773), 2, + ACTIONS(412), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(426), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, ACTIONS(1350), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4724), 2, + STATE(4776), 2, sym_subshell, sym_test_command, ACTIONS(1346), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, ACTIONS(1344), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(956), 9, + STATE(827), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82659,53 +83183,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [8532] = 22, + [8669] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2012), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(2542), 1, - sym__special_character, - ACTIONS(2544), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2546), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(2550), 1, + ACTIONS(2026), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2552), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2554), 1, - anon_sym_BQUOTE, - ACTIONS(2556), 1, + ACTIONS(2032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2560), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2562), 1, - sym_test_operator, - ACTIONS(2564), 1, + ACTIONS(2042), 1, sym__brace_start, - STATE(1801), 1, + ACTIONS(2421), 1, + sym__special_character, + ACTIONS(2425), 1, + sym_variable_name, + ACTIONS(2427), 1, + sym_test_operator, + ACTIONS(2533), 1, + aux_sym__simple_variable_name_token1, + STATE(1949), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + STATE(6649), 1, + sym_subscript, + ACTIONS(1639), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2558), 2, + ACTIONS(2034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(614), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2534), 3, + ACTIONS(2419), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(614), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82715,7 +83242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 21, + ACTIONS(1637), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82726,8 +83253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82737,20 +83262,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8632] = 6, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [8772] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - STATE(1542), 1, - aux_sym__literal_repeat1, - STATE(1709), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, + ACTIONS(308), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(314), 1, + sym__special_character, + ACTIONS(316), 1, + anon_sym_DQUOTE, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(336), 1, sym_variable_name, + ACTIONS(338), 1, sym_test_operator, + ACTIONS(340), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1240), 9, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2323), 1, + sym_word, + ACTIONS(2325), 1, + anon_sym_LPAREN, + STATE(545), 1, + sym_command_name, + STATE(874), 1, + aux_sym_command_repeat1, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1437), 1, + sym_concatenation, + STATE(2098), 1, + sym_variable_assignment, + STATE(4883), 1, + sym_command, + STATE(6647), 1, + sym_subscript, + ACTIONS(318), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4874), 2, + sym_subshell, + sym_test_command, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82760,59 +83356,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [8901] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2014), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2016), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2020), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2022), 1, aux_sym_number_token1, + ACTIONS(2024), 1, aux_sym_number_token2, + ACTIONS(2026), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2030), 1, anon_sym_BQUOTE, + ACTIONS(2032), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(2421), 1, + sym__special_character, + ACTIONS(2425), 1, + sym_variable_name, + ACTIONS(2427), 1, + sym_test_operator, + ACTIONS(2535), 1, + aux_sym__simple_variable_name_token1, + STATE(1949), 1, + aux_sym__literal_repeat1, + STATE(6649), 1, + sym_subscript, + ACTIONS(1595), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2419), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [8700] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1627), 1, - aux_sym__literal_repeat1, - STATE(1833), 1, + STATE(616), 3, + sym_variable_assignment, sym_concatenation, - ACTIONS(2277), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1266), 9, + aux_sym_declaration_command_repeat1, + STATE(1704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82822,7 +83417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 38, + ACTIONS(1593), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82833,8 +83428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82844,70 +83437,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8768] = 22, + [9006] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2012), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(2542), 1, - sym__special_character, - ACTIONS(2544), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2546), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(2550), 1, + ACTIONS(2026), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2552), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2554), 1, - anon_sym_BQUOTE, - ACTIONS(2556), 1, + ACTIONS(2032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2562), 1, - sym_test_operator, - ACTIONS(2564), 1, + ACTIONS(2042), 1, sym__brace_start, - ACTIONS(2566), 1, + ACTIONS(2421), 1, + sym__special_character, + ACTIONS(2425), 1, + sym_variable_name, + ACTIONS(2427), 1, + sym_test_operator, + ACTIONS(2535), 1, aux_sym__simple_variable_name_token1, - STATE(1801), 1, + STATE(1949), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + STATE(6649), 1, + sym_subscript, + ACTIONS(1595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2558), 2, + ACTIONS(2034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2534), 3, + ACTIONS(2419), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(616), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82917,7 +83496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 21, + ACTIONS(1593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82928,8 +83507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82939,190 +83516,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8868] = 6, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [9109] = 5, + ACTIONS(71), 1, sym_comment, - STATE(1814), 1, - aux_sym__literal_repeat1, - STATE(616), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, + ACTIONS(2327), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2329), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2281), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1355), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [8936] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2571), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(2279), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(2580), 1, sym__special_character, - ACTIONS(2583), 1, - anon_sym_DQUOTE, - ACTIONS(2586), 1, aux_sym_number_token1, - ACTIONS(2589), 1, aux_sym_number_token2, - ACTIONS(2592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, - anon_sym_BQUOTE, - ACTIONS(2601), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2607), 1, - sym_test_operator, - ACTIONS(2610), 1, - sym__brace_start, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(2604), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(616), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(2568), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1355), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9034] = 21, + [9176] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(2193), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2617), 1, + ACTIONS(2196), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, + ACTIONS(2199), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, - sym__special_character, - ACTIONS(2623), 1, + ACTIONS(2205), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, + ACTIONS(2208), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(2211), 1, aux_sym_number_token2, - ACTIONS(2629), 1, + ACTIONS(2214), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, + ACTIONS(2217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, + ACTIONS(2220), 1, anon_sym_BQUOTE, - ACTIONS(2635), 1, + ACTIONS(2223), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2639), 1, - sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(2238), 1, sym__brace_start, - STATE(1903), 1, + ACTIONS(2540), 1, + sym__special_character, + ACTIONS(2543), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2546), 1, + sym_variable_name, + ACTIONS(2549), 1, + sym_test_operator, + STATE(1949), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(6649), 1, + sym_subscript, + ACTIONS(1705), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2637), 2, + ACTIONS(2226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2613), 3, + ACTIONS(2537), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(616), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83132,7 +83640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 22, + ACTIONS(1703), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83143,8 +83651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83154,8 +83660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9132] = 36, + [9281] = 36, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, @@ -83168,8 +83673,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, - sym__special_character, ACTIONS(316), 1, anon_sym_DQUOTE, ACTIONS(320), 1, @@ -83184,60 +83687,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(336), 1, - sym_variable_name, - ACTIONS(338), 1, - sym_test_operator, ACTIONS(340), 1, sym__brace_start, + ACTIONS(1015), 1, + sym__special_character, + ACTIONS(1021), 1, + sym_variable_name, + ACTIONS(1023), 1, + sym_test_operator, ACTIONS(1352), 1, anon_sym_LT_LT_LT, ACTIONS(1354), 1, sym_file_descriptor, - ACTIONS(2532), 1, + ACTIONS(2325), 1, anon_sym_LPAREN, - ACTIONS(2643), 1, + ACTIONS(2552), 1, sym_word, - STATE(538), 1, + STATE(618), 1, sym_command_name, - STATE(938), 1, + STATE(896), 1, aux_sym_command_repeat1, - STATE(1237), 1, + STATE(1300), 1, aux_sym__literal_repeat1, - STATE(1350), 1, + STATE(1437), 1, sym_concatenation, - STATE(2285), 1, + STATE(2098), 1, sym_variable_assignment, - STATE(4726), 1, + STATE(4883), 1, sym_command, - STATE(6650), 1, + STATE(6687), 1, sym_subscript, - ACTIONS(318), 2, - sym_raw_string, - sym_ansi_c_string, ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1017), 2, + sym_raw_string, + sym_ansi_c_string, ACTIONS(1350), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4724), 2, + STATE(4874), 2, sym_subshell, sym_test_command, ACTIONS(1346), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, ACTIONS(1344), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1126), 9, + STATE(1744), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83247,71 +83753,65 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9260] = 29, - ACTIONS(71), 1, + [9410] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2649), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, - sym_test_operator, - ACTIONS(2681), 1, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(1478), 1, sym__brace_start, - STATE(702), 1, + ACTIONS(2558), 1, + anon_sym_LT_LT_LT, + ACTIONS(2560), 1, + sym__special_character, + ACTIONS(2562), 1, + sym_test_operator, + STATE(704), 1, aux_sym_command_repeat2, - STATE(2399), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + STATE(1612), 1, sym_concatenation, - STATE(2488), 1, + STATE(1690), 1, sym_herestring_redirect, - STATE(5570), 1, + STATE(4740), 1, sym_subshell, - ACTIONS(2647), 2, + ACTIONS(1402), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2556), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2663), 2, + ACTIONS(2554), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(2677), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1362), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2177), 9, + sym_word, + STATE(1921), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83321,62 +83821,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1366), 10, - sym_file_descriptor, + ACTIONS(1400), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [9374] = 21, + [9523] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2617), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, - sym__special_character, - ACTIONS(2623), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(2629), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(2635), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2639), 1, - sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(1476), 1, + sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - STATE(1903), 1, + ACTIONS(2558), 1, + anon_sym_LT_LT_LT, + ACTIONS(2560), 1, + sym__special_character, + ACTIONS(2562), 1, + sym_test_operator, + STATE(707), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(1612), 1, + sym_concatenation, + STATE(1690), 1, + sym_herestring_redirect, + STATE(4739), 1, + sym_subshell, + ACTIONS(1366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2637), 2, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2613), 3, + ACTIONS(2556), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2554), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(1921), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83386,19 +83906,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 22, - anon_sym_SEMI, + ACTIONS(1362), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83408,52 +83923,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9472] = 21, + [9636] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(2571), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2691), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2694), 1, + ACTIONS(2577), 1, anon_sym_DOLLAR, - ACTIONS(2697), 1, + ACTIONS(2580), 1, sym__special_character, - ACTIONS(2700), 1, + ACTIONS(2583), 1, anon_sym_DQUOTE, - ACTIONS(2703), 1, + ACTIONS(2586), 1, aux_sym_number_token1, - ACTIONS(2706), 1, + ACTIONS(2589), 1, aux_sym_number_token2, - ACTIONS(2709), 1, + ACTIONS(2592), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2712), 1, + ACTIONS(2595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2715), 1, + ACTIONS(2598), 1, anon_sym_BQUOTE, - ACTIONS(2718), 1, + ACTIONS(2601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2724), 1, + ACTIONS(2607), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2610), 1, sym_test_operator, - ACTIONS(2727), 1, + ACTIONS(2613), 1, sym__brace_start, - STATE(1903), 1, + STATE(1674), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2569), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2721), 2, + ACTIONS(2604), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, + STATE(620), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2685), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2564), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(1292), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83463,7 +83979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(2567), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83473,6 +83989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -83485,54 +84002,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9570] = 21, + [9737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2391), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2736), 1, + ACTIONS(2393), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2739), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR, - ACTIONS(2742), 1, + ACTIONS(2397), 1, sym__special_character, - ACTIONS(2745), 1, + ACTIONS(2399), 1, anon_sym_DQUOTE, - ACTIONS(2748), 1, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(2751), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(2754), 1, + ACTIONS(2405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2757), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2760), 1, + ACTIONS(2409), 1, anon_sym_BQUOTE, - ACTIONS(2763), 1, + ACTIONS(2411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2769), 1, + ACTIONS(2415), 1, sym_test_operator, - ACTIONS(2772), 1, + ACTIONS(2417), 1, sym__brace_start, - STATE(1803), 1, + STATE(1696), 1, aux_sym__literal_repeat1, - ACTIONS(2766), 2, + ACTIONS(2413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(622), 2, + STATE(605), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2730), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2169), 4, + ACTIONS(2080), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1325), 9, + ACTIONS(2389), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1313), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83542,7 +84057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2078), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83553,6 +84068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83563,21 +84080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [9668] = 6, + [9836] = 6, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, + STATE(1647), 1, aux_sym__literal_repeat1, - STATE(616), 2, + STATE(1913), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + ACTIONS(2385), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1355), 9, + STATE(1284), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83587,7 +84103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 37, + ACTIONS(2383), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83597,8 +84113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83625,89 +84142,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9736] = 36, - ACTIONS(71), 1, + [9904] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACK, - ACTIONS(691), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(701), 1, + ACTIONS(2618), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(2620), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(705), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(707), 1, + ACTIONS(2624), 1, sym__special_character, - ACTIONS(709), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(2632), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(2636), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(729), 1, - sym_variable_name, - ACTIONS(731), 1, + ACTIONS(2642), 1, sym_test_operator, - ACTIONS(733), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2775), 1, - sym_word, - ACTIONS(2777), 1, - anon_sym_LPAREN, - STATE(526), 1, - sym_command_name, - STATE(949), 1, - aux_sym_command_repeat1, - STATE(1089), 1, + STATE(1875), 1, aux_sym__literal_repeat1, - STATE(1220), 1, + ACTIONS(2640), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(652), 2, sym_concatenation, - STATE(1813), 1, - sym_variable_assignment, - STATE(4953), 1, - sym_command, - STATE(6673), 1, - sym_subscript, - ACTIONS(711), 2, + aux_sym_for_statement_repeat1, + ACTIONS(1974), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2616), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(725), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4993), 2, - sym_subshell, - sym_test_command, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(865), 9, + sym_word, + STATE(1455), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83717,32 +84197,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9864] = 8, + ACTIONS(1972), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [10002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, - anon_sym_DQUOTE, - ACTIONS(2785), 1, - sym_variable_name, - STATE(1143), 1, - sym_string, - ACTIONS(2783), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(1875), 1, + aux_sym__literal_repeat1, + STATE(625), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2779), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 38, + aux_sym_heredoc_redirect_token1, + STATE(1455), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83752,10 +84253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83765,11 +84264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -83781,89 +84281,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9936] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + [10070] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(2652), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(51), 1, + ACTIONS(2658), 1, sym__special_character, - ACTIONS(53), 1, + ACTIONS(2661), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(2664), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(2667), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(2670), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(2676), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(2679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(75), 1, - sym_variable_name, - ACTIONS(77), 1, + ACTIONS(2685), 1, sym_test_operator, - ACTIONS(79), 1, + ACTIONS(2688), 1, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2787), 1, - sym_word, - STATE(528), 1, - sym_command_name, - STATE(937), 1, - aux_sym_command_repeat1, - STATE(1181), 1, + STATE(1875), 1, aux_sym__literal_repeat1, - STATE(1431), 1, + ACTIONS(2682), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(625), 2, sym_concatenation, - STATE(2121), 1, - sym_variable_assignment, - STATE(4726), 1, - sym_command, - STATE(6655), 1, - sym_subscript, - ACTIONS(55), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2146), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2646), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4724), 2, - sym_subshell, - sym_test_command, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(944), 9, + sym_word, + STATE(1455), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83873,23 +84336,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10064] = 8, + ACTIONS(2144), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [10168] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(2793), 1, + ACTIONS(2341), 1, sym_variable_name, - STATE(1340), 1, + STATE(1268), 1, sym_string, - ACTIONS(2791), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2789), 8, + ACTIONS(2337), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -83898,21 +84384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 38, + ACTIONS(1195), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83937,23 +84422,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10136] = 8, + [10240] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(2793), 1, + ACTIONS(2341), 1, sym_variable_name, - STATE(1340), 1, + STATE(1268), 1, sym_string, - ACTIONS(2791), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2789), 8, + ACTIONS(2337), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -83962,21 +84448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 38, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84001,22 +84486,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10208] = 6, + [10312] = 21, ACTIONS(3), 1, sym_comment, - STATE(1803), 1, - aux_sym__literal_repeat1, - STATE(622), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2693), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2695), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2697), 1, + anon_sym_DOLLAR, + ACTIONS(2699), 1, + sym__special_character, + ACTIONS(2701), 1, + anon_sym_DQUOTE, + ACTIONS(2703), 1, + aux_sym_number_token1, + ACTIONS(2705), 1, + aux_sym_number_token2, + ACTIONS(2707), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2709), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2711), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2717), 1, sym_test_operator, + ACTIONS(2719), 1, sym__brace_start, - ts_builtin_sym_end, + STATE(1799), 1, + aux_sym__literal_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1325), 9, + ACTIONS(2715), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(630), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2691), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84026,7 +84540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 36, + ACTIONS(2082), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84036,7 +84550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84046,63 +84563,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [10410] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2695), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2697), 1, anon_sym_DOLLAR, + ACTIONS(2699), 1, sym__special_character, + ACTIONS(2701), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2703), 1, aux_sym_number_token1, + ACTIONS(2705), 1, aux_sym_number_token2, + ACTIONS(2707), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2709), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2711), 1, anon_sym_BQUOTE, + ACTIONS(2713), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2717), 1, + sym_test_operator, + ACTIONS(2719), 1, + sym__brace_start, + STATE(1799), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2715), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [10276] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - sym_variable_name, - STATE(1273), 1, + STATE(630), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2691), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1427), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2265), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84111,105 +84640,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10348] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [10508] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(2724), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(2727), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + ACTIONS(2730), 1, anon_sym_DOLLAR, - ACTIONS(314), 1, + ACTIONS(2733), 1, sym__special_character, - ACTIONS(316), 1, + ACTIONS(2736), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(2739), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(2742), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(2745), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(2751), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(2754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(336), 1, - sym_variable_name, - ACTIONS(338), 1, + ACTIONS(2760), 1, sym_test_operator, - ACTIONS(340), 1, + ACTIONS(2763), 1, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2643), 1, - sym_word, - STATE(544), 1, - sym_command_name, - STATE(970), 1, - aux_sym_command_repeat1, - STATE(1237), 1, + STATE(1799), 1, aux_sym__literal_repeat1, - STATE(1350), 1, + ACTIONS(2146), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2757), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(630), 2, sym_concatenation, - STATE(2030), 1, - sym_variable_assignment, - STATE(4726), 1, - sym_command, - STATE(6650), 1, - sym_subscript, - ACTIONS(318), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2721), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4724), 2, - sym_subshell, - sym_test_command, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1126), 9, + sym_word, + STATE(1427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84219,46 +84694,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10476] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - sym_variable_name, - STATE(1273), 1, - sym_string, - ACTIONS(2267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2265), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, + ACTIONS(2144), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84267,67 +84717,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10548] = 21, + [10606] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2799), 1, + ACTIONS(2770), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2801), 1, + ACTIONS(2772), 1, anon_sym_DOLLAR, - ACTIONS(2803), 1, + ACTIONS(2774), 1, sym__special_character, - ACTIONS(2805), 1, + ACTIONS(2776), 1, anon_sym_DQUOTE, - ACTIONS(2807), 1, + ACTIONS(2778), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(2780), 1, aux_sym_number_token2, - ACTIONS(2811), 1, + ACTIONS(2782), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2813), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2815), 1, + ACTIONS(2786), 1, anon_sym_BQUOTE, - ACTIONS(2817), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2821), 1, + ACTIONS(2792), 1, sym_test_operator, - ACTIONS(2823), 1, + ACTIONS(2794), 1, sym__brace_start, - STATE(1722), 1, + STATE(4261), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(4686), 1, + sym_concatenation, + ACTIONS(2381), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2819), 2, + ACTIONS(2790), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2795), 3, + ACTIONS(2766), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1292), 9, + STATE(4167), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84337,7 +84770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 22, + ACTIONS(2379), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84360,89 +84793,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [10646] = 36, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [10704] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(171), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(215), 1, - sym_variable_name, - ACTIONS(1039), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(2770), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, + ACTIONS(2772), 1, anon_sym_DOLLAR, - ACTIONS(1045), 1, + ACTIONS(2774), 1, sym__special_character, - ACTIONS(1047), 1, + ACTIONS(2776), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(2778), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(2780), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(2782), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(2786), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1067), 1, - sym_test_operator, - ACTIONS(1069), 1, + ACTIONS(2794), 1, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2825), 1, - sym_word, - STATE(639), 1, - sym_command_name, - STATE(880), 1, - aux_sym_command_repeat1, - STATE(2307), 1, + ACTIONS(2798), 1, + sym_test_operator, + STATE(4271), 1, aux_sym__literal_repeat1, - STATE(2412), 1, + STATE(4627), 1, sym_concatenation, - STATE(2945), 1, - sym_variable_assignment, - STATE(5567), 1, - sym_command, - STATE(6641), 1, - sym_subscript, - ACTIONS(1049), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1063), 2, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2790), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5584), 2, - sym_subshell, - sym_test_command, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, + ACTIONS(2796), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4171), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1879), 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [10802] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1775), 1, + aux_sym__literal_repeat1, + STATE(656), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2084), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84452,51 +84896,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10774] = 21, + ACTIONS(2082), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [10870] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2799), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2801), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR, - ACTIONS(2803), 1, + ACTIONS(2808), 1, sym__special_character, - ACTIONS(2805), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, - ACTIONS(2807), 1, + ACTIONS(2812), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(2814), 1, aux_sym_number_token2, - ACTIONS(2811), 1, + ACTIONS(2816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2813), 1, + ACTIONS(2818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2815), 1, + ACTIONS(2820), 1, anon_sym_BQUOTE, - ACTIONS(2817), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2821), 1, + ACTIONS(2826), 1, sym_test_operator, - ACTIONS(2823), 1, + ACTIONS(2828), 1, sym__brace_start, - STATE(1722), 1, + STATE(1946), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(1974), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2819), 2, + ACTIONS(2824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, + STATE(642), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2795), 3, + ACTIONS(2800), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1292), 9, + STATE(1508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84506,7 +84987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 22, + ACTIONS(1972), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84516,7 +84997,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -84529,53 +85009,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [10872] = 22, + anon_sym_LT_LT_LT, + [10968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2833), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2836), 1, - anon_sym_DOLLAR, - ACTIONS(2839), 1, - sym__special_character, - ACTIONS(2842), 1, - anon_sym_DQUOTE, - ACTIONS(2845), 1, - aux_sym_number_token1, - ACTIONS(2848), 1, - aux_sym_number_token2, - ACTIONS(2851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2854), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2857), 1, - anon_sym_BQUOTE, - ACTIONS(2860), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2866), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2869), 1, - sym_test_operator, - ACTIONS(2872), 1, - sym__brace_start, - STATE(1801), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + STATE(1899), 1, + sym_concatenation, + ACTIONS(2381), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(636), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2827), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1324), 9, + STATE(1283), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84585,7 +85033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 21, + ACTIONS(2379), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84607,89 +85055,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [10972] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(316), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(320), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(1015), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [11036] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2804), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2806), 1, + anon_sym_DOLLAR, + ACTIONS(2808), 1, sym__special_character, - ACTIONS(1021), 1, - sym_variable_name, - ACTIONS(1023), 1, + ACTIONS(2810), 1, + anon_sym_DQUOTE, + ACTIONS(2812), 1, + aux_sym_number_token1, + ACTIONS(2814), 1, + aux_sym_number_token2, + ACTIONS(2816), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2818), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2820), 1, + anon_sym_BQUOTE, + ACTIONS(2822), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2826), 1, sym_test_operator, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2875), 1, - sym_word, - STATE(581), 1, - sym_command_name, - STATE(974), 1, - aux_sym_command_repeat1, - STATE(1237), 1, + ACTIONS(2828), 1, + sym__brace_start, + STATE(1946), 1, aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(2030), 1, - sym_variable_assignment, - STATE(4726), 1, - sym_command, - STATE(6679), 1, - sym_subscript, - ACTIONS(332), 2, + ACTIONS(2080), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + STATE(644), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2800), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4724), 2, - sym_subshell, - sym_test_command, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1692), 9, + sym_word, + STATE(1508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84699,51 +85126,109 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [11100] = 21, + ACTIONS(2078), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [11134] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(1984), 1, + anon_sym_DQUOTE, + ACTIONS(2834), 1, + sym_variable_name, + STATE(1288), 1, + sym_string, + ACTIONS(2832), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2830), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2883), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOLLAR, - ACTIONS(2889), 1, sym__special_character, - ACTIONS(2892), 1, - anon_sym_DQUOTE, - ACTIONS(2895), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2898), 1, aux_sym_number_token2, - ACTIONS(2901), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2907), 1, anon_sym_BQUOTE, - ACTIONS(2910), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2916), 1, - sym_test_operator, - ACTIONS(2919), 1, - sym__brace_start, - STATE(1722), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2913), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, + sym_word, + [11206] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1775), 1, + aux_sym__literal_repeat1, + STATE(656), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2877), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1292), 9, + ACTIONS(2139), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84753,7 +85238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(2137), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84763,10 +85248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84776,60 +85258,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11198] = 29, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [11274] = 29, ACTIONS(71), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2649), 1, + ACTIONS(2521), 1, anon_sym_LPAREN, - ACTIONS(2651), 1, + ACTIONS(2836), 1, + sym_word, + ACTIONS(2840), 1, anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(2848), 1, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(2854), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(2856), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(2860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(2868), 1, sym_test_operator, - ACTIONS(2681), 1, + ACTIONS(2870), 1, sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(2872), 1, sym__brace_start, - STATE(695), 1, + STATE(719), 1, aux_sym_command_repeat2, - STATE(2399), 1, + STATE(2486), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + STATE(2626), 1, sym_concatenation, - STATE(2488), 1, + STATE(2627), 1, sym_herestring_redirect, - STATE(5593), 1, + STATE(5556), 1, sym_subshell, - ACTIONS(2647), 2, + ACTIONS(2838), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2663), 2, + ACTIONS(2852), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2677), 2, + ACTIONS(2866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1400), 7, @@ -84840,7 +85339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2177), 9, + STATE(2131), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84861,50 +85360,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11312] = 21, + [11388] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2877), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2926), 1, + ACTIONS(2880), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2928), 1, + ACTIONS(2883), 1, anon_sym_DOLLAR, - ACTIONS(2930), 1, + ACTIONS(2886), 1, sym__special_character, - ACTIONS(2932), 1, + ACTIONS(2889), 1, anon_sym_DQUOTE, - ACTIONS(2934), 1, + ACTIONS(2892), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(2895), 1, aux_sym_number_token2, - ACTIONS(2938), 1, + ACTIONS(2898), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2940), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2942), 1, + ACTIONS(2904), 1, anon_sym_BQUOTE, - ACTIONS(2944), 1, + ACTIONS(2907), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2948), 1, + ACTIONS(2913), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2916), 1, sym_test_operator, - ACTIONS(2950), 1, + ACTIONS(2919), 1, sym__brace_start, - STATE(4245), 1, + STATE(1849), 1, aux_sym__literal_repeat1, - STATE(4580), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2569), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2946), 2, + ACTIONS(2910), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2922), 3, + STATE(640), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2874), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4133), 9, + STATE(1451), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84914,7 +85416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 23, + ACTIONS(2567), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84924,7 +85426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -84937,51 +85438,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [11488] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2521), 1, + anon_sym_LPAREN, + ACTIONS(2836), 1, + sym_word, + ACTIONS(2840), 1, anon_sym_LT_LT_LT, - [11410] = 21, + ACTIONS(2842), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2844), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2848), 1, + sym__special_character, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + ACTIONS(2854), 1, + aux_sym_number_token1, + ACTIONS(2856), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, + anon_sym_BQUOTE, + ACTIONS(2864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2868), 1, + sym_test_operator, + ACTIONS(2870), 1, + sym__bare_dollar, + ACTIONS(2872), 1, + sym__brace_start, + STATE(729), 1, + aux_sym_command_repeat2, + STATE(2486), 1, + aux_sym__literal_repeat1, + STATE(2626), 1, + sym_concatenation, + STATE(2627), 1, + sym_herestring_redirect, + STATE(5566), 1, + sym_subshell, + ACTIONS(2838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2852), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1362), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2131), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1366), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [11602] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2926), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2928), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR, - ACTIONS(2930), 1, + ACTIONS(2808), 1, sym__special_character, - ACTIONS(2932), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, - ACTIONS(2934), 1, + ACTIONS(2812), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(2814), 1, aux_sym_number_token2, - ACTIONS(2938), 1, + ACTIONS(2816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2940), 1, + ACTIONS(2818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2942), 1, + ACTIONS(2820), 1, anon_sym_BQUOTE, - ACTIONS(2944), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2950), 1, - sym__brace_start, - ACTIONS(2954), 1, + ACTIONS(2826), 1, sym_test_operator, - STATE(4198), 1, + ACTIONS(2828), 1, + sym__brace_start, + STATE(1946), 1, aux_sym__literal_repeat1, - STATE(4643), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2946), 2, + ACTIONS(2824), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2952), 3, + STATE(645), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2800), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4165), 9, + STATE(1508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84991,7 +85577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 23, + ACTIONS(2082), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85001,7 +85587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85015,23 +85600,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [11508] = 8, + [11700] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(1984), 1, anon_sym_DQUOTE, - ACTIONS(2785), 1, + ACTIONS(2834), 1, sym_variable_name, - STATE(1143), 1, + STATE(1288), 1, sym_string, - ACTIONS(2783), 2, + ACTIONS(2832), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2779), 8, + ACTIONS(2830), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85079,61 +85664,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11580] = 26, + [11772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(2808), 1, + sym__special_character, + ACTIONS(2810), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(2812), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2814), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(2816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(2818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(2820), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(2253), 1, - anon_sym_LT_LT_LT, - ACTIONS(2255), 1, - sym__special_character, - ACTIONS(2257), 1, + ACTIONS(2826), 1, sym_test_operator, - STATE(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + ACTIONS(2828), 1, + sym__brace_start, + STATE(1946), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2251), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2249), 3, + ACTIONS(2824), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(645), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2800), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(1508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85143,14 +85718,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 16, + ACTIONS(2137), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85160,53 +85740,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11687] = 22, + anon_sym_LT_LT_LT, + [11870] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, + ACTIONS(2928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, + ACTIONS(2931), 1, anon_sym_DOLLAR, - ACTIONS(2968), 1, + ACTIONS(2934), 1, sym__special_character, - ACTIONS(2971), 1, + ACTIONS(2937), 1, anon_sym_DQUOTE, - ACTIONS(2974), 1, + ACTIONS(2940), 1, aux_sym_number_token1, - ACTIONS(2977), 1, + ACTIONS(2943), 1, aux_sym_number_token2, - ACTIONS(2980), 1, + ACTIONS(2946), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, + ACTIONS(2952), 1, anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(2955), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2995), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2998), 1, + ACTIONS(2961), 1, sym_test_operator, - ACTIONS(3001), 1, + ACTIONS(2964), 1, sym__brace_start, - STATE(2045), 1, + STATE(1946), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + ACTIONS(2146), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, + ACTIONS(2958), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(644), 2, + STATE(645), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2956), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2922), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1615), 9, + STATE(1508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85216,7 +85795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 20, + ACTIONS(2144), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85226,8 +85805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85237,61 +85817,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11786] = 21, + anon_sym_LT_LT_LT, + [11968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3012), 1, - sym__special_character, - ACTIONS(3014), 1, + ACTIONS(2359), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, - aux_sym_number_token1, - ACTIONS(3018), 1, - aux_sym_number_token2, - ACTIONS(3020), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, - anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3030), 1, + ACTIONS(2971), 1, + sym_variable_name, + STATE(1483), 1, + sym_string, + ACTIONS(2969), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3032), 1, sym__brace_start, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3004), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1653), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(2967), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85301,8 +85853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85312,52 +85866,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [11883] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [12040] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(2975), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(2977), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR, - ACTIONS(3012), 1, + ACTIONS(2981), 1, sym__special_character, - ACTIONS(3014), 1, + ACTIONS(2983), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(2985), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2987), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(2989), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(2993), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(2995), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3030), 1, + ACTIONS(2999), 1, sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(3001), 1, sym__brace_start, - STATE(2112), 1, + STATE(1775), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(2997), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, + STATE(633), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3004), 3, + ACTIONS(2973), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1653), 9, + ACTIONS(1974), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85367,7 +85938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 21, + ACTIONS(1972), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85377,7 +85948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -85389,51 +85959,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [11980] = 21, + [12138] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, + ACTIONS(3007), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, + ACTIONS(3009), 1, anon_sym_DOLLAR, - ACTIONS(3046), 1, + ACTIONS(3011), 1, sym__special_character, - ACTIONS(3049), 1, + ACTIONS(3013), 1, anon_sym_DQUOTE, - ACTIONS(3052), 1, + ACTIONS(3015), 1, aux_sym_number_token1, - ACTIONS(3055), 1, + ACTIONS(3017), 1, aux_sym_number_token2, - ACTIONS(3058), 1, + ACTIONS(3019), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(3021), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3023), 1, anon_sym_BQUOTE, - ACTIONS(3067), 1, + ACTIONS(3025), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3073), 1, + ACTIONS(3029), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3031), 1, sym_test_operator, - ACTIONS(3076), 1, + ACTIONS(3033), 1, sym__brace_start, - STATE(2112), 1, + STATE(1849), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2291), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3070), 2, + ACTIONS(3027), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, + STATE(640), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3034), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3003), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1653), 9, + STATE(1451), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85443,7 +86015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(2289), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85453,8 +86025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85464,54 +86037,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [12077] = 22, + [12238] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(2975), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(2977), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(2981), 1, sym__special_character, - ACTIONS(3089), 1, + ACTIONS(2983), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(2985), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(2987), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(2989), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(2993), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(2995), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3105), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3107), 1, + ACTIONS(2999), 1, sym_test_operator, - ACTIONS(3109), 1, + ACTIONS(3001), 1, sym__brace_start, - STATE(2045), 1, + STATE(1775), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(2997), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(657), 2, + STATE(638), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3079), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2973), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1615), 9, + ACTIONS(2080), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85521,7 +86093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 20, + ACTIONS(2078), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85531,7 +86103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -85542,30 +86113,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12176] = 6, + anon_sym_LT_LT_LT, + [12336] = 8, ACTIONS(3), 1, sym_comment, - STATE(1825), 1, - aux_sym__literal_repeat1, - STATE(2047), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, + ACTIONS(2359), 1, + anon_sym_DQUOTE, + ACTIONS(2971), 1, sym_variable_name, + STATE(1483), 1, + sym_string, + ACTIONS(2969), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1370), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 37, + ACTIONS(2967), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85575,8 +86149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85586,12 +86162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -85603,32 +86178,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12243] = 8, + [12408] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2618), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2620), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2622), 1, + anon_sym_DOLLAR, + ACTIONS(2624), 1, + sym__special_character, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, - sym_variable_name, - STATE(1528), 1, - sym_string, - ACTIONS(3113), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, + ACTIONS(2628), 1, + aux_sym_number_token1, + ACTIONS(2630), 1, + aux_sym_number_token2, + ACTIONS(2632), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2634), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2636), 1, + anon_sym_BQUOTE, + ACTIONS(2638), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2642), 1, sym_test_operator, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(3111), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, + STATE(1875), 1, + aux_sym__literal_repeat1, + ACTIONS(2640), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(624), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2080), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2616), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1455), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2078), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85638,9 +86243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85650,36 +86254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [12314] = 6, + [12506] = 6, ACTIONS(3), 1, sym_comment, - STATE(1885), 1, + STATE(1875), 1, aux_sym__literal_repeat1, - STATE(2158), 1, + STATE(625), 2, sym_concatenation, - ACTIONS(2277), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2084), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1422), 9, + STATE(1455), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85689,7 +86279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 37, + ACTIONS(2082), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85727,50 +86317,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12381] = 21, + [12574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(2693), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3121), 1, + ACTIONS(2695), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR, - ACTIONS(3125), 1, + ACTIONS(2699), 1, sym__special_character, - ACTIONS(3127), 1, + ACTIONS(2701), 1, anon_sym_DQUOTE, - ACTIONS(3129), 1, + ACTIONS(2703), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(2705), 1, aux_sym_number_token2, - ACTIONS(3133), 1, + ACTIONS(2707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3135), 1, + ACTIONS(2709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3137), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(3139), 1, + ACTIONS(2713), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3143), 1, + ACTIONS(2717), 1, sym_test_operator, - ACTIONS(3145), 1, + ACTIONS(2719), 1, sym__brace_start, - STATE(4405), 1, + STATE(1799), 1, aux_sym__literal_repeat1, - STATE(4910), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(1974), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3141), 2, + ACTIONS(2715), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3117), 3, + STATE(628), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2691), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4268), 9, + STATE(1427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85780,7 +86371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 22, + ACTIONS(1972), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85803,50 +86394,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12478] = 21, + [12672] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3121), 1, + ACTIONS(3007), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3009), 1, anon_sym_DOLLAR, - ACTIONS(3125), 1, + ACTIONS(3011), 1, sym__special_character, - ACTIONS(3127), 1, + ACTIONS(3013), 1, anon_sym_DQUOTE, - ACTIONS(3129), 1, + ACTIONS(3015), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(3017), 1, aux_sym_number_token2, - ACTIONS(3133), 1, + ACTIONS(3019), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3135), 1, + ACTIONS(3021), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3137), 1, + ACTIONS(3023), 1, anon_sym_BQUOTE, - ACTIONS(3139), 1, + ACTIONS(3025), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(3149), 1, + ACTIONS(3031), 1, sym_test_operator, - STATE(4419), 1, + ACTIONS(3033), 1, + sym__brace_start, + ACTIONS(3035), 1, + aux_sym__simple_variable_name_token1, + STATE(1849), 1, aux_sym__literal_repeat1, - STATE(4696), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2345), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3141), 2, + ACTIONS(3027), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3147), 3, + STATE(648), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3003), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4168), 9, + STATE(1451), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85856,7 +86450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 22, + ACTIONS(2343), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85866,7 +86460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85879,21 +86472,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12575] = 6, + [12772] = 21, ACTIONS(3), 1, sym_comment, - STATE(1787), 1, - aux_sym__literal_repeat1, - STATE(1973), 1, - sym_concatenation, - ACTIONS(2273), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2693), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2695), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2697), 1, + anon_sym_DOLLAR, + ACTIONS(2699), 1, + sym__special_character, + ACTIONS(2701), 1, + anon_sym_DQUOTE, + ACTIONS(2703), 1, + aux_sym_number_token1, + ACTIONS(2705), 1, + aux_sym_number_token2, + ACTIONS(2707), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2709), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2711), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2717), 1, sym_test_operator, + ACTIONS(2719), 1, sym__brace_start, - ts_builtin_sym_end, + STATE(1799), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1301), 9, + ACTIONS(2715), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(629), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2691), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85903,7 +86526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 36, + ACTIONS(2078), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85913,7 +86536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85923,38 +86549,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [12870] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3043), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3046), 1, anon_sym_DOLLAR, + ACTIONS(3049), 1, sym__special_character, + ACTIONS(3052), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3055), 1, aux_sym_number_token1, + ACTIONS(3058), 1, aux_sym_number_token2, + ACTIONS(3061), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3064), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3067), 1, anon_sym_BQUOTE, + ACTIONS(3070), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3076), 1, + sym_test_operator, + ACTIONS(3079), 1, + sym__brace_start, + STATE(1775), 1, + aux_sym__literal_repeat1, + ACTIONS(3073), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [12642] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1809), 1, - aux_sym__literal_repeat1, - STATE(2020), 1, + STATE(656), 2, sym_concatenation, - ACTIONS(2277), 6, + aux_sym_for_statement_repeat1, + ACTIONS(3037), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2146), 4, sym_file_descriptor, sym_variable_name, - sym_test_operator, - sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1344), 9, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85964,7 +86605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 36, + ACTIONS(2144), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85985,146 +86626,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [12968] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1524), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1916), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1919), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1922), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1928), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1931), 1, aux_sym_number_token1, + ACTIONS(1934), 1, aux_sym_number_token2, + ACTIONS(1937), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1940), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1943), 1, anon_sym_BQUOTE, + ACTIONS(1946), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [12709] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3154), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3157), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3160), 1, - anon_sym_DOLLAR, - ACTIONS(3163), 1, - sym__special_character, - ACTIONS(3166), 1, - anon_sym_DQUOTE, - ACTIONS(3169), 1, - aux_sym_number_token1, - ACTIONS(3172), 1, - aux_sym_number_token2, - ACTIONS(3175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3178), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3181), 1, - anon_sym_BQUOTE, - ACTIONS(3184), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3190), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3193), 1, - sym_test_operator, - ACTIONS(3196), 1, + ACTIONS(1958), 1, + sym__bare_dollar, + ACTIONS(1961), 1, sym__brace_start, - STATE(1968), 1, - aux_sym__literal_repeat1, - ACTIONS(3187), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(656), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2456), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3151), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1598), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2454), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [12808] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, - anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym__special_character, - ACTIONS(3089), 1, - anon_sym_DQUOTE, + ACTIONS(3088), 1, + anon_sym_LT_LT_LT, ACTIONS(3091), 1, - aux_sym_number_token1, - ACTIONS(3093), 1, - aux_sym_number_token2, - ACTIONS(3095), 1, - anon_sym_DOLLAR_LBRACE, + sym__special_character, + ACTIONS(3094), 1, + sym_file_descriptor, ACTIONS(3097), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, - anon_sym_BQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3107), 1, sym_test_operator, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(3199), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, + STATE(657), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + STATE(1612), 1, + sym_concatenation, + STATE(1690), 1, + sym_herestring_redirect, + ACTIONS(1949), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(644), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3079), 3, + ACTIONS(3085), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3082), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1615), 9, + STATE(1921), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86134,18 +86691,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 20, - anon_sym_SEMI, + ACTIONS(1519), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86155,23 +86708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12907] = 8, + [13077] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(3104), 1, sym_variable_name, - STATE(1528), 1, + STATE(1192), 1, sym_string, - ACTIONS(3113), 2, + ACTIONS(3102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3111), 8, + ACTIONS(3100), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86180,7 +86733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86190,6 +86743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -86203,7 +86757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -86218,52 +86771,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12978] = 21, + [13148] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3116), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3205), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3207), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3209), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3211), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(3213), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3217), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3219), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3221), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3227), 1, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(3148), 1, sym__brace_start, - STATE(2027), 1, + STATE(3724), 1, + aux_sym__heredoc_command, + STATE(5268), 1, aux_sym__literal_repeat1, - ACTIONS(3225), 2, + STATE(5456), 1, + sym_concatenation, + STATE(7195), 1, + sym__heredoc_pipeline, + STATE(7196), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3110), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3201), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(5324), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86273,72 +86856,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13075] = 21, + [13263] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3153), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3156), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3237), 1, + ACTIONS(3159), 1, anon_sym_DOLLAR, - ACTIONS(3239), 1, + ACTIONS(3162), 1, sym__special_character, - ACTIONS(3241), 1, + ACTIONS(3165), 1, anon_sym_DQUOTE, - ACTIONS(3243), 1, + ACTIONS(3168), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(3171), 1, aux_sym_number_token2, - ACTIONS(3247), 1, + ACTIONS(3174), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3249), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3180), 1, anon_sym_BQUOTE, - ACTIONS(3253), 1, + ACTIONS(3183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3257), 1, + ACTIONS(3189), 1, sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(3192), 1, sym__brace_start, - STATE(2110), 1, + STATE(2076), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3255), 2, + ACTIONS(3186), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, + STATE(660), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3231), 3, + ACTIONS(2146), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3150), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1524), 9, + STATE(1638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86348,7 +86911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(2144), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86359,8 +86922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86370,51 +86931,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13172] = 21, + anon_sym_LT_LT_LT, + [13360] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3237), 1, + ACTIONS(3201), 1, anon_sym_DOLLAR, - ACTIONS(3239), 1, + ACTIONS(3203), 1, sym__special_character, - ACTIONS(3241), 1, + ACTIONS(3205), 1, anon_sym_DQUOTE, - ACTIONS(3243), 1, + ACTIONS(3207), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(3209), 1, aux_sym_number_token2, - ACTIONS(3247), 1, + ACTIONS(3211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3249), 1, + ACTIONS(3213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - ACTIONS(3253), 1, + ACTIONS(3217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3257), 1, + ACTIONS(3221), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3223), 1, sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(3225), 1, sym__brace_start, - STATE(2110), 1, + STATE(2216), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3255), 2, + ACTIONS(3219), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, + STATE(711), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3231), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2345), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3195), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1524), 9, + STATE(1749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86424,7 +86989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 21, + ACTIONS(2343), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86435,8 +87000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86446,51 +87009,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13269] = 21, + [13459] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3229), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3267), 1, + ACTIONS(3231), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3233), 1, anon_sym_DOLLAR, - ACTIONS(3273), 1, + ACTIONS(3235), 1, sym__special_character, - ACTIONS(3276), 1, + ACTIONS(3237), 1, anon_sym_DQUOTE, - ACTIONS(3279), 1, + ACTIONS(3239), 1, aux_sym_number_token1, - ACTIONS(3282), 1, + ACTIONS(3241), 1, aux_sym_number_token2, - ACTIONS(3285), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3288), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3291), 1, + ACTIONS(3247), 1, anon_sym_BQUOTE, - ACTIONS(3294), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3300), 1, + ACTIONS(3253), 1, sym_test_operator, - ACTIONS(3303), 1, + ACTIONS(3255), 1, sym__brace_start, - STATE(2110), 1, + STATE(4452), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(4710), 1, + sym_concatenation, + ACTIONS(2381), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3297), 2, + ACTIONS(3251), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3261), 3, + ACTIONS(3227), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1524), 9, + STATE(4232), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86500,7 +87062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(2379), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86510,6 +87072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -86522,54 +87085,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13366] = 22, + [13556] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3310), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3312), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3314), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3316), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(3318), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3322), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3324), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3326), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(3328), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3332), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3334), 1, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(3336), 1, + ACTIONS(3148), 1, sym__brace_start, - STATE(1968), 1, + ACTIONS(3257), 1, + aux_sym_heredoc_redirect_token1, + STATE(3679), 1, + aux_sym__heredoc_command, + STATE(5268), 1, aux_sym__literal_repeat1, - ACTIONS(3330), 2, + STATE(5456), 1, + sym_concatenation, + STATE(7054), 1, + sym__heredoc_pipeline, + STATE(7057), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3110), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(681), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2283), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1598), 9, + STATE(5314), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86579,70 +87170,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [13465] = 21, + [13671] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3342), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3344), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(3346), 1, + ACTIONS(3267), 1, sym__special_character, - ACTIONS(3348), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3350), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3354), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3356), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3358), 1, + ACTIONS(3279), 1, anon_sym_BQUOTE, - ACTIONS(3360), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3364), 1, + ACTIONS(3285), 1, sym_test_operator, - ACTIONS(3366), 1, + ACTIONS(3287), 1, sym__brace_start, - STATE(4400), 1, + STATE(2227), 1, aux_sym__literal_repeat1, - STATE(4835), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(1974), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3362), 2, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3338), 3, + STATE(672), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3259), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4234), 9, + STATE(1544), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86652,7 +87224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 22, + ACTIONS(1972), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86662,9 +87234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86675,50 +87246,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [13562] = 21, + [13768] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(3291), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3342), 1, + ACTIONS(3293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3344), 1, + ACTIONS(3295), 1, anon_sym_DOLLAR, - ACTIONS(3346), 1, + ACTIONS(3297), 1, sym__special_character, - ACTIONS(3348), 1, + ACTIONS(3299), 1, anon_sym_DQUOTE, - ACTIONS(3350), 1, + ACTIONS(3301), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(3303), 1, aux_sym_number_token2, - ACTIONS(3354), 1, + ACTIONS(3305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3356), 1, + ACTIONS(3307), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3358), 1, + ACTIONS(3309), 1, anon_sym_BQUOTE, - ACTIONS(3360), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(3370), 1, + ACTIONS(3315), 1, sym_test_operator, - STATE(4336), 1, + ACTIONS(3317), 1, + sym__brace_start, + STATE(1983), 1, aux_sym__literal_repeat1, - STATE(4886), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3362), 2, + ACTIONS(3313), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3368), 3, + STATE(669), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3289), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4254), 9, + STATE(1740), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86728,7 +87300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 22, + ACTIONS(2082), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86750,53 +87322,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13659] = 21, + [13865] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3378), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3381), 1, + ACTIONS(3325), 1, anon_sym_DOLLAR, - ACTIONS(3384), 1, + ACTIONS(3327), 1, sym__special_character, - ACTIONS(3387), 1, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(3390), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(3393), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(3396), 1, + ACTIONS(3335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3399), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3402), 1, + ACTIONS(3339), 1, anon_sym_BQUOTE, - ACTIONS(3405), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3411), 1, + ACTIONS(3345), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3347), 1, sym_test_operator, - ACTIONS(3414), 1, + ACTIONS(3349), 1, sym__brace_start, - STATE(2027), 1, + STATE(2116), 1, aux_sym__literal_repeat1, - ACTIONS(3408), 2, + ACTIONS(2345), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, + STATE(702), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3372), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(1534), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86806,7 +87378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2343), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86816,6 +87388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -86826,24 +87399,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13756] = 8, + [13964] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(2301), 1, anon_sym_DQUOTE, - ACTIONS(3421), 1, + ACTIONS(3355), 1, sym_variable_name, - STATE(1202), 1, + STATE(1345), 1, sym_string, - ACTIONS(3419), 2, + ACTIONS(3353), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3417), 8, + ACTIONS(3351), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86852,7 +87424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86890,95 +87462,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13827] = 8, + [14035] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(3421), 1, - sym_variable_name, - STATE(1202), 1, - sym_string, - ACTIONS(3419), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3417), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + ACTIONS(3291), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3293), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3295), 1, + anon_sym_DOLLAR, + ACTIONS(3297), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3299), 1, + anon_sym_DQUOTE, + ACTIONS(3301), 1, aux_sym_number_token1, + ACTIONS(3303), 1, aux_sym_number_token2, + ACTIONS(3305), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3307), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3309), 1, anon_sym_BQUOTE, + ACTIONS(3311), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3315), 1, + sym_test_operator, + ACTIONS(3317), 1, + sym__brace_start, + STATE(1983), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3313), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(669), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3289), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13898] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_DQUOTE, - ACTIONS(3427), 1, - sym_variable_name, - STATE(1404), 1, + STATE(1740), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3425), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3423), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86988,7 +87526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87001,47 +87538,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + [14132] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3360), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3363), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3366), 1, + anon_sym_DOLLAR, + ACTIONS(3369), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3372), 1, + anon_sym_DQUOTE, + ACTIONS(3375), 1, aux_sym_number_token1, + ACTIONS(3378), 1, aux_sym_number_token2, + ACTIONS(3381), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3384), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3387), 1, anon_sym_BQUOTE, + ACTIONS(3390), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3396), 1, + sym_test_operator, + ACTIONS(3399), 1, + sym__brace_start, + STATE(1983), 1, + aux_sym__literal_repeat1, + ACTIONS(2146), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3393), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(669), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3357), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13969] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_DQUOTE, - ACTIONS(3427), 1, - sym_variable_name, - STATE(1404), 1, + STATE(1740), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3425), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3423), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87051,7 +87602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87064,47 +87614,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + [14229] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3267), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, aux_sym_number_token1, + ACTIONS(3273), 1, aux_sym_number_token2, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3279), 1, anon_sym_BQUOTE, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3285), 1, + sym_test_operator, + ACTIONS(3287), 1, + sym__brace_start, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(679), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3259), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [14040] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - sym_variable_name, - STATE(1473), 1, + STATE(1544), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3431), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3429), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2078), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87114,10 +87678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87127,130 +87689,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [14326] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(3130), 1, aux_sym_number_token1, + ACTIONS(3132), 1, aux_sym_number_token2, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3138), 1, anon_sym_BQUOTE, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14111] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_DQUOTE, - ACTIONS(3433), 1, - sym_variable_name, - STATE(1473), 1, - sym_string, - ACTIONS(3431), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(3144), 1, sym_file_descriptor, + ACTIONS(3146), 1, sym_test_operator, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(3429), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, - anon_sym_SEMI, + ACTIONS(3402), 1, + aux_sym_heredoc_redirect_token1, + STATE(3548), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + STATE(6745), 1, + sym__heredoc_pipeline, + STATE(6747), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3110), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5300), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14182] = 21, + STATE(5051), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14441] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3205), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3207), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(3209), 1, + ACTIONS(3267), 1, sym__special_character, - ACTIONS(3211), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3213), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3217), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3219), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3221), 1, + ACTIONS(3279), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3227), 1, + ACTIONS(3285), 1, sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(3287), 1, sym__brace_start, - STATE(2027), 1, + STATE(2227), 1, aux_sym__literal_repeat1, - ACTIONS(3225), 2, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, + STATE(682), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2158), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3201), 3, + ACTIONS(3259), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(1544), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87260,7 +87829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2082), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87270,6 +87839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -87281,32 +87851,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [14279] = 8, + [14538] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3229), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3231), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3233), 1, + anon_sym_DOLLAR, + ACTIONS(3235), 1, + sym__special_character, + ACTIONS(3237), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, - sym_variable_name, - STATE(1296), 1, - sym_string, - ACTIONS(3439), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, + ACTIONS(3239), 1, + aux_sym_number_token1, + ACTIONS(3241), 1, + aux_sym_number_token2, + ACTIONS(3243), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3247), 1, + anon_sym_BQUOTE, + ACTIONS(3249), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3255), 1, sym__brace_start, - ACTIONS(3435), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + ACTIONS(3406), 1, + sym_test_operator, + STATE(4457), 1, + aux_sym__literal_repeat1, + STATE(4724), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3251), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3404), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4244), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87316,6 +87914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87328,48 +87927,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + [14635] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3412), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3414), 1, + anon_sym_DOLLAR, + ACTIONS(3416), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3418), 1, + anon_sym_DQUOTE, + ACTIONS(3420), 1, aux_sym_number_token1, + ACTIONS(3422), 1, aux_sym_number_token2, + ACTIONS(3424), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3426), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3428), 1, anon_sym_BQUOTE, + ACTIONS(3430), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3434), 1, + sym_test_operator, + ACTIONS(3436), 1, + sym__brace_start, + STATE(4399), 1, + aux_sym__literal_repeat1, + STATE(4784), 1, + sym_concatenation, + ACTIONS(2381), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3408), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [14350] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3437), 1, - anon_sym_DQUOTE, - ACTIONS(3441), 1, - sym_variable_name, - STATE(1296), 1, + STATE(4219), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3439), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3435), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87391,37 +88002,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + [14732] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3412), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3414), 1, + anon_sym_DOLLAR, + ACTIONS(3416), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3418), 1, + anon_sym_DQUOTE, + ACTIONS(3420), 1, aux_sym_number_token1, + ACTIONS(3422), 1, aux_sym_number_token2, + ACTIONS(3424), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3426), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3428), 1, anon_sym_BQUOTE, + ACTIONS(3430), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14421] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1814), 1, + ACTIONS(3436), 1, + sym__brace_start, + ACTIONS(3440), 1, + sym_test_operator, + STATE(4474), 1, aux_sym__literal_repeat1, - STATE(678), 2, + STATE(4753), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + ACTIONS(2385), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1663), 9, + ACTIONS(3432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3438), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4218), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87431,7 +88056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 36, + ACTIONS(2383), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87442,6 +88067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87452,37 +88079,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [14829] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, anon_sym_DOLLAR, + ACTIONS(3126), 1, sym__special_character, + ACTIONS(3128), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3130), 1, aux_sym_number_token1, + ACTIONS(3132), 1, aux_sym_number_token2, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3138), 1, anon_sym_BQUOTE, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14488] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1814), 1, - aux_sym__literal_repeat1, - STATE(678), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, + ACTIONS(3144), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(3146), 1, sym_test_operator, + ACTIONS(3148), 1, sym__brace_start, + ACTIONS(3442), 1, aux_sym_heredoc_redirect_token1, - STATE(1663), 9, + STATE(3521), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + STATE(6729), 1, + sym__heredoc_pipeline, + STATE(6734), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3110), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5299), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87492,7 +88164,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 36, + [14944] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2810), 1, + anon_sym_DQUOTE, + ACTIONS(3448), 1, + sym_variable_name, + STATE(1683), 1, + sym_string, + ACTIONS(3446), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3444), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87503,6 +88200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87512,12 +88211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -87529,52 +88227,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14555] = 21, + [15015] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(3453), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, + ACTIONS(3456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(3459), 1, anon_sym_DOLLAR, - ACTIONS(2583), 1, + ACTIONS(3462), 1, + sym__special_character, + ACTIONS(3465), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(3468), 1, aux_sym_number_token1, - ACTIONS(2589), 1, + ACTIONS(3471), 1, aux_sym_number_token2, - ACTIONS(2592), 1, + ACTIONS(3474), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, + ACTIONS(3477), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, + ACTIONS(3480), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, + ACTIONS(3483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2610), 1, - sym__brace_start, - ACTIONS(3446), 1, - sym__special_character, - ACTIONS(3449), 1, + ACTIONS(3489), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3492), 1, sym_test_operator, - STATE(1814), 1, + ACTIONS(3495), 1, + sym__brace_start, + STATE(2116), 1, aux_sym__literal_repeat1, - ACTIONS(2604), 2, + ACTIONS(2569), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3486), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(678), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(3443), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3450), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1663), 9, + STATE(1534), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87584,7 +88283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2567), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87594,6 +88293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -87604,62 +88304,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [14652] = 26, + [15114] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(3267), 1, + sym__special_character, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(3279), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(2253), 1, - anon_sym_LT_LT_LT, - ACTIONS(2255), 1, - sym__special_character, - ACTIONS(2257), 1, + ACTIONS(3285), 1, sym_test_operator, - STATE(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + ACTIONS(3287), 1, + sym__brace_start, + STATE(2227), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1442), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2251), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2249), 3, + STATE(682), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3259), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(1544), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87669,14 +88358,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 16, + ACTIONS(2137), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87686,62 +88379,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14759] = 27, + anon_sym_LT_LT_LT, + [15211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, + STATE(1872), 1, + aux_sym__literal_repeat1, + STATE(2118), 1, + sym_concatenation, + ACTIONS(2381), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1920), 1, + STATE(1393), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, anon_sym_DOLLAR, - ACTIONS(1932), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1935), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1938), 1, aux_sym_number_token2, - ACTIONS(1941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, anon_sym_BQUOTE, - ACTIONS(1950), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1962), 1, - sym__bare_dollar, - ACTIONS(1965), 1, - sym__brace_start, - ACTIONS(3458), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [15278] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, anon_sym_LT_LT_LT, - ACTIONS(3461), 1, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3464), 1, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3134), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3138), 1, + anon_sym_BQUOTE, + ACTIONS(3140), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3144), 1, sym_file_descriptor, - ACTIONS(3467), 1, + ACTIONS(3146), 1, sym_test_operator, - STATE(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(3498), 1, + aux_sym_heredoc_redirect_token1, + STATE(3697), 1, + aux_sym__heredoc_command, + STATE(5268), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(5456), 1, sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1953), 2, + STATE(7066), 1, + sym__heredoc_pipeline, + STATE(7068), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3110), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3455), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3452), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(5316), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87751,71 +88526,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [14868] = 22, + [15393] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(3503), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3310), 1, + ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3312), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(3314), 1, + ACTIONS(3512), 1, sym__special_character, - ACTIONS(3316), 1, + ACTIONS(3515), 1, anon_sym_DQUOTE, - ACTIONS(3318), 1, + ACTIONS(3518), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(3521), 1, aux_sym_number_token2, - ACTIONS(3322), 1, + ACTIONS(3524), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3324), 1, + ACTIONS(3527), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3326), 1, + ACTIONS(3530), 1, anon_sym_BQUOTE, - ACTIONS(3328), 1, + ACTIONS(3533), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3334), 1, + ACTIONS(3539), 1, sym_test_operator, - ACTIONS(3336), 1, + ACTIONS(3542), 1, sym__brace_start, - ACTIONS(3470), 1, - aux_sym__simple_variable_name_token1, - STATE(1968), 1, + STATE(2227), 1, aux_sym__literal_repeat1, - ACTIONS(3330), 2, + ACTIONS(2146), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(656), 2, + STATE(682), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2327), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3500), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1598), 9, + STATE(1544), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87825,7 +88580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 19, + ACTIONS(2144), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87835,6 +88590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -87845,117 +88601,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14967] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [15490] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(801), 23, - sym_file_descriptor, + ACTIONS(2701), 1, + anon_sym_DQUOTE, + ACTIONS(3549), 1, sym_variable_name, + STATE(1530), 1, + sym_string, + ACTIONS(3547), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(3545), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(517), 29, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [15027] = 21, + [15561] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3476), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3478), 1, - anon_sym_DOLLAR, - ACTIONS(3480), 1, - sym__special_character, - ACTIONS(3482), 1, + ACTIONS(2701), 1, anon_sym_DQUOTE, - ACTIONS(3484), 1, - aux_sym_number_token1, - ACTIONS(3486), 1, - aux_sym_number_token2, - ACTIONS(3488), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3490), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3492), 1, - anon_sym_BQUOTE, - ACTIONS(3494), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3498), 1, + ACTIONS(3549), 1, + sym_variable_name, + STATE(1530), 1, + sym_string, + ACTIONS(3547), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3500), 1, sym__brace_start, - STATE(4662), 1, - aux_sym__literal_repeat1, - STATE(4979), 1, - sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3472), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4414), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 21, + ACTIONS(3545), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87965,6 +88700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87977,60 +88713,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15123] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3510), 1, sym__special_character, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(3514), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3516), 1, aux_sym_number_token2, - ACTIONS(3518), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3528), 1, - sym_test_operator, - ACTIONS(3530), 1, - sym__brace_start, - STATE(4236), 1, - aux_sym__literal_repeat1, - STATE(4549), 1, - sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3502), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(4454), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [15632] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1605), 1, + anon_sym_DQUOTE, + ACTIONS(3104), 1, + sym_variable_name, + STATE(1192), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 21, + ACTIONS(3102), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3100), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88040,8 +88763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88051,51 +88776,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [15219] = 21, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [15703] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3476), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3480), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3482), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(3484), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3488), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3490), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3492), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(3494), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3500), 1, - sym__brace_start, - ACTIONS(3534), 1, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(3146), 1, sym_test_operator, - STATE(4607), 1, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(3551), 1, + aux_sym_heredoc_redirect_token1, + STATE(3666), 1, + aux_sym__heredoc_command, + STATE(5268), 1, aux_sym__literal_repeat1, - STATE(5004), 1, + STATE(5456), 1, sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, + STATE(6932), 1, + sym__heredoc_pipeline, + STATE(6943), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3110), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3532), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4343), 9, + STATE(5267), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88105,7 +88876,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, + [15818] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2301), 1, + anon_sym_DQUOTE, + ACTIONS(3355), 1, + sym_variable_name, + STATE(1345), 1, + sym_string, + ACTIONS(3353), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3351), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88115,6 +88911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -88127,50 +88924,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15315] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3510), 1, sym__special_character, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(3514), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3516), 1, aux_sym_number_token2, - ACTIONS(3518), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(3538), 1, - sym_test_operator, - STATE(4265), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [15889] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1875), 1, aux_sym__literal_repeat1, - STATE(4609), 1, + STATE(695), 2, sym_concatenation, - ACTIONS(2277), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2084), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3536), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4456), 9, + STATE(1702), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88180,7 +88963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, + ACTIONS(2082), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88190,7 +88973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -88202,156 +88984,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15411] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, sym__special_character, - ACTIONS(3562), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3566), 1, aux_sym_number_token2, - ACTIONS(3568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - STATE(3540), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(7115), 1, - sym__heredoc_pipeline, - STATE(7116), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3544), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5435), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [15525] = 30, + [15956] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3118), 1, anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(3144), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(3584), 1, + ACTIONS(3553), 1, aux_sym_heredoc_redirect_token1, - STATE(3541), 1, + STATE(3573), 1, aux_sym__heredoc_command, - STATE(5338), 1, + STATE(5268), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(5456), 1, sym_concatenation, - STATE(7133), 1, + STATE(6796), 1, sym__heredoc_pipeline, - STATE(7136), 1, + STATE(6802), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3544), 2, + ACTIONS(3110), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3548), 2, + ACTIONS(3114), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5436), 3, + STATE(5283), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3112), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -88360,7 +89075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5043), 9, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88370,81 +89085,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [15639] = 30, + [16071] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3291), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3295), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3297), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3299), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3301), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3303), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3307), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3309), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3315), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3317), 1, sym__brace_start, - ACTIONS(3586), 1, - aux_sym_heredoc_redirect_token1, - STATE(3529), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(1983), 1, aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(7277), 1, - sym__heredoc_pipeline, - STATE(7298), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3544), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(1974), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3313), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + STATE(665), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3289), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5446), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5043), 9, + STATE(1740), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88454,52 +89139,76 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [15753] = 21, + ACTIONS(1972), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [16168] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3558), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3592), 1, + ACTIONS(3561), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3594), 1, + ACTIONS(3564), 1, anon_sym_DOLLAR, - ACTIONS(3596), 1, + ACTIONS(3567), 1, sym__special_character, - ACTIONS(3598), 1, + ACTIONS(3570), 1, anon_sym_DQUOTE, - ACTIONS(3600), 1, + ACTIONS(3573), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3576), 1, aux_sym_number_token2, - ACTIONS(3604), 1, + ACTIONS(3579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3606), 1, + ACTIONS(3582), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3608), 1, + ACTIONS(3585), 1, anon_sym_BQUOTE, - ACTIONS(3610), 1, + ACTIONS(3588), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3614), 1, + ACTIONS(3594), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3597), 1, sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(3600), 1, sym__brace_start, - STATE(2279), 1, + STATE(2216), 1, aux_sym__literal_repeat1, - ACTIONS(3612), 2, + ACTIONS(3591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(723), 2, + STATE(691), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2569), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + ACTIONS(3555), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1800), 9, + STATE(1749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88509,7 +89218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 19, + ACTIONS(2567), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88529,91 +89238,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15849] = 4, - ACTIONS(71), 1, + [16267] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, - ts_builtin_sym_end, - ACTIONS(2243), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3291), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3293), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3295), 1, + anon_sym_DOLLAR, + ACTIONS(3297), 1, + sym__special_character, + ACTIONS(3299), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3301), 1, + aux_sym_number_token1, + ACTIONS(3303), 1, + aux_sym_number_token2, + ACTIONS(3305), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3307), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3309), 1, anon_sym_BQUOTE, + ACTIONS(3311), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3315), 1, + sym_test_operator, + ACTIONS(3317), 1, + sym__brace_start, + STATE(1983), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3313), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, + STATE(668), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3289), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1740), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2078), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [15911] = 8, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [16364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, - anon_sym_DQUOTE, - ACTIONS(3624), 1, - sym_variable_name, - STATE(1625), 1, - sym_string, - ACTIONS(3622), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + STATE(1927), 1, + aux_sym__literal_repeat1, + STATE(2069), 1, + sym_concatenation, + ACTIONS(2385), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3618), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 35, + aux_sym_heredoc_redirect_token1, + STATE(1468), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88633,11 +89358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -88649,33 +89375,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15981] = 8, + [16431] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, - anon_sym_DQUOTE, - ACTIONS(3624), 1, - sym_variable_name, - STATE(1625), 1, - sym_string, - ACTIONS(3622), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + STATE(1875), 1, + aux_sym__literal_repeat1, + STATE(695), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3618), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 35, + aux_sym_heredoc_redirect_token1, + STATE(1702), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88695,11 +89419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -88711,81 +89436,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16051] = 30, + [16498] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(2649), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(2652), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(2661), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(2664), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2667), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(2670), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(2676), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(2679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(2688), 1, sym__brace_start, - ACTIONS(3626), 1, - aux_sym_heredoc_redirect_token1, - STATE(3551), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3609), 1, + sym_test_operator, + STATE(1875), 1, aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(6888), 1, - sym__heredoc_pipeline, - STATE(6895), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3544), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(2682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + STATE(695), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2146), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(3603), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5451), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5043), 9, + STATE(1702), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88795,300 +89491,197 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [16165] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, - anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, - anon_sym_DQUOTE, - ACTIONS(2665), 1, - aux_sym_number_token1, - ACTIONS(2667), 1, - aux_sym_number_token2, - ACTIONS(2669), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, - anon_sym_BQUOTE, - ACTIONS(2675), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, - sym_test_operator, - ACTIONS(2681), 1, - sym__bare_dollar, - ACTIONS(2683), 1, - sym__brace_start, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(2399), 1, - aux_sym__literal_repeat1, - STATE(2449), 1, - sym_concatenation, - STATE(2488), 1, - sym_herestring_redirect, - ACTIONS(2647), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2663), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2677), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1440), 7, + ACTIONS(2144), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2177), 9, - sym_arithmetic_expansion, - sym_brace_expression, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [16595] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_DQUOTE, + ACTIONS(3616), 1, + sym_variable_name, + STATE(1448), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1442), 10, + ACTIONS(3614), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3612), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16273] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - ACTIONS(3554), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3566), 1, aux_sym_number_token2, - ACTIONS(3568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [16666] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1826), 1, + aux_sym__literal_repeat1, + STATE(2205), 1, + sym_concatenation, + ACTIONS(2385), 5, sym_file_descriptor, - ACTIONS(3580), 1, + sym_variable_name, sym_test_operator, - ACTIONS(3582), 1, sym__brace_start, - ACTIONS(3628), 1, aux_sym_heredoc_redirect_token1, - STATE(3526), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(6729), 1, - sym__heredoc_pipeline, - STATE(6759), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + STATE(1409), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3544), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5410), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [16387] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(3554), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, sym__special_character, - ACTIONS(3562), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3566), 1, aux_sym_number_token2, - ACTIONS(3568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(3630), 1, - aux_sym_heredoc_redirect_token1, - STATE(3517), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(7396), 1, - sym__heredoc_pipeline, - STATE(7397), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3544), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5421), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [16501] = 21, + [16733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3620), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3622), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3624), 1, anon_sym_DOLLAR, - ACTIONS(3640), 1, + ACTIONS(3626), 1, sym__special_character, - ACTIONS(3642), 1, + ACTIONS(3628), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3630), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3632), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3634), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(3638), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(3640), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3658), 1, + ACTIONS(3644), 1, sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(3646), 1, sym__brace_start, - STATE(2253), 1, + STATE(2076), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(3642), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, + STATE(660), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3632), 3, + ACTIONS(2139), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3618), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1851), 9, + STATE(1638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89098,7 +89691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2137), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89108,7 +89701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -89119,79 +89711,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16597] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3662), 1, - sym_word, - ACTIONS(3668), 1, anon_sym_LT_LT_LT, - ACTIONS(3671), 1, + [16830] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3674), 1, + ACTIONS(3622), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3677), 1, + ACTIONS(3624), 1, anon_sym_DOLLAR, - ACTIONS(3680), 1, + ACTIONS(3626), 1, sym__special_character, - ACTIONS(3683), 1, + ACTIONS(3628), 1, anon_sym_DQUOTE, - ACTIONS(3689), 1, + ACTIONS(3630), 1, aux_sym_number_token1, - ACTIONS(3692), 1, + ACTIONS(3632), 1, aux_sym_number_token2, - ACTIONS(3695), 1, + ACTIONS(3634), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3698), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3701), 1, + ACTIONS(3638), 1, anon_sym_BQUOTE, - ACTIONS(3704), 1, + ACTIONS(3640), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3710), 1, - sym_file_descriptor, - ACTIONS(3713), 1, + ACTIONS(3644), 1, sym_test_operator, - ACTIONS(3716), 1, - sym__bare_dollar, - ACTIONS(3719), 1, + ACTIONS(3646), 1, sym__brace_start, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(2399), 1, + STATE(2076), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + ACTIONS(3642), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(701), 2, sym_concatenation, - STATE(2488), 1, - sym_herestring_redirect, - ACTIONS(3665), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3686), 2, + aux_sym_for_statement_repeat1, + ACTIONS(1974), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3618), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(3707), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1483), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1488), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - STATE(2177), 9, + sym_word, + STATE(1638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89201,44 +89767,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [16707] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2217), 1, - anon_sym_DQUOTE, - ACTIONS(2221), 1, - sym_variable_name, - STATE(983), 1, - sym_string, - ACTIONS(2219), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2215), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1972), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89247,40 +89787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [16777] = 8, + [16927] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(3448), 1, sym_variable_name, - STATE(983), 1, + STATE(1683), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(3446), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ACTIONS(3444), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89289,18 +89813,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 35, + ACTIONS(1183), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89325,67 +89851,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16847] = 27, - ACTIONS(71), 1, + [16998] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(3620), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(3622), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(3624), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(3626), 1, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(3628), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(3630), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(3632), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(3634), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(3638), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(3640), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(3644), 1, sym_test_operator, - ACTIONS(2681), 1, - sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(3646), 1, sym__brace_start, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(2399), 1, + STATE(2076), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + ACTIONS(3642), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(660), 2, sym_concatenation, - STATE(2488), 1, - sym_herestring_redirect, - ACTIONS(2647), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2663), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2084), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3618), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(2677), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1577), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2177), 9, + sym_word, + STATE(1638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89395,62 +89906,74 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1579), 10, - sym_file_descriptor, + ACTIONS(2082), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16955] = 21, + anon_sym_LT_LT_LT, + [17095] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3325), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(3327), 1, + sym__special_character, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(3335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, + ACTIONS(3339), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(3724), 1, - sym__special_character, - ACTIONS(3726), 1, + ACTIONS(3347), 1, sym_test_operator, - STATE(4236), 1, + ACTIONS(3349), 1, + sym__brace_start, + ACTIONS(3648), 1, + aux_sym__simple_variable_name_token1, + STATE(2116), 1, aux_sym__literal_repeat1, - STATE(4549), 1, - sym_concatenation, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2273), 3, + ACTIONS(2291), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3722), 3, + ACTIONS(3343), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(678), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4441), 9, + STATE(1534), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89460,7 +89983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2289), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89470,6 +89993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -89480,73 +90004,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [17051] = 30, + [17194] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3118), 1, anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(3144), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(3728), 1, + ACTIONS(3650), 1, aux_sym_heredoc_redirect_token1, - STATE(3518), 1, + STATE(3723), 1, aux_sym__heredoc_command, - STATE(5338), 1, + STATE(5268), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(5456), 1, sym_concatenation, - STATE(7407), 1, + STATE(7187), 1, sym__heredoc_pipeline, - STATE(7409), 1, + STATE(7188), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3544), 2, + ACTIONS(3110), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3548), 2, + ACTIONS(3114), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5426), 3, + STATE(5323), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3112), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -89555,7 +90079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5043), 9, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89565,51 +90089,133 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [17165] = 21, + [17309] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3101), 1, + ACTIONS(1468), 1, + anon_sym_BQUOTE, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(1476), 1, + sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(3732), 1, + ACTIONS(2558), 1, + anon_sym_LT_LT_LT, + ACTIONS(2560), 1, sym__special_character, - ACTIONS(3734), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3736), 1, + ACTIONS(2562), 1, sym_test_operator, - STATE(2045), 1, + STATE(657), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + STATE(1612), 1, + sym_concatenation, + STATE(1690), 1, + sym_herestring_redirect, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(1472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2556), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2554), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1440), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [17416] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3624), 1, + anon_sym_DOLLAR, + ACTIONS(3626), 1, + sym__special_character, + ACTIONS(3628), 1, + anon_sym_DQUOTE, + ACTIONS(3630), 1, + aux_sym_number_token1, + ACTIONS(3632), 1, + aux_sym_number_token2, + ACTIONS(3634), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3638), 1, + anon_sym_BQUOTE, + ACTIONS(3640), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3644), 1, + sym_test_operator, + ACTIONS(3646), 1, + sym__brace_start, + STATE(2076), 1, + aux_sym__literal_repeat1, + ACTIONS(3642), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, + STATE(698), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2080), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3618), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1638), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89619,7 +90225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 20, + ACTIONS(2078), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89639,73 +90245,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [17261] = 30, + anon_sym_LT_LT_LT, + [17513] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3118), 1, anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(3144), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(3738), 1, + ACTIONS(3652), 1, aux_sym_heredoc_redirect_token1, - STATE(3535), 1, + STATE(3552), 1, aux_sym__heredoc_command, - STATE(5338), 1, + STATE(5268), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(5456), 1, sym_concatenation, - STATE(6921), 1, + STATE(6762), 1, sym__heredoc_pipeline, - STATE(6925), 1, + STATE(6766), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3544), 2, + ACTIONS(3110), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3548), 2, + ACTIONS(3114), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5417), 3, + STATE(5282), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3112), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -89714,7 +90321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5043), 9, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89724,51 +90331,102 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [17375] = 21, + [17628] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3746), 1, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3749), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(3752), 1, - sym__special_character, - ACTIONS(3755), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(3758), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3761), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3764), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3770), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(3773), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3779), 1, - sym_test_operator, - ACTIONS(3782), 1, + ACTIONS(1476), 1, + sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - STATE(2253), 1, + ACTIONS(2558), 1, + anon_sym_LT_LT_LT, + ACTIONS(2560), 1, + sym__special_character, + ACTIONS(2562), 1, + sym_test_operator, + STATE(657), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3776), 2, + STATE(1612), 1, + sym_concatenation, + STATE(1690), 1, + sym_herestring_redirect, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3740), 3, + ACTIONS(1579), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2556), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2554), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1851), 9, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1577), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [17735] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1873), 1, + aux_sym__literal_repeat1, + STATE(2220), 1, + sym_concatenation, + ACTIONS(2381), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89778,7 +90436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2379), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89788,7 +90446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -89799,135 +90456,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17471] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, anon_sym_LT_LT_LT, - ACTIONS(3554), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, sym__special_character, - ACTIONS(3562), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3566), 1, aux_sym_number_token2, - ACTIONS(3568), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(3785), 1, - aux_sym_heredoc_redirect_token1, - STATE(3536), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(6952), 1, - sym__heredoc_pipeline, - STATE(6953), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3544), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5418), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [17585] = 21, + [17802] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(2618), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(2620), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(2632), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, + ACTIONS(2636), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(3724), 1, + ACTIONS(3656), 1, sym__special_character, - ACTIONS(3789), 1, + ACTIONS(3658), 1, sym_test_operator, - STATE(4265), 1, + STATE(1875), 1, aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(3526), 2, + ACTIONS(2640), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2277), 3, + STATE(688), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1974), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 3, + ACTIONS(3654), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4476), 9, + STATE(1702), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89937,7 +90528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(1972), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89958,72 +90549,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [17681] = 30, + [17899] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3118), 1, anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(3144), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(3791), 1, + ACTIONS(3660), 1, aux_sym_heredoc_redirect_token1, - STATE(3528), 1, + STATE(3589), 1, aux_sym__heredoc_command, - STATE(5338), 1, + STATE(5268), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(5456), 1, sym_concatenation, - STATE(7248), 1, + STATE(7117), 1, sym__heredoc_pipeline, - STATE(7253), 1, + STATE(7158), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3544), 2, + ACTIONS(3110), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3548), 2, + ACTIONS(3114), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5445), 3, + STATE(5290), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3112), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -90032,7 +90624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5043), 9, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90042,51 +90634,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [17795] = 21, + [18014] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3201), 1, anon_sym_DOLLAR, - ACTIONS(3640), 1, + ACTIONS(3203), 1, sym__special_character, - ACTIONS(3642), 1, + ACTIONS(3205), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3207), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3209), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(3217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3658), 1, + ACTIONS(3223), 1, sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(3225), 1, sym__brace_start, - STATE(2253), 1, + ACTIONS(3662), 1, + aux_sym__simple_variable_name_token1, + STATE(2216), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(3219), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, + STATE(691), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3632), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2291), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3195), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1851), 9, + STATE(1749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90096,7 +90691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, + ACTIONS(2289), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90106,7 +90701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90117,49 +90711,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17891] = 20, + [18113] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(2618), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(2620), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(2632), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3026), 1, + ACTIONS(2636), 1, + anon_sym_BQUOTE, + ACTIONS(2638), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(3795), 1, + ACTIONS(3656), 1, sym__special_character, - ACTIONS(3797), 1, + ACTIONS(3658), 1, sym_test_operator, - STATE(2112), 1, + STATE(1875), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(2640), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(724), 2, + STATE(694), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, + ACTIONS(2080), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(3654), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1761), 9, + STATE(1702), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90169,7 +90766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(2078), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90190,24 +90787,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [17985] = 8, + [18210] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(2399), 1, anon_sym_DQUOTE, - ACTIONS(3803), 1, + ACTIONS(3616), 1, sym_variable_name, - STATE(1839), 1, + STATE(1448), 1, sym_string, - ACTIONS(3801), 2, + ACTIONS(3614), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3799), 8, + ACTIONS(3612), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90216,7 +90812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90239,6 +90835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -90253,52 +90850,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18055] = 21, + [18281] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3592), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3594), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(3596), 1, - sym__special_character, - ACTIONS(3598), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3600), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3604), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3606), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3608), 1, + ACTIONS(3279), 1, anon_sym_BQUOTE, - ACTIONS(3610), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3614), 1, - sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(3287), 1, sym__brace_start, - STATE(2279), 1, + ACTIONS(3666), 1, + sym__special_character, + ACTIONS(3668), 1, + sym_test_operator, + STATE(2227), 1, aux_sym__literal_repeat1, - ACTIONS(3612), 2, + ACTIONS(1974), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(723), 2, + STATE(730), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2162), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + ACTIONS(3664), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1800), 9, + STATE(1934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90308,7 +90904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 19, + ACTIONS(1972), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90328,23 +90924,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [18151] = 8, + anon_sym_LT_LT_LT, + [18377] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2983), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(3674), 1, sym_variable_name, - STATE(1336), 1, + STATE(1528), 1, sym_string, - ACTIONS(3807), 2, + ACTIONS(3672), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3805), 8, + ts_builtin_sym_end, + ACTIONS(3670), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90353,7 +90951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, + ACTIONS(1183), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90364,8 +90962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90376,6 +90972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -90390,51 +90987,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18221] = 21, + [18447] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3101), 1, + ACTIONS(3279), 1, + anon_sym_BQUOTE, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(3732), 1, + ACTIONS(3666), 1, sym__special_character, - ACTIONS(3736), 1, + ACTIONS(3668), 1, sym_test_operator, - ACTIONS(3811), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, + STATE(2227), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + ACTIONS(2080), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(705), 2, + STATE(731), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3664), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90444,7 +91041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 20, + ACTIONS(2078), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90464,24 +91061,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [18317] = 8, + anon_sym_LT_LT_LT, + [18543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(3680), 1, sym_variable_name, - STATE(1336), 1, + STATE(1829), 1, sym_string, - ACTIONS(3807), 2, + ACTIONS(3678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3805), 8, + ACTIONS(3676), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90490,7 +91087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1195), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90500,9 +91097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90513,6 +91109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -90527,98 +91124,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18387] = 21, + [18613] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, - aux_sym_number_token1, - ACTIONS(3018), 1, - aux_sym_number_token2, - ACTIONS(3020), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, - anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, - sym_test_operator, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(724), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1761), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18483] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(3680), 1, sym_variable_name, - STATE(1777), 1, + STATE(1829), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(3678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3813), 8, + ACTIONS(3676), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90664,51 +91186,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18553] = 21, - ACTIONS(3), 1, + [18683] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(2836), 1, + sym_word, + ACTIONS(2840), 1, + anon_sym_LT_LT_LT, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(2848), 1, + sym__special_character, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(2854), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2856), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(2860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, + ACTIONS(2868), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(2870), 1, + sym__bare_dollar, + ACTIONS(2872), 1, + sym__brace_start, + STATE(727), 1, + aux_sym_command_repeat2, + STATE(2486), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(724), 2, + STATE(2626), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, + STATE(2627), 1, + sym_herestring_redirect, + ACTIONS(2838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2852), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1761), 9, + ACTIONS(2866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1440), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2131), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90718,74 +91256,62 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, - anon_sym_SEMI, + ACTIONS(1442), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18649] = 22, + [18791] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3690), 1, + sym__special_character, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(3702), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(3732), 1, - sym__special_character, - ACTIONS(3734), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3736), 1, + ACTIONS(3708), 1, sym_test_operator, - STATE(2045), 1, + ACTIONS(3710), 1, + sym__brace_start, + STATE(2315), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + ACTIONS(1974), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, + STATE(722), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3682), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90795,7 +91321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 19, + ACTIONS(1972), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90805,6 +91331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90815,49 +91342,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [18747] = 20, + [18887] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(3690), 1, + sym__special_character, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3026), 1, + ACTIONS(3702), 1, + anon_sym_BQUOTE, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, + ACTIONS(3708), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(3710), 1, + sym__brace_start, + STATE(2315), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(2080), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(724), 2, + STATE(723), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, + ACTIONS(3682), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1761), 9, + STATE(1903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90867,7 +91396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 21, + ACTIONS(2078), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90877,6 +91406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90887,54 +91417,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [18841] = 21, + [18983] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3825), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3828), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(3831), 1, + ACTIONS(3690), 1, sym__special_character, - ACTIONS(3834), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(3837), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3840), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3843), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3846), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3849), 1, + ACTIONS(3702), 1, anon_sym_BQUOTE, - ACTIONS(3852), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3858), 1, + ACTIONS(3708), 1, sym_test_operator, - ACTIONS(3861), 1, + ACTIONS(3710), 1, sym__brace_start, - STATE(2279), 1, + STATE(2315), 1, aux_sym__literal_repeat1, - ACTIONS(3855), 2, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(723), 2, + STATE(728), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3819), 3, + ACTIONS(3682), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1800), 9, + STATE(1903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90944,7 +91471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 19, + ACTIONS(2082), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90954,6 +91481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90964,51 +91492,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [18937] = 21, + [19079] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(3049), 1, + ACTIONS(3690), 1, + sym__special_character, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(3052), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3055), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3058), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3702), 1, anon_sym_BQUOTE, - ACTIONS(3067), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3076), 1, - sym__brace_start, - ACTIONS(3867), 1, - sym__special_character, - ACTIONS(3870), 1, + ACTIONS(3708), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(3710), 1, + sym__brace_start, + STATE(2315), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3070), 2, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(724), 2, + STATE(728), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3864), 3, + ACTIONS(3682), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1761), 9, + STATE(1903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91018,7 +91546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2137), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91028,6 +91556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -91038,54 +91567,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [19175] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(819), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [19033] = 22, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(460), 29, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_done, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [19235] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(2971), 1, + ACTIONS(3720), 1, + sym__special_character, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(2974), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(2977), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(2980), 1, + ACTIONS(3728), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, + ACTIONS(3732), 1, anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, - sym__brace_start, - ACTIONS(3876), 1, - sym__special_character, - ACTIONS(3879), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3882), 1, + ACTIONS(3738), 1, sym_test_operator, - STATE(2045), 1, + ACTIONS(3740), 1, + sym__brace_start, + STATE(4265), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + STATE(4561), 1, + sym_concatenation, + ACTIONS(2381), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, + ACTIONS(3736), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3873), 3, + ACTIONS(3712), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(4486), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91095,7 +91677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 19, + ACTIONS(2379), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91105,6 +91687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -91115,90 +91698,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19131] = 4, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [19331] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(2243), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(3714), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3716), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3720), 1, + sym__special_character, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(3724), 1, + aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3728), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3732), 1, + anon_sym_BQUOTE, + ACTIONS(3734), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3740), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(3744), 1, + sym_test_operator, + STATE(4300), 1, + aux_sym__literal_repeat1, + STATE(4611), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3736), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3742), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4488), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [19427] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3746), 1, + sym_word, + ACTIONS(3752), 1, anon_sym_LT_LT_LT, + ACTIONS(3755), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3758), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3761), 1, + anon_sym_DOLLAR, + ACTIONS(3764), 1, + sym__special_character, + ACTIONS(3767), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3773), 1, + aux_sym_number_token1, + ACTIONS(3776), 1, + aux_sym_number_token2, + ACTIONS(3779), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3782), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3785), 1, anon_sym_BQUOTE, + ACTIONS(3788), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3794), 1, + sym_file_descriptor, + ACTIONS(3797), 1, + sym_test_operator, + ACTIONS(3800), 1, + sym__bare_dollar, + ACTIONS(3803), 1, + sym__brace_start, + STATE(727), 1, + aux_sym_command_repeat2, + STATE(2486), 1, + aux_sym__literal_repeat1, + STATE(2626), 1, + sym_concatenation, + STATE(2627), 1, + sym_herestring_redirect, + ACTIONS(3749), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3770), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, + ACTIONS(1519), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1524), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2131), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [19537] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3809), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3812), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3815), 1, anon_sym_DOLLAR, + ACTIONS(3818), 1, sym__special_character, + ACTIONS(3821), 1, + anon_sym_DQUOTE, + ACTIONS(3824), 1, aux_sym_number_token1, + ACTIONS(3827), 1, aux_sym_number_token2, + ACTIONS(3830), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3833), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - [19193] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 1, - anon_sym_DQUOTE, - ACTIONS(3889), 1, - sym_variable_name, - STATE(1503), 1, - sym_string, - ACTIONS(3887), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, + ACTIONS(3836), 1, + anon_sym_BQUOTE, + ACTIONS(3839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3845), 1, sym_test_operator, + ACTIONS(3848), 1, sym__brace_start, - ACTIONS(3885), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 36, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2146), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3842), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(728), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3806), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1903), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91208,9 +91920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91220,73 +91931,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + [19633] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2836), 1, + sym_word, + ACTIONS(2840), 1, + anon_sym_LT_LT_LT, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2848), 1, sym__special_character, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + ACTIONS(2854), 1, + aux_sym_number_token1, + ACTIONS(2856), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, + anon_sym_BQUOTE, + ACTIONS(2864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2868), 1, + sym_test_operator, + ACTIONS(2870), 1, + sym__bare_dollar, + ACTIONS(2872), 1, + sym__brace_start, + STATE(727), 1, + aux_sym_command_repeat2, + STATE(2486), 1, + aux_sym__literal_repeat1, + STATE(2626), 1, + sym_concatenation, + STATE(2627), 1, + sym_herestring_redirect, + ACTIONS(2838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2852), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(2866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1577), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2131), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1579), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [19741] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, aux_sym_number_token1, + ACTIONS(3273), 1, aux_sym_number_token2, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(3666), 1, + sym__special_character, + ACTIONS(3668), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(743), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3664), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [19263] = 24, + STATE(1934), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [19835] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, - anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(3893), 1, + ACTIONS(3666), 1, sym__special_character, - ACTIONS(3895), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3897), 1, - sym_variable_name, - ACTIONS(3899), 1, + ACTIONS(3668), 1, sym_test_operator, - STATE(1820), 1, + STATE(2227), 1, aux_sym__literal_repeat1, - STATE(6681), 1, - sym_subscript, - ACTIONS(1696), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3891), 3, + STATE(743), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3664), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(731), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(2289), 9, + STATE(1934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91296,14 +92138,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 16, + ACTIONS(2137), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91313,24 +92158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19365] = 8, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [19929] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3855), 1, sym_variable_name, - STATE(1724), 1, + STATE(1555), 1, sym_string, - ACTIONS(3903), 2, + ACTIONS(3853), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3901), 8, + ACTIONS(3851), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91339,7 +92185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1195), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91349,6 +92195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -91375,23 +92222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19435] = 8, + [19999] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(3855), 1, sym_variable_name, - STATE(1657), 1, + STATE(1555), 1, sym_string, - ACTIONS(3911), 2, + ACTIONS(3853), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3907), 8, + ACTIONS(3851), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91400,7 +92247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, + ACTIONS(1183), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91437,58 +92284,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19505] = 24, + [20069] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(3321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2111), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2114), 1, + ACTIONS(3325), 1, anon_sym_DOLLAR, - ACTIONS(2120), 1, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(2126), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(2129), 1, + ACTIONS(3335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2132), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2135), 1, - anon_sym_BQUOTE, - ACTIONS(2138), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2153), 1, + ACTIONS(3349), 1, sym__brace_start, - ACTIONS(3918), 1, + ACTIONS(3859), 1, sym__special_character, - ACTIONS(3921), 1, + ACTIONS(3861), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3924), 1, - sym_variable_name, - ACTIONS(3927), 1, + ACTIONS(3863), 1, sym_test_operator, - STATE(1820), 1, + STATE(2116), 1, aux_sym__literal_repeat1, - STATE(6681), 1, - sym_subscript, - ACTIONS(1705), 2, + ACTIONS(2345), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2141), 2, + ACTIONS(3343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3915), 3, + STATE(735), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3857), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(731), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(2289), 9, + STATE(1864), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91498,14 +92338,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 16, + ACTIONS(2343), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91515,32 +92358,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19607] = 8, + anon_sym_BQUOTE, + [20165] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(3321), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3325), 1, + anon_sym_DOLLAR, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, - sym_variable_name, - STATE(1657), 1, - sym_string, - ACTIONS(3911), 2, + ACTIONS(3331), 1, + aux_sym_number_token1, + ACTIONS(3333), 1, + aux_sym_number_token2, + ACTIONS(3335), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3341), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3349), 1, + sym__brace_start, + ACTIONS(3859), 1, + sym__special_character, + ACTIONS(3863), 1, + sym_test_operator, + ACTIONS(3865), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(2116), 1, + aux_sym__literal_repeat1, + ACTIONS(2291), 2, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3907), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3343), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(757), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3857), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1864), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2289), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91550,7 +92423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -91561,39 +92433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [19677] = 8, + [20261] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(1881), 1, anon_sym_DQUOTE, - ACTIONS(3803), 1, + ACTIONS(3871), 1, sym_variable_name, - STATE(1839), 1, + STATE(1362), 1, sym_string, - ACTIONS(3801), 2, + ACTIONS(3869), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3799), 8, + ACTIONS(3867), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91639,23 +92496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19747] = 8, + [20331] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(1881), 1, anon_sym_DQUOTE, - ACTIONS(3889), 1, + ACTIONS(3871), 1, sym_variable_name, - STATE(1503), 1, + STATE(1362), 1, sym_string, - ACTIONS(3887), 2, + ACTIONS(3869), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3885), 8, + ACTIONS(3867), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91701,23 +92558,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19817] = 8, + [20401] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, + aux_sym_number_token1, + ACTIONS(3273), 1, + aux_sym_number_token2, + ACTIONS(3275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3279), 1, + anon_sym_BQUOTE, + ACTIONS(3281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(3666), 1, + sym__special_character, + ACTIONS(3668), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(1974), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(740), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3664), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1934), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1972), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [20497] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(2253), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(2257), 1, sym_variable_name, - STATE(1777), 1, + STATE(1064), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(2255), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3813), 8, + ACTIONS(2251), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91726,19 +92659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, - anon_sym_SEMI, + ACTIONS(1195), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91763,53 +92695,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19887] = 22, + [20567] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(3279), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(3732), 1, + ACTIONS(3666), 1, sym__special_character, - ACTIONS(3736), 1, + ACTIONS(3668), 1, sym_test_operator, - ACTIONS(3930), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, + STATE(2227), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(721), 2, + STATE(743), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3664), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91819,7 +92749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 19, + ACTIONS(2082), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91839,20 +92769,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19985] = 6, + anon_sym_LT_LT_LT, + [20663] = 21, ACTIONS(3), 1, sym_comment, - STATE(1825), 1, + ACTIONS(3875), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3877), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3879), 1, + anon_sym_DOLLAR, + ACTIONS(3881), 1, + sym__special_character, + ACTIONS(3883), 1, + anon_sym_DQUOTE, + ACTIONS(3885), 1, + aux_sym_number_token1, + ACTIONS(3887), 1, + aux_sym_number_token2, + ACTIONS(3889), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3891), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3893), 1, + anon_sym_BQUOTE, + ACTIONS(3895), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3899), 1, + sym_test_operator, + ACTIONS(3901), 1, + sym__brace_start, + STATE(2279), 1, aux_sym__literal_repeat1, - STATE(2047), 1, + ACTIONS(3897), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(749), 2, sym_concatenation, - ACTIONS(2273), 5, + aux_sym_for_statement_repeat1, + ACTIONS(1974), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1667), 9, + ACTIONS(3873), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1871), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91862,7 +92825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 36, + ACTIONS(1972), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91882,41 +92845,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [20759] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3265), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3269), 1, anon_sym_DQUOTE, + ACTIONS(3271), 1, + aux_sym_number_token1, + ACTIONS(3273), 1, + aux_sym_number_token2, + ACTIONS(3275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3279), 1, + anon_sym_BQUOTE, + ACTIONS(3281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(3666), 1, + sym__special_character, + ACTIONS(3668), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(743), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3664), 3, sym_raw_string, sym_ansi_c_string, + sym_word, + STATE(1934), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [20855] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3503), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3506), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3509), 1, + anon_sym_DOLLAR, + ACTIONS(3515), 1, + anon_sym_DQUOTE, + ACTIONS(3518), 1, aux_sym_number_token1, + ACTIONS(3521), 1, aux_sym_number_token2, + ACTIONS(3524), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3527), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3530), 1, anon_sym_BQUOTE, + ACTIONS(3533), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3542), 1, + sym__brace_start, + ACTIONS(3906), 1, + sym__special_character, + ACTIONS(3909), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2146), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(743), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3903), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [20051] = 8, + STATE(1934), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [20951] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3013), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3916), 1, sym_variable_name, - STATE(1724), 1, + STATE(1547), 1, sym_string, - ACTIONS(3903), 2, + ACTIONS(3914), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3901), 8, + ACTIONS(3912), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91925,7 +93020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 35, + ACTIONS(1195), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91936,6 +93031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91946,7 +93043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -91961,30 +93057,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20121] = 6, + [21021] = 8, ACTIONS(3), 1, sym_comment, - STATE(1885), 1, - aux_sym__literal_repeat1, - STATE(2158), 1, - sym_concatenation, - ACTIONS(2277), 5, - sym_file_descriptor, + ACTIONS(3013), 1, + anon_sym_DQUOTE, + ACTIONS(3916), 1, sym_variable_name, + STATE(1547), 1, + sym_string, + ACTIONS(3914), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1674), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 36, + ACTIONS(3912), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91995,6 +93093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92004,12 +93104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -92021,58 +93119,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20187] = 24, + [21091] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(3920), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(3922), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(3924), 1, anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(3926), 1, + sym__special_character, + ACTIONS(3928), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(3930), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(3932), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(3934), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(3936), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(3938), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(3893), 1, - sym__special_character, - ACTIONS(3897), 1, - sym_variable_name, - ACTIONS(3899), 1, + ACTIONS(3944), 1, sym_test_operator, - ACTIONS(3932), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, + ACTIONS(3946), 1, + sym__brace_start, + STATE(4618), 1, aux_sym__literal_repeat1, - STATE(6681), 1, - sym_subscript, - ACTIONS(1585), 2, + STATE(5022), 1, + sym_concatenation, + ACTIONS(2381), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(3942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3891), 3, + ACTIONS(3918), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(728), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(2289), 9, + STATE(4534), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92082,14 +93172,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 16, + ACTIONS(2379), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92099,90 +93194,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20289] = 3, - ACTIONS(71), 1, + [21187] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(801), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3920), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3922), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3924), 1, + anon_sym_DOLLAR, + ACTIONS(3926), 1, + sym__special_character, + ACTIONS(3928), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3930), 1, + aux_sym_number_token1, + ACTIONS(3932), 1, + aux_sym_number_token2, + ACTIONS(3934), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3936), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3938), 1, anon_sym_BQUOTE, + ACTIONS(3940), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3946), 1, + sym__brace_start, + ACTIONS(3950), 1, + sym_test_operator, + STATE(4539), 1, + aux_sym__literal_repeat1, + STATE(4995), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(517), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(3948), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [20349] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3316), 1, - anon_sym_DQUOTE, - ACTIONS(3938), 1, - sym_variable_name, - STATE(1838), 1, + STATE(4366), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3936), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3934), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92193,6 +93258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92202,66 +93269,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [20418] = 21, + [21283] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3875), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3877), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3879), 1, anon_sym_DOLLAR, - ACTIONS(3948), 1, + ACTIONS(3881), 1, sym__special_character, - ACTIONS(3950), 1, + ACTIONS(3883), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3885), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3887), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3891), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(3893), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(3899), 1, sym_test_operator, - ACTIONS(3968), 1, + ACTIONS(3901), 1, sym__brace_start, - STATE(4368), 1, + STATE(2279), 1, aux_sym__literal_repeat1, - STATE(4735), 1, - sym_concatenation, - ACTIONS(3964), 2, + ACTIONS(3897), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2277), 3, + STATE(752), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2080), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3940), 3, + ACTIONS(3873), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4635), 9, + STATE(1871), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92271,7 +93324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 19, + ACTIONS(2078), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92291,33 +93344,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20513] = 8, + [21379] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, + ACTIONS(3875), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3877), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3879), 1, + anon_sym_DOLLAR, + ACTIONS(3881), 1, + sym__special_character, + ACTIONS(3883), 1, anon_sym_DQUOTE, - ACTIONS(3974), 1, - sym_variable_name, - STATE(1616), 1, - sym_string, - ACTIONS(3972), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, + ACTIONS(3885), 1, + aux_sym_number_token1, + ACTIONS(3887), 1, + aux_sym_number_token2, + ACTIONS(3889), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3891), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3893), 1, + anon_sym_BQUOTE, + ACTIONS(3895), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3899), 1, sym_test_operator, + ACTIONS(3901), 1, sym__brace_start, + STATE(2279), 1, + aux_sym__literal_repeat1, + ACTIONS(3897), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(754), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2084), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(3970), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 34, + aux_sym_heredoc_redirect_token1, + ACTIONS(3873), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1871), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92337,38 +93419,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [20582] = 8, + [21475] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(2253), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(2257), 1, sym_variable_name, - STATE(1912), 1, + STATE(1064), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(2255), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(2251), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92377,19 +93445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, - anon_sym_SEMI, + ACTIONS(1183), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92399,6 +93466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -92413,23 +93481,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20651] = 8, + [21545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3299), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(3956), 1, sym_variable_name, - STATE(1710), 1, + STATE(1838), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(3954), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(3952), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92438,7 +93506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 35, + ACTIONS(1195), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92448,8 +93516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92474,64 +93543,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20720] = 25, - ACTIONS(71), 1, + [21615] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - sym_word, - ACTIONS(3991), 1, + ACTIONS(3875), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3994), 1, + ACTIONS(3877), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3997), 1, + ACTIONS(3879), 1, anon_sym_DOLLAR, - ACTIONS(4000), 1, + ACTIONS(3881), 1, sym__special_character, - ACTIONS(4003), 1, + ACTIONS(3883), 1, anon_sym_DQUOTE, - ACTIONS(4009), 1, + ACTIONS(3885), 1, aux_sym_number_token1, - ACTIONS(4012), 1, + ACTIONS(3887), 1, aux_sym_number_token2, - ACTIONS(4015), 1, + ACTIONS(3889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4018), 1, + ACTIONS(3891), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4021), 1, + ACTIONS(3893), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4030), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4033), 1, - sym_variable_name, - ACTIONS(4036), 1, + ACTIONS(3899), 1, sym_test_operator, - ACTIONS(4039), 1, + ACTIONS(3901), 1, sym__brace_start, - STATE(2610), 1, + STATE(2279), 1, aux_sym__literal_repeat1, - STATE(6637), 1, - sym_subscript, - ACTIONS(4006), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4027), 2, + ACTIONS(3897), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 3, - sym_variable_assignment, + STATE(754), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1703), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2321), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2139), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3873), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1871), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92541,35 +93598,43 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1705), 10, - sym_file_descriptor, + ACTIONS(2137), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20823] = 8, + [21711] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 1, + ACTIONS(3299), 1, anon_sym_DQUOTE, - ACTIONS(3938), 1, + ACTIONS(3956), 1, sym_variable_name, STATE(1838), 1, sym_string, - ACTIONS(3936), 2, + ACTIONS(3954), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3934), 8, + ACTIONS(3952), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92578,7 +93643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 34, + ACTIONS(1183), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92589,6 +93654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92613,216 +93680,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20892] = 8, + [21781] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, - anon_sym_DQUOTE, - ACTIONS(4048), 1, - sym_variable_name, - STATE(2111), 1, - sym_string, - ACTIONS(4046), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(4042), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 34, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3961), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3964), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3967), 1, + anon_sym_DOLLAR, + ACTIONS(3970), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3973), 1, + anon_sym_DQUOTE, + ACTIONS(3976), 1, aux_sym_number_token1, + ACTIONS(3979), 1, aux_sym_number_token2, + ACTIONS(3982), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3985), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3988), 1, anon_sym_BQUOTE, + ACTIONS(3991), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [20961] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 1, - anon_sym_DQUOTE, - ACTIONS(4048), 1, - sym_variable_name, - STATE(2111), 1, - sym_string, - ACTIONS(4046), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, + ACTIONS(3997), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4000), 1, sym__brace_start, - ACTIONS(4042), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 34, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + STATE(2279), 1, + aux_sym__literal_repeat1, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [21030] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3598), 1, - anon_sym_DQUOTE, - ACTIONS(4054), 1, - sym_variable_name, - STATE(1986), 1, - sym_string, - ACTIONS(4052), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + STATE(754), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2146), 3, sym_file_descriptor, - sym_test_operator, - sym__brace_start, ts_builtin_sym_end, - ACTIONS(4050), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 34, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(3958), 3, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [21099] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3598), 1, - anon_sym_DQUOTE, - ACTIONS(4054), 1, - sym_variable_name, - STATE(1986), 1, + STATE(1871), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(4052), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4050), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92842,27 +93755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [21168] = 4, + [21877] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(2247), 1, - anon_sym_BQUOTE, - ACTIONS(2243), 22, + ACTIONS(2285), 1, + ts_builtin_sym_end, + ACTIONS(2281), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -92882,10 +93780,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, + ACTIONS(2279), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -92914,43 +93813,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [21229] = 8, + [21939] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(3321), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3325), 1, + anon_sym_DOLLAR, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, - sym_variable_name, - STATE(1273), 1, - sym_string, - ACTIONS(2267), 2, + ACTIONS(3331), 1, + aux_sym_number_token1, + ACTIONS(3333), 1, + aux_sym_number_token2, + ACTIONS(3335), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3339), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3349), 1, + sym__brace_start, + ACTIONS(3859), 1, + sym__special_character, + ACTIONS(3863), 1, + sym_test_operator, + ACTIONS(3865), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + STATE(2116), 1, + aux_sym__literal_repeat1, + ACTIONS(2291), 2, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2265), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 34, + aux_sym_heredoc_redirect_token1, + ACTIONS(3343), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(757), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3857), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1864), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2289), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92959,59 +93889,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + [22037] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3453), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3456), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3465), 1, + anon_sym_DQUOTE, + ACTIONS(3468), 1, aux_sym_number_token1, + ACTIONS(3471), 1, aux_sym_number_token2, + ACTIONS(3474), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3477), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3480), 1, anon_sym_BQUOTE, + ACTIONS(3483), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3495), 1, + sym__brace_start, + ACTIONS(4006), 1, + sym__special_character, + ACTIONS(4009), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4012), 1, + sym_test_operator, + STATE(2116), 1, + aux_sym__literal_repeat1, + ACTIONS(2569), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3486), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(757), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4003), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [21298] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - sym_variable_name, - STATE(1273), 1, + STATE(1864), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2265), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2567), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -93020,67 +93965,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + [22135] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2327), 1, + ts_builtin_sym_end, + ACTIONS(2281), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2279), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [21367] = 21, + [22197] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3728), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(3732), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(4058), 1, + ACTIONS(4017), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4019), 1, sym_test_operator, - STATE(2253), 1, + STATE(4265), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + STATE(4561), 1, + sym_concatenation, + ACTIONS(3736), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(2381), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4015), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(4416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93090,7 +94077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 19, + ACTIONS(2379), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93110,49 +94097,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21462] = 20, + anon_sym_LT_LT_LT, + [22293] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(2012), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(2026), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3654), 1, + ACTIONS(2030), 1, + anon_sym_BQUOTE, + ACTIONS(2032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(2042), 1, sym__brace_start, - ACTIONS(4058), 1, + ACTIONS(4023), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4025), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4027), 1, + sym_variable_name, + ACTIONS(4029), 1, sym_test_operator, - STATE(2253), 1, + STATE(1949), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(6689), 1, + sym_subscript, + ACTIONS(1595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(2034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(4021), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(763), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2349), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93162,17 +94159,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, - anon_sym_SEMI, + ACTIONS(1593), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93182,50 +94176,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [21555] = 20, + [22395] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3728), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3654), 1, + ACTIONS(3732), 1, + anon_sym_BQUOTE, + ACTIONS(3734), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(4058), 1, + ACTIONS(4017), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4033), 1, sym_test_operator, - STATE(2253), 1, + STATE(4300), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + STATE(4611), 1, + sym_concatenation, + ACTIONS(3736), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(2385), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4031), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(4454), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93235,7 +94230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, + ACTIONS(2383), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93255,52 +94250,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [22491] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(819), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [21648] = 21, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(460), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [22551] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(2193), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(2196), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(2199), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(2205), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(2208), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(2211), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(2214), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(2217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(2220), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(2223), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(2238), 1, sym__brace_start, - ACTIONS(4058), 1, + ACTIONS(4038), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4041), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4044), 1, + sym_variable_name, + ACTIONS(4047), 1, sym_test_operator, - STATE(2253), 1, + STATE(1949), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(6689), 1, + sym_subscript, + ACTIONS(1705), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(2226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(4035), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(763), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2349), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93310,7 +94369,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 19, + ACTIONS(1703), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [22653] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_DQUOTE, + ACTIONS(4054), 1, + sym_variable_name, + STATE(1869), 1, + sym_string, + ACTIONS(4052), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4050), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93330,23 +94432,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21743] = 8, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [22723] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3628), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4054), 1, sym_variable_name, - STATE(1710), 1, + STATE(1869), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(4052), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ts_builtin_sym_end, + ACTIONS(4050), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93355,7 +94474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1183), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93365,7 +94484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93377,6 +94495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -93391,64 +94510,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21812] = 25, - ACTIONS(71), 1, + [22793] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - sym_word, - ACTIONS(4064), 1, + ACTIONS(3321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, + ACTIONS(3325), 1, anon_sym_DOLLAR, - ACTIONS(4070), 1, - sym__special_character, - ACTIONS(4072), 1, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(3335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(3339), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4090), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4092), 1, - sym_variable_name, - ACTIONS(4094), 1, - sym_test_operator, - ACTIONS(4096), 1, + ACTIONS(3349), 1, sym__brace_start, - STATE(2610), 1, + ACTIONS(3859), 1, + sym__special_character, + ACTIONS(3863), 1, + sym_test_operator, + ACTIONS(4056), 1, + aux_sym__simple_variable_name_token1, + STATE(2116), 1, aux_sym__literal_repeat1, - STATE(6637), 1, - sym_subscript, - ACTIONS(4074), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4088), 2, + ACTIONS(2345), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(779), 3, - sym_variable_assignment, + STATE(756), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1583), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2321), 9, + aux_sym_unset_command_repeat1, + ACTIONS(3857), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1864), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93458,59 +94566,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1585), 10, - sym_file_descriptor, + ACTIONS(2343), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21915] = 20, + [22891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3524), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(4100), 1, - sym__special_character, - ACTIONS(4102), 1, - sym_test_operator, - STATE(4236), 1, + STATE(1872), 1, aux_sym__literal_repeat1, - STATE(4549), 1, + STATE(2118), 1, sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2381), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4098), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4495), 9, + STATE(1706), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93520,7 +94609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 21, + ACTIONS(2379), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93541,106 +94630,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [22008] = 4, - ACTIONS(71), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [22957] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - anon_sym_BQUOTE, - ACTIONS(2243), 22, - sym_file_descriptor, + ACTIONS(2983), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, sym_variable_name, + STATE(1528), 1, + sym_string, + ACTIONS(3672), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ts_builtin_sym_end, + ACTIONS(3670), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, + sym_word, + [23027] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1826), 1, + aux_sym__literal_repeat1, + STATE(2205), 1, + sym_concatenation, + ACTIONS(2385), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1713), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - [22069] = 20, + [23093] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(2012), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(2026), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3524), 1, + ACTIONS(2030), 1, + anon_sym_BQUOTE, + ACTIONS(2032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(2042), 1, sym__brace_start, - ACTIONS(4100), 1, + ACTIONS(4023), 1, sym__special_character, - ACTIONS(4106), 1, + ACTIONS(4027), 1, + sym_variable_name, + ACTIONS(4029), 1, sym_test_operator, - STATE(4265), 1, + ACTIONS(4058), 1, + aux_sym__simple_variable_name_token1, + STATE(1949), 1, aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(2277), 2, + STATE(6689), 1, + sym_subscript, + ACTIONS(1639), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(2034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4104), 3, + ACTIONS(4021), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4497), 9, + STATE(760), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2349), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93650,17 +94829,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, - anon_sym_SEMI, + ACTIONS(1637), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93670,53 +94846,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [22162] = 21, + [23195] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3746), 1, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3749), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR, - ACTIONS(3755), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3758), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3761), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3764), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3279), 1, anon_sym_BQUOTE, - ACTIONS(3773), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3782), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(4111), 1, + ACTIONS(3666), 1, sym__special_character, - ACTIONS(4114), 1, + ACTIONS(3668), 1, sym_test_operator, - STATE(2253), 1, + STATE(2227), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2080), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3776), 2, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, + STATE(742), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4108), 3, + ACTIONS(3664), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(1934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93726,7 +94900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 19, + ACTIONS(2078), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93746,50 +94920,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22257] = 21, + anon_sym_LT_LT_LT, + [23291] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4062), 1, + anon_sym_DQUOTE, + ACTIONS(4066), 1, + sym_variable_name, + STATE(1984), 1, + sym_string, + ACTIONS(4064), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(4060), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [23360] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3680), 1, + sym_variable_name, + STATE(1829), 1, + sym_string, + ACTIONS(3678), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3676), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(3950), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [23429] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3809), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3812), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3815), 1, + anon_sym_DOLLAR, + ACTIONS(3821), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3824), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3827), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3830), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3833), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(3836), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3839), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, + ACTIONS(3848), 1, sym__brace_start, - ACTIONS(4119), 1, + ACTIONS(4071), 1, sym__special_character, - ACTIONS(4121), 1, + ACTIONS(4074), 1, sym_test_operator, - STATE(4348), 1, + STATE(2315), 1, aux_sym__literal_repeat1, - STATE(4860), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2146), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(3842), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4117), 3, + STATE(774), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4068), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4568), 9, + STATE(2194), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93799,7 +95097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2144), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93809,7 +95107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93820,23 +95117,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22352] = 8, + [23524] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(3680), 1, sym_variable_name, - STATE(1912), 1, + STATE(1829), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(3678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(3676), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93855,7 +95152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93867,6 +95163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -93881,50 +95178,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22421] = 21, + [23593] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4079), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(4081), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(4083), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(4085), 1, + sym__special_character, + ACTIONS(4087), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(4093), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(4097), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(4099), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4119), 1, - sym__special_character, - ACTIONS(4125), 1, + ACTIONS(4103), 1, sym_test_operator, - STATE(4368), 1, + ACTIONS(4105), 1, + sym__brace_start, + STATE(4423), 1, aux_sym__literal_repeat1, - STATE(4735), 1, + STATE(4756), 1, sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(4101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4123), 3, + ACTIONS(2381), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4572), 9, + STATE(4562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93934,7 +95232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(2379), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93944,7 +95242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93955,50 +95252,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22516] = 21, + [23688] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(4129), 1, + ACTIONS(4109), 1, sym__special_character, - ACTIONS(4131), 1, + ACTIONS(4111), 1, sym_test_operator, - STATE(4236), 1, + STATE(2315), 1, aux_sym__literal_repeat1, - STATE(4549), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4127), 3, + STATE(774), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4107), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4625), 9, + STATE(2194), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94008,7 +95304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2082), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94028,51 +95324,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [22611] = 21, + anon_sym_BQUOTE, + [23781] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(4129), 1, + ACTIONS(4109), 1, sym__special_character, - ACTIONS(4135), 1, + ACTIONS(4111), 1, sym_test_operator, - STATE(4265), 1, + STATE(2315), 1, aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4133), 3, + STATE(774), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4107), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4627), 9, + STATE(2194), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94082,7 +95377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(2137), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94102,52 +95397,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [22706] = 21, + anon_sym_BQUOTE, + [23874] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(3948), 1, - sym__special_character, - ACTIONS(3950), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3728), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, - anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4115), 1, + sym__special_character, + ACTIONS(4117), 1, sym_test_operator, - STATE(4348), 1, + STATE(4265), 1, aux_sym__literal_repeat1, - STATE(4860), 1, + STATE(4561), 1, sym_concatenation, - ACTIONS(3964), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2273), 3, + ACTIONS(2381), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4137), 3, + ACTIONS(3736), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4113), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4637), 9, + STATE(4522), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94157,7 +95449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 19, + ACTIONS(2379), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94177,23 +95469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22801] = 8, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [23967] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4123), 1, sym_variable_name, - STATE(1694), 1, + STATE(2021), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(4121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, + ACTIONS(4119), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94238,84 +95532,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22870] = 8, + [24036] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - sym_variable_name, - STATE(1694), 1, - sym_string, - ACTIONS(4143), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4141), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 35, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(3724), 1, aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3728), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3734), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(4115), 1, + sym__special_character, + ACTIONS(4127), 1, + sym_test_operator, + STATE(4300), 1, + aux_sym__literal_repeat1, + STATE(4611), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3736), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4125), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4524), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [24129] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2327), 1, + anon_sym_BQUOTE, + ACTIONS(2281), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2279), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [24190] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4085), 1, + sym__special_character, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, aux_sym_number_token2, + ACTIONS(4093), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, anon_sym_BQUOTE, + ACTIONS(4099), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(4131), 1, + sym_test_operator, + STATE(4414), 1, + aux_sym__literal_repeat1, + STATE(4931), 1, + sym_concatenation, + ACTIONS(4101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2385), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4129), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [22939] = 8, + STATE(4567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [24285] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(4123), 1, sym_variable_name, - STATE(1777), 1, + STATE(2021), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(4121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3813), 8, + ACTIONS(4119), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94334,6 +95771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -94345,7 +95783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94360,24 +95797,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23008] = 8, + [24354] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4093), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, + anon_sym_BQUOTE, + ACTIONS(4099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(4135), 1, + sym__special_character, + ACTIONS(4137), 1, + sym_test_operator, + STATE(4423), 1, + aux_sym__literal_repeat1, + STATE(4756), 1, + sym_concatenation, + ACTIONS(2381), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4133), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4637), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [24449] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4139), 1, + sym_word, + ACTIONS(4142), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4145), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4148), 1, + anon_sym_DOLLAR, + ACTIONS(4151), 1, + sym__special_character, + ACTIONS(4154), 1, + anon_sym_DQUOTE, + ACTIONS(4160), 1, + aux_sym_number_token1, + ACTIONS(4163), 1, + aux_sym_number_token2, + ACTIONS(4166), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4169), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4172), 1, + anon_sym_BQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4181), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4184), 1, + sym_variable_name, + ACTIONS(4187), 1, + sym_test_operator, + ACTIONS(4190), 1, + sym__brace_start, + STATE(2837), 1, + aux_sym__literal_repeat1, + STATE(6662), 1, + sym_subscript, + ACTIONS(4157), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4178), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(786), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1703), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2442), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1705), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [24552] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(3974), 1, + ACTIONS(2341), 1, sym_variable_name, - STATE(1616), 1, + STATE(1268), 1, sym_string, - ACTIONS(3972), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3970), 8, + ACTIONS(2337), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94386,18 +95975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, - anon_sym_SEMI, + ACTIONS(1183), 34, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94407,6 +95995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94421,23 +96010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23077] = 8, + [24621] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(4197), 1, sym_variable_name, - STATE(1657), 1, + STATE(1938), 1, sym_string, - ACTIONS(3911), 2, + ACTIONS(4195), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3907), 8, + ACTIONS(4193), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94456,6 +96045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -94467,7 +96057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94482,23 +96071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23146] = 8, + [24690] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(4203), 1, sym_variable_name, - STATE(1657), 1, + STATE(1576), 1, sym_string, - ACTIONS(3911), 2, + ACTIONS(4201), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3907), 8, + ACTIONS(4199), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94507,7 +96096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 35, + ACTIONS(1195), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94517,6 +96106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -94528,7 +96118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94543,112 +96132,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23215] = 3, - ACTIONS(71), 1, + [24759] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 23, - sym_file_descriptor, + ACTIONS(2020), 1, + anon_sym_DQUOTE, + ACTIONS(4203), 1, sym_variable_name, + STATE(1576), 1, + sym_string, + ACTIONS(4201), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(4199), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [23274] = 25, + [24828] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4062), 1, + ACTIONS(4205), 1, sym_word, - ACTIONS(4064), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(4209), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, + ACTIONS(4211), 1, anon_sym_DOLLAR, - ACTIONS(4070), 1, + ACTIONS(4213), 1, sym__special_character, - ACTIONS(4072), 1, + ACTIONS(4215), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(4219), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(4221), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(4223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(4227), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4092), 1, + ACTIONS(4233), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4235), 1, sym_variable_name, - ACTIONS(4094), 1, + ACTIONS(4237), 1, sym_test_operator, - ACTIONS(4096), 1, + ACTIONS(4239), 1, sym__brace_start, - ACTIONS(4147), 1, - aux_sym__simple_variable_name_token1, - STATE(2610), 1, + STATE(2837), 1, aux_sym__literal_repeat1, - STATE(6637), 1, + STATE(6662), 1, sym_subscript, - ACTIONS(4074), 2, + ACTIONS(4217), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4088), 2, + ACTIONS(4231), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 3, + STATE(815), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1694), 7, + ACTIONS(1637), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -94656,7 +96250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2321), 9, + STATE(2442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94666,7 +96260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1696), 10, + ACTIONS(1639), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94677,23 +96271,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23377] = 8, + [24931] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(4197), 1, sym_variable_name, - STATE(1777), 1, + STATE(1938), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(4195), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3813), 8, + ACTIONS(4193), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94702,7 +96296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1183), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94712,6 +96306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -94723,7 +96318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94738,39 +96332,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23446] = 6, + [25000] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4151), 1, - sym__concat, - STATE(803), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(3883), 1, + anon_sym_DQUOTE, + ACTIONS(4245), 1, + sym_variable_name, + STATE(1989), 1, + sym_string, + ACTIONS(4243), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 42, + ts_builtin_sym_end, + ACTIONS(4241), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94779,12 +96378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94796,44 +96393,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23510] = 10, + [25069] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4163), 1, + ACTIONS(3883), 1, + anon_sym_DQUOTE, + ACTIONS(4245), 1, sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4159), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + STATE(1989), 1, + sym_string, + ACTIONS(4243), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 10, + ts_builtin_sym_end, + ACTIONS(4241), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94841,12 +96438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94858,40 +96454,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23582] = 7, + [25138] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4151), 1, - sym__concat, - ACTIONS(4166), 1, - anon_sym_LPAREN, - STATE(803), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(2626), 1, + anon_sym_DQUOTE, + ACTIONS(3855), 1, + sym_variable_name, + STATE(1555), 1, + sym_string, + ACTIONS(3853), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + ACTIONS(3851), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94900,12 +96499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94917,23 +96515,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23648] = 8, + [25207] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(3855), 1, sym_variable_name, - STATE(1912), 1, + STATE(1555), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(3853), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(3851), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94942,7 +96540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 34, + ACTIONS(1183), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94963,6 +96561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94977,44 +96576,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23716] = 13, + [25276] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, - sym_variable_name, - ACTIONS(4175), 1, + ACTIONS(4079), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4093), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, + anon_sym_BQUOTE, + ACTIONS(4099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(4135), 1, + sym__special_character, + ACTIONS(4249), 1, + sym_test_operator, + STATE(4414), 1, + aux_sym__literal_repeat1, + STATE(4931), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(6669), 1, - sym_subscript, - ACTIONS(4157), 2, + ACTIONS(4101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4247), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4641), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(4169), 2, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [25371] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4267), 1, + sym_variable_name, + STATE(6657), 1, + sym_subscript, + ACTIONS(4253), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(4171), 2, + ACTIONS(4255), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4173), 2, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4259), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(4159), 2, + STATE(4188), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2503), 4, + ACTIONS(4261), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4153), 27, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -95042,97 +96716,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23794] = 22, + [25450] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(4177), 1, - sym_word, - ACTIONS(4180), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4183), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4186), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym__special_character, - ACTIONS(4192), 1, - anon_sym_DQUOTE, - ACTIONS(4198), 1, - aux_sym_number_token1, - ACTIONS(4201), 1, - aux_sym_number_token2, - ACTIONS(4204), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4207), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4210), 1, + ACTIONS(2285), 1, anon_sym_BQUOTE, - ACTIONS(4213), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4219), 1, + ACTIONS(2281), 22, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(4222), 1, sym__brace_start, - STATE(2496), 1, - aux_sym__literal_repeat1, - ACTIONS(4195), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4216), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(786), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, + ACTIONS(2279), 28, + anon_sym_for, + anon_sym_select, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2283), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 13, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [23890] = 8, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [25511] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(2341), 1, sym_variable_name, - STATE(1912), 1, + STATE(1268), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(2337), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95142,17 +96800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym__, ACTIONS(1195), 34, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95162,6 +96819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -95176,48 +96834,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23958] = 20, + [25580] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3728), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3962), 1, + ACTIONS(3732), 1, + anon_sym_BQUOTE, + ACTIONS(3734), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(4227), 1, + ACTIONS(4272), 1, sym__special_character, - ACTIONS(4229), 1, + ACTIONS(4274), 1, sym_test_operator, - STATE(4348), 1, + STATE(4265), 1, aux_sym__literal_repeat1, - STATE(4860), 1, + STATE(4561), 1, sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2381), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(3736), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4225), 3, + ACTIONS(4270), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4650), 9, + STATE(4664), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95227,7 +96887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2379), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95247,51 +96907,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [24050] = 21, + anon_sym_LT_LT_LT, + [25675] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3728), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(3732), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(4233), 1, + ACTIONS(4272), 1, sym__special_character, - ACTIONS(4235), 1, + ACTIONS(4278), 1, sym_test_operator, - STATE(4348), 1, + STATE(4300), 1, aux_sym__literal_repeat1, - STATE(4860), 1, + STATE(4611), 1, sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2385), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(3736), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4231), 3, + ACTIONS(4276), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4876), 9, + STATE(4666), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95301,7 +96961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 19, + ACTIONS(2383), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95321,60 +96981,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24144] = 21, + anon_sym_LT_LT_LT, + [25770] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(2054), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3956), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, - anon_sym_BQUOTE, - ACTIONS(3962), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4233), 1, - sym__special_character, - ACTIONS(4239), 1, - sym_test_operator, - STATE(4368), 1, - aux_sym__literal_repeat1, - STATE(4735), 1, - sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4237), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4880), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(4284), 1, + sym_variable_name, + STATE(1685), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 19, + ACTIONS(4282), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4280), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95394,176 +97028,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24238] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(3952), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3954), 1, aux_sym_number_token2, - ACTIONS(3956), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3962), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4227), 1, - sym__special_character, - ACTIONS(4243), 1, - sym_test_operator, - STATE(4368), 1, - aux_sym__literal_repeat1, - STATE(4735), 1, - sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4241), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(4654), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [24330] = 8, - ACTIONS(3), 1, + [25839] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, - sym_variable_name, - STATE(2251), 1, - sym_string, - ACTIONS(4249), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(2281), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4245), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2279), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [24398] = 13, + [25898] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(4267), 1, sym_variable_name, - ACTIONS(4257), 1, + ACTIONS(4288), 1, aux_sym_heredoc_redirect_token1, - STATE(6669), 1, + STATE(6657), 1, sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4171), 2, + ACTIONS(4255), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4173), 2, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4259), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4253), 2, + ACTIONS(4286), 2, anon_sym_SEMI, anon_sym_AMP, - STATE(4159), 2, + STATE(4188), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4255), 4, + ACTIONS(2329), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4153), 27, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -95591,96 +97165,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24476] = 6, - ACTIONS(71), 1, + [25977] = 9, + ACTIONS(3), 1, sym_comment, - STATE(2496), 1, - aux_sym__literal_repeat1, - STATE(786), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2283), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2162), 25, - sym_file_descriptor, + ACTIONS(4267), 1, sym_variable_name, + STATE(6657), 1, + sym_subscript, + ACTIONS(4265), 2, sym_test_operator, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(4290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4188), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 17, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [24540] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1814), 1, - aux_sym__literal_repeat1, - STATE(798), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 33, + sym_word, + ACTIONS(4257), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95690,56 +97227,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24604] = 6, + [26048] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4151), 1, - sym__concat, - STATE(802), 1, - aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + ACTIONS(2054), 1, + anon_sym_DQUOTE, + ACTIONS(4284), 1, + sym_variable_name, + STATE(1685), 1, + sym_string, + ACTIONS(4282), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(237), 42, + ts_builtin_sym_end, + ACTIONS(4280), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95748,12 +97273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -95765,38 +97288,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24668] = 6, + [26117] = 21, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, - aux_sym__literal_repeat1, - STATE(798), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2287), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(3684), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3688), 1, + anon_sym_DOLLAR, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(3694), 1, + aux_sym_number_token1, + ACTIONS(3696), 1, + aux_sym_number_token2, + ACTIONS(3698), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3702), 1, + anon_sym_BQUOTE, + ACTIONS(3704), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(4109), 1, + sym__special_character, + ACTIONS(4111), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(1974), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(812), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4107), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2194), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 33, + ACTIONS(1972), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95806,69 +97362,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [26212] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3688), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3692), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3694), 1, aux_sym_number_token1, + ACTIONS(3696), 1, aux_sym_number_token2, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3702), 1, anon_sym_BQUOTE, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(4109), 1, + sym__special_character, + ACTIONS(4111), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(814), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4107), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [24732] = 21, + STATE(2194), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2078), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [26307] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(2583), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(2589), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(2592), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, + ACTIONS(3702), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2610), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(4262), 1, + ACTIONS(4109), 1, sym__special_character, - ACTIONS(4265), 1, + ACTIONS(4111), 1, sym_test_operator, - STATE(1814), 1, + STATE(2315), 1, aux_sym__literal_repeat1, - ACTIONS(2604), 2, + ACTIONS(1974), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(798), 2, + STATE(777), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(4259), 3, + ACTIONS(4107), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2287), 9, + STATE(2194), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95878,14 +97490,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 17, + ACTIONS(1972), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95895,44 +97510,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24826] = 8, + [26402] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4267), 1, sym_variable_name, - STATE(2251), 1, - sym_string, - ACTIONS(4249), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(4294), 1, + aux_sym_heredoc_redirect_token1, + STATE(6657), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4188), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4245), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 33, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 10, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95940,11 +97556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -95956,76 +97573,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24894] = 9, + [26475] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, - sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(4161), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4159), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3688), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3692), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3694), 1, aux_sym_number_token1, + ACTIONS(3696), 1, aux_sym_number_token2, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3702), 1, anon_sym_BQUOTE, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(4109), 1, + sym__special_character, + ACTIONS(4111), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [24964] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2496), 1, - aux_sym__literal_repeat1, - STATE(786), 2, + STATE(774), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2283), 9, + ACTIONS(4107), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2194), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96035,79 +97627,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [25028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4270), 1, - sym__concat, - STATE(804), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 42, + ACTIONS(2082), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96116,56 +97647,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [26570] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3688), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3692), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3694), 1, aux_sym_number_token1, + ACTIONS(3696), 1, aux_sym_number_token2, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3702), 1, anon_sym_BQUOTE, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(4109), 1, + sym__special_character, + ACTIONS(4111), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(778), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4107), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4272), 1, - sym__concat, - STATE(804), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 42, + STATE(2194), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2078), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96174,56 +97721,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [26665] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3688), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3692), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3694), 1, aux_sym_number_token1, + ACTIONS(3696), 1, aux_sym_number_token2, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3702), 1, anon_sym_BQUOTE, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(4109), 1, + sym__special_character, + ACTIONS(4111), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(774), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4107), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25156] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - aux_sym_concatenation_token1, - ACTIONS(4277), 1, - sym__concat, - STATE(804), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + STATE(2194), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96232,98 +97795,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [26760] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4205), 1, + sym_word, + ACTIONS(4207), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4209), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4211), 1, anon_sym_DOLLAR, + ACTIONS(4213), 1, sym__special_character, + ACTIONS(4215), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4219), 1, aux_sym_number_token1, + ACTIONS(4221), 1, aux_sym_number_token2, + ACTIONS(4223), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4225), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4227), 1, anon_sym_BQUOTE, + ACTIONS(4229), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [25220] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4151), 1, - sym__concat, - STATE(802), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, + ACTIONS(4235), 1, + sym_variable_name, + ACTIONS(4237), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4239), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4296), 1, + aux_sym__simple_variable_name_token1, + STATE(2837), 1, + aux_sym__literal_repeat1, + STATE(6662), 1, + sym_subscript, + ACTIONS(4217), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4231), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(786), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1593), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2442), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1595), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [25284] = 8, + [26863] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3205), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4302), 1, sym_variable_name, - STATE(1694), 1, + STATE(1888), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(4300), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, + ts_builtin_sym_end, + ACTIONS(4298), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96367,23 +97934,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25352] = 8, + [26932] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3205), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4302), 1, sym_variable_name, - STATE(1710), 1, + STATE(1888), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(4300), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ts_builtin_sym_end, + ACTIONS(4298), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96392,7 +97960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96427,23 +97995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25420] = 8, + [27001] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(4062), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4066), 1, sym_variable_name, - STATE(1710), 1, + STATE(1984), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(4064), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(4060), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96453,17 +98022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym__, ACTIONS(1183), 34, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96472,7 +98041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -96487,23 +98056,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25488] = 8, + [27070] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4123), 1, sym_variable_name, - STATE(1694), 1, + STATE(2021), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(4121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, + ACTIONS(4119), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96547,38 +98116,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25556] = 6, + [27138] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(4197), 1, + sym_variable_name, + STATE(1938), 1, + sym_string, + ACTIONS(4195), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 41, + ACTIONS(4193), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96587,12 +98161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -96604,34 +98176,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25619] = 3, + [27206] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(4197), 1, + sym_variable_name, + STATE(1938), 1, + sym_string, + ACTIONS(4195), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 43, + ACTIONS(4193), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96640,13 +98221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -96658,34 +98236,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25676] = 3, + [27274] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(4079), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4093), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, sym__brace_start, + ACTIONS(4306), 1, + sym__special_character, + ACTIONS(4308), 1, + sym_test_operator, + STATE(4423), 1, + aux_sym__literal_repeat1, + STATE(4756), 1, + sym_concatenation, + ACTIONS(2381), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 43, + ACTIONS(4101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4304), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4676), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96694,56 +98307,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [27366] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4083), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4087), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4089), 1, aux_sym_number_token1, + ACTIONS(4091), 1, aux_sym_number_token2, + ACTIONS(4093), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4099), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(4306), 1, + sym__special_character, + ACTIONS(4312), 1, + sym_test_operator, + STATE(4414), 1, + aux_sym__literal_repeat1, + STATE(4931), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4310), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4288), 1, - sym__concat, - STATE(819), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 41, + STATE(4680), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96752,60 +98379,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [25796] = 13, + [27458] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4320), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 1, + ACTIONS(4322), 1, sym_variable_name, - STATE(6702), 1, + STATE(6696), 1, sym_subscript, - ACTIONS(4157), 2, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4290), 2, + ACTIONS(4314), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(4292), 2, + ACTIONS(4316), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4294), 2, + ACTIONS(4318), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(4174), 2, + STATE(4326), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2503), 3, + ACTIONS(4261), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4161), 3, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4358), 3, + STATE(4278), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -96833,38 +98445,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25873] = 6, + [27536] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4301), 1, - sym__concat, - STATE(819), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(2020), 1, + anon_sym_DQUOTE, + ACTIONS(4203), 1, + sym_variable_name, + STATE(1576), 1, + sym_string, + ACTIONS(4201), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 41, + ACTIONS(4199), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96873,12 +98490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -96890,38 +98505,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25936] = 6, + [27604] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(815), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + ACTIONS(2020), 1, + anon_sym_DQUOTE, + ACTIONS(4203), 1, + sym_variable_name, + STATE(1576), 1, + sym_string, + ACTIONS(4201), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 41, + ACTIONS(4199), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96930,12 +98550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -96947,22 +98565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25999] = 6, + [27672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, + ACTIONS(4325), 1, aux_sym_concatenation_token1, - ACTIONS(4286), 1, + ACTIONS(4327), 1, sym__concat, - STATE(813), 1, + STATE(836), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1226), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 41, + ACTIONS(1219), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96973,6 +98591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -97004,22 +98623,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26062] = 6, + [27736] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, + ACTIONS(4325), 1, aux_sym_concatenation_token1, - ACTIONS(4286), 1, + ACTIONS(4327), 1, sym__concat, - STATE(815), 1, + ACTIONS(4329), 1, + anon_sym_LPAREN, + STATE(836), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(1226), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 41, + ACTIONS(1219), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97061,38 +98682,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26125] = 6, + [27802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 1, - aux_sym_concatenation_token1, - ACTIONS(4318), 1, - sym__concat, - STATE(819), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(4123), 1, + sym_variable_name, + STATE(2021), 1, + sym_string, + ACTIONS(4121), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, + ACTIONS(4119), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97101,12 +98727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97118,49 +98742,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26188] = 22, + [27870] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(4332), 1, sym_word, - ACTIONS(4323), 1, + ACTIONS(4334), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(4338), 1, anon_sym_DOLLAR, - ACTIONS(4329), 1, + ACTIONS(4340), 1, sym__special_character, - ACTIONS(4331), 1, + ACTIONS(4342), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(4346), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(4348), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(4350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(4352), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(4354), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(4356), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, + ACTIONS(4360), 1, sym_test_operator, - ACTIONS(4351), 1, + ACTIONS(4362), 1, sym__brace_start, - STATE(2630), 1, + STATE(2541), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, + ACTIONS(4344), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4347), 2, + ACTIONS(4358), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(829), 2, + STATE(843), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2156), 7, + ACTIONS(2078), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -97168,7 +98792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2382), 9, + STATE(2322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97178,8 +98802,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2158), 12, + ACTIONS(2080), 13, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -97191,159 +98816,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26283] = 22, - ACTIONS(71), 1, + [27966] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, - sym_word, - ACTIONS(4323), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, - anon_sym_DOLLAR, - ACTIONS(4329), 1, - sym__special_character, - ACTIONS(4331), 1, - anon_sym_DQUOTE, - ACTIONS(4335), 1, - aux_sym_number_token1, - ACTIONS(4337), 1, - aux_sym_number_token2, - ACTIONS(4339), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, - anon_sym_BQUOTE, - ACTIONS(4345), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, + ACTIONS(4322), 1, + sym_variable_name, + ACTIONS(4366), 1, + aux_sym_heredoc_redirect_token1, + STATE(6696), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4316), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4318), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4364), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4326), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2329), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(4265), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(4351), 1, sym__brace_start, - STATE(2630), 1, - aux_sym__literal_repeat1, - ACTIONS(4333), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4347), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(829), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2160), 7, - anon_sym_PIPE, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2162), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26378] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, anon_sym_DOLLAR, - ACTIONS(3049), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3052), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3055), 1, aux_sym_number_token2, - ACTIONS(3058), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3064), 1, anon_sym_BQUOTE, - ACTIONS(3067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3076), 1, - sym__brace_start, - ACTIONS(4356), 1, - sym__special_character, - ACTIONS(4359), 1, - sym_test_operator, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3070), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4353), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2413), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [26471] = 6, + [28044] = 6, ACTIONS(71), 1, sym_comment, - STATE(2458), 1, + STATE(2541), 1, aux_sym__literal_repeat1, - STATE(2661), 1, + STATE(844), 2, sym_concatenation, - STATE(2228), 9, + aux_sym_for_statement_repeat1, + STATE(2322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97353,7 +98899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 13, + ACTIONS(2082), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -97367,7 +98913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2273), 25, + ACTIONS(2084), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -97393,32 +98939,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [26534] = 3, + [28108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(4370), 1, + anon_sym_DQUOTE, + ACTIONS(4374), 1, + sym_variable_name, + STATE(2284), 1, + sym_string, + ACTIONS(4372), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 43, - anon_sym_SEMI, + ACTIONS(4368), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -97432,10 +98987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97447,32 +98999,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26591] = 3, + [28176] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(4370), 1, + anon_sym_DQUOTE, + ACTIONS(4374), 1, + sym_variable_name, + STATE(2284), 1, + sym_string, + ACTIONS(4372), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 43, - anon_sym_SEMI, + ACTIONS(4368), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -97486,10 +99047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97501,22 +99059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26648] = 6, + [28244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, + ACTIONS(4325), 1, aux_sym_concatenation_token1, - ACTIONS(4286), 1, + ACTIONS(4376), 1, sym__concat, - STATE(813), 1, + STATE(837), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(1207), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97527,6 +99085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -97558,69 +99117,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26711] = 21, + [28308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3016), 1, - aux_sym_number_token1, - ACTIONS(3018), 1, - aux_sym_number_token2, - ACTIONS(3020), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, - anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(4364), 1, - sym__special_character, - ACTIONS(4366), 1, - sym_test_operator, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(4325), 1, + aux_sym_concatenation_token1, + ACTIONS(4378), 1, + sym__concat, + STATE(837), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4362), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2413), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 17, + ACTIONS(1213), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97630,22 +99159,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26804] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [28372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, + ACTIONS(4380), 1, aux_sym_concatenation_token1, - ACTIONS(4286), 1, + ACTIONS(4383), 1, sym__concat, - STATE(813), 1, + STATE(837), 1, aux_sym_concatenation_repeat1, - ACTIONS(4370), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 41, + ACTIONS(1235), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97656,6 +99201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -97687,49 +99233,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26867] = 22, - ACTIONS(71), 1, + [28436] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 1, - sym_word, - ACTIONS(4375), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4378), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4381), 1, - anon_sym_DOLLAR, - ACTIONS(4384), 1, - sym__special_character, - ACTIONS(4387), 1, - anon_sym_DQUOTE, - ACTIONS(4393), 1, - aux_sym_number_token1, - ACTIONS(4396), 1, - aux_sym_number_token2, - ACTIONS(4399), 1, + ACTIONS(4325), 1, + aux_sym_concatenation_token1, + ACTIONS(4327), 1, + sym__concat, + STATE(835), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(4402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4405), 1, anon_sym_BQUOTE, - ACTIONS(4408), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4414), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [28500] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4332), 1, + sym_word, + ACTIONS(4334), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4336), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4338), 1, + anon_sym_DOLLAR, + ACTIONS(4340), 1, + sym__special_character, + ACTIONS(4342), 1, + anon_sym_DQUOTE, + ACTIONS(4346), 1, + aux_sym_number_token1, + ACTIONS(4348), 1, + aux_sym_number_token2, + ACTIONS(4350), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4352), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4354), 1, + anon_sym_BQUOTE, + ACTIONS(4356), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4360), 1, sym_test_operator, - ACTIONS(4417), 1, + ACTIONS(4362), 1, sym__brace_start, - STATE(2630), 1, + STATE(2541), 1, aux_sym__literal_repeat1, - ACTIONS(4390), 2, + ACTIONS(4344), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4411), 2, + ACTIONS(4358), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(829), 2, + STATE(832), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, + ACTIONS(1972), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -97737,7 +99341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2382), 9, + STATE(2322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97747,8 +99351,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 12, + ACTIONS(1974), 13, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -97760,39 +99365,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26962] = 7, + [28596] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_LPAREN, - ACTIONS(4423), 1, - aux_sym_concatenation_token1, - ACTIONS(4425), 1, - sym__concat, - STATE(833), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(4294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4322), 1, + sym_variable_name, + STATE(6696), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4326), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_LT_LT_DASH, + ACTIONS(4251), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97800,7 +99410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -97818,38 +99427,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27027] = 6, + [28668] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - aux_sym_concatenation_token1, - ACTIONS(4427), 1, - sym__concat, - STATE(835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(4079), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4093), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, + anon_sym_BQUOTE, + ACTIONS(4099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, sym__brace_start, + ACTIONS(4388), 1, + sym__special_character, + ACTIONS(4390), 1, + sym_test_operator, + STATE(4423), 1, + aux_sym__literal_repeat1, + STATE(4756), 1, + sym_concatenation, + ACTIONS(2381), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 41, + ACTIONS(4101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4386), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4888), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97858,51 +99500,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [28762] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4087), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4089), 1, aux_sym_number_token1, + ACTIONS(4091), 1, aux_sym_number_token2, + ACTIONS(4093), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, anon_sym_BQUOTE, + ACTIONS(4099), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(4388), 1, + sym__special_character, + ACTIONS(4394), 1, + sym_test_operator, + STATE(4414), 1, + aux_sym__literal_repeat1, + STATE(4931), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4392), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [27090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 43, + STATE(4892), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97911,60 +99573,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + [28856] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2541), 1, + aux_sym__literal_repeat1, + STATE(844), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2322), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [27147] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - aux_sym_concatenation_token1, - ACTIONS(4429), 1, - sym__concat, - STATE(835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(2139), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 41, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -97972,106 +99623,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [27210] = 3, - ACTIONS(3), 1, + [28920] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4396), 1, + sym_word, + ACTIONS(4399), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4402), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4405), 1, + anon_sym_DOLLAR, + ACTIONS(4408), 1, + sym__special_character, + ACTIONS(4411), 1, + anon_sym_DQUOTE, + ACTIONS(4417), 1, + aux_sym_number_token1, + ACTIONS(4420), 1, + aux_sym_number_token2, + ACTIONS(4423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4429), 1, + anon_sym_BQUOTE, + ACTIONS(4432), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4438), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4441), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 43, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2541), 1, + aux_sym__literal_repeat1, + ACTIONS(4414), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4435), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(844), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2322), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2146), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [27267] = 6, + [29016] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - aux_sym_concatenation_token1, - ACTIONS(4434), 1, - sym__concat, - STATE(835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + STATE(1875), 1, + aux_sym__literal_repeat1, + STATE(847), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2084), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, - anon_sym_SEMI, + STATE(2347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98097,34 +99763,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27330] = 3, + [29080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + STATE(1875), 1, + aux_sym__literal_repeat1, + STATE(847), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 43, - anon_sym_SEMI, + STATE(2347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98136,7 +99807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98151,92 +99821,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27387] = 3, + [29144] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 43, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(2649), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2652), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2661), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2664), 1, aux_sym_number_token1, + ACTIONS(2667), 1, aux_sym_number_token2, + ACTIONS(2670), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2673), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2676), 1, anon_sym_BQUOTE, + ACTIONS(2679), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2688), 1, + sym__brace_start, + ACTIONS(4447), 1, + sym__special_character, + ACTIONS(4450), 1, + sym_test_operator, + STATE(1875), 1, + aux_sym__literal_repeat1, + ACTIONS(2682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [27444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(815), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + STATE(847), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2146), 3, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 41, - anon_sym_SEMI, + ACTIONS(4444), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98246,6 +99894,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [29238] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 1, + sym_variable_name, + STATE(6696), 1, + sym_subscript, + ACTIONS(4265), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4326), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 17, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -98262,38 +99933,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(815), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 41, + ACTIONS(4257), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98302,55 +99955,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [29308] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2620), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2622), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2626), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2628), 1, aux_sym_number_token1, + ACTIONS(2630), 1, aux_sym_number_token2, + ACTIONS(2632), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2636), 1, anon_sym_BQUOTE, + ACTIONS(2638), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(4455), 1, + sym__special_character, + ACTIONS(4457), 1, + sym_test_operator, + STATE(1875), 1, + aux_sym__literal_repeat1, + ACTIONS(2640), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [27570] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - aux_sym_concatenation_token1, - ACTIONS(4425), 1, - sym__concat, - STATE(831), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + STATE(845), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1974), 3, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, - anon_sym_SEMI, + ACTIONS(4453), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1972), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98360,33 +100028,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [27633] = 3, + [29402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4325), 1, + aux_sym_concatenation_token1, + ACTIONS(4327), 1, sym__concat, + STATE(835), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ACTIONS(237), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98415,7 +100072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98430,110 +100086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27690] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2634), 1, - aux_sym__literal_repeat1, - STATE(850), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2335), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [27753] = 22, + [29466] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(2618), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(2620), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(2632), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(2636), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(4447), 1, + ACTIONS(4455), 1, sym__special_character, - ACTIONS(4449), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4451), 1, + ACTIONS(4457), 1, sym_test_operator, - STATE(2045), 1, + STATE(1875), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(2640), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(851), 2, + STATE(846), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4445), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2080), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(4453), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2393), 9, + STATE(2347), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98543,7 +100141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 16, + ACTIONS(2078), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -98560,47 +100158,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27848] = 6, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [29560] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2634), 1, - aux_sym__literal_repeat1, - STATE(850), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2335), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2162), 25, + ACTIONS(1282), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 43, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -98608,23 +100198,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27911] = 6, + sym_word, + [29617] = 22, ACTIONS(71), 1, sym_comment, - STATE(2544), 1, + ACTIONS(4459), 1, + sym_word, + ACTIONS(4461), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4463), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4465), 1, + anon_sym_DOLLAR, + ACTIONS(4467), 1, + sym__special_character, + ACTIONS(4469), 1, + anon_sym_DQUOTE, + ACTIONS(4473), 1, + aux_sym_number_token1, + ACTIONS(4475), 1, + aux_sym_number_token2, + ACTIONS(4477), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4479), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4481), 1, + anon_sym_BQUOTE, + ACTIONS(4483), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4487), 1, + sym_test_operator, + ACTIONS(4489), 1, + sym__brace_start, + STATE(2804), 1, aux_sym__literal_repeat1, - STATE(2677), 1, + ACTIONS(4471), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4485), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(916), 2, sym_concatenation, - STATE(2250), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2078), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2418), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98634,80 +100273,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2277), 25, + ACTIONS(2080), 12, sym_file_descriptor, sym_variable_name, - sym_test_operator, - sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [27974] = 10, + [29712] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, + ACTIONS(4261), 1, + anon_sym_RPAREN, + ACTIONS(4320), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 1, + ACTIONS(4495), 1, sym_variable_name, - STATE(6702), 1, + STATE(6667), 1, sym_subscript, - ACTIONS(4157), 2, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4174), 2, + ACTIONS(4491), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4472), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 9, + ACTIONS(4314), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -98735,17 +100350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28045] = 3, + [29789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 43, + ACTIONS(1308), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98789,34 +100404,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28102] = 3, + [29846] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4498), 1, + ts_builtin_sym_end, + ACTIONS(4504), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4506), 1, + sym_variable_name, + STATE(6700), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4502), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4343), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ACTIONS(4500), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98824,11 +100451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98843,22 +100468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28159] = 6, + [29923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - aux_sym_concatenation_token1, - ACTIONS(4425), 1, - sym__concat, - STATE(831), 1, - aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 41, + ACTIONS(1252), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98870,6 +100490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -98886,6 +100507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98900,49 +100522,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28222] = 22, + [29980] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4509), 1, sym_word, - ACTIONS(4456), 1, + ACTIONS(4511), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4459), 1, + ACTIONS(4513), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4462), 1, + ACTIONS(4515), 1, anon_sym_DOLLAR, - ACTIONS(4465), 1, + ACTIONS(4517), 1, sym__special_character, - ACTIONS(4468), 1, + ACTIONS(4519), 1, anon_sym_DQUOTE, - ACTIONS(4474), 1, + ACTIONS(4523), 1, aux_sym_number_token1, - ACTIONS(4477), 1, + ACTIONS(4525), 1, aux_sym_number_token2, - ACTIONS(4480), 1, + ACTIONS(4527), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4483), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4486), 1, + ACTIONS(4531), 1, anon_sym_BQUOTE, - ACTIONS(4489), 1, + ACTIONS(4533), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4495), 1, + ACTIONS(4537), 1, sym_test_operator, - ACTIONS(4498), 1, + ACTIONS(4539), 1, sym__brace_start, - STATE(2634), 1, + STATE(2793), 1, aux_sym__literal_repeat1, - ACTIONS(4471), 2, + ACTIONS(4521), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4492), 2, + ACTIONS(4535), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(850), 2, + STATE(885), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, + ACTIONS(1972), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -98950,7 +100572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2335), 9, + STATE(2411), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98960,83 +100582,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 12, + ACTIONS(1974), 12, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [28317] = 22, + [30075] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(4495), 1, + sym_variable_name, + STATE(6667), 1, + sym_subscript, + ACTIONS(4265), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4472), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 17, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, anon_sym_DOLLAR, - ACTIONS(2971), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(2974), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2977), 1, aux_sym_number_token2, - ACTIONS(2980), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, anon_sym_BQUOTE, - ACTIONS(2989), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, - sym__brace_start, - ACTIONS(4504), 1, - sym__special_character, - ACTIONS(4507), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4510), 1, - sym_test_operator, - STATE(2045), 1, - aux_sym__literal_repeat1, - ACTIONS(2456), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(851), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4501), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2393), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2454), 16, + ACTIONS(4257), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99046,17 +100655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [28412] = 3, + [30144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 43, + ACTIONS(1252), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99100,17 +100709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28469] = 3, + [30201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 43, + ACTIONS(1260), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99154,69 +100763,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28526] = 21, + [30258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3016), 1, - aux_sym_number_token1, - ACTIONS(3018), 1, - aux_sym_number_token2, - ACTIONS(3020), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, - anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(4364), 1, - sym__special_character, - ACTIONS(4366), 1, - sym_test_operator, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(1237), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4362), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2413), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 17, + ACTIONS(1235), 43, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99226,53 +100800,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [28619] = 13, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [30315] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(4506), 1, sym_variable_name, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - STATE(6702), 1, + STATE(6700), 1, sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4292), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4294), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4513), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4174), 2, + ACTIONS(4265), 2, + sym_test_operator, + sym__brace_start, + STATE(4343), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4290), 3, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4255), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4511), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(4251), 17, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -99290,38 +100857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28696] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(813), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 41, + ACTIONS(4257), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99330,34 +100877,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [28759] = 3, + [30384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 43, + ACTIONS(1256), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99401,7 +100931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28816] = 3, + [30441] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1314), 6, @@ -99455,17 +100985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28873] = 3, + [30498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, + ACTIONS(1264), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99509,77 +101039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28930] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 1, - sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(4161), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4174), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [28999] = 3, + [30555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(4541), 1, + aux_sym_concatenation_token1, + ACTIONS(4543), 1, sym__concat, + STATE(878), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1226), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 43, + ACTIONS(1219), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99591,7 +101066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -99608,7 +101082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99623,7 +101096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29056] = 3, + [30618] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1270), 6, @@ -99677,111 +101150,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29113] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, - anon_sym_DOLLAR, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3091), 1, - aux_sym_number_token1, - ACTIONS(3093), 1, - aux_sym_number_token2, - ACTIONS(3095), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, - anon_sym_BQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(4447), 1, - sym__special_character, - ACTIONS(4451), 1, - sym_test_operator, - ACTIONS(4521), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, - aux_sym__literal_repeat1, - ACTIONS(2283), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(843), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4445), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2393), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2281), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [29208] = 6, + [30675] = 3, ACTIONS(3), 1, sym_comment, - STATE(1825), 1, - aux_sym__literal_repeat1, - STATE(2047), 1, - sym_concatenation, - ACTIONS(2273), 5, + ACTIONS(1274), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(2290), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 33, + ACTIONS(1272), 43, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99793,6 +101189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99807,22 +101204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29271] = 6, + [30732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - aux_sym_concatenation_token1, - ACTIONS(4425), 1, - sym__concat, - STATE(833), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + ACTIONS(1276), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99834,6 +101226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -99850,6 +101243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99864,20 +101258,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29334] = 6, - ACTIONS(3), 1, + [30789] = 22, + ACTIONS(71), 1, sym_comment, - STATE(1885), 1, - aux_sym__literal_repeat1, - STATE(2158), 1, - sym_concatenation, - ACTIONS(2277), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4509), 1, + sym_word, + ACTIONS(4511), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4513), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4515), 1, + anon_sym_DOLLAR, + ACTIONS(4517), 1, + sym__special_character, + ACTIONS(4519), 1, + anon_sym_DQUOTE, + ACTIONS(4523), 1, + aux_sym_number_token1, + ACTIONS(4525), 1, + aux_sym_number_token2, + ACTIONS(4527), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4529), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4531), 1, + anon_sym_BQUOTE, + ACTIONS(4533), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4537), 1, sym_test_operator, + ACTIONS(4539), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2293), 9, + STATE(2793), 1, + aux_sym__literal_repeat1, + ACTIONS(4521), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4535), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(886), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2078), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2411), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99887,51 +101318,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 33, + ACTIONS(2080), 12, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [29397] = 3, + [30884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 43, + ACTIONS(1284), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99975,45 +101385,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29454] = 13, + [30941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4533), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4541), 1, + aux_sym_concatenation_token1, + ACTIONS(4545), 1, + sym__concat, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4525), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 41, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100021,6 +101424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -100038,113 +101442,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29530] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2611), 1, - aux_sym__literal_repeat1, - STATE(2833), 1, - sym_concatenation, - STATE(2419), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2277), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [29592] = 22, + [31004] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4538), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4564), 1, + ACTIONS(338), 1, sym_test_operator, - ACTIONS(4566), 1, + ACTIONS(340), 1, sym__brace_start, - STATE(2975), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2323), 1, + sym_word, + ACTIONS(4547), 1, + sym__special_character, + ACTIONS(4549), 1, + sym_variable_name, + STATE(541), 1, + sym_command_name, + STATE(1300), 1, aux_sym__literal_repeat1, - ACTIONS(4548), 2, + STATE(1437), 1, + sym_concatenation, + STATE(6628), 1, + sym_subscript, + ACTIONS(318), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4562), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(872), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2156), 7, - anon_sym_PIPE, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2540), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -100154,69 +101523,78 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2158), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [29686] = 22, + [31115] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4538), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(406), 1, anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4564), 1, + ACTIONS(432), 1, sym_test_operator, - ACTIONS(4566), 1, + ACTIONS(434), 1, sym__brace_start, - STATE(2975), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2529), 1, + sym_word, + ACTIONS(4549), 1, + sym_variable_name, + ACTIONS(4551), 1, + sym__special_character, + STATE(523), 1, + sym_command_name, + STATE(1026), 1, aux_sym__literal_repeat1, - ACTIONS(4548), 2, + STATE(1141), 1, + sym_concatenation, + STATE(6628), 1, + sym_subscript, + ACTIONS(412), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4562), 2, + ACTIONS(426), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(872), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2160), 7, - anon_sym_PIPE, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2540), 9, + STATE(827), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -100226,126 +101604,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2162), 11, + [31226] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 1, + aux_sym_concatenation_token1, + ACTIONS(4559), 1, + sym__concat, + STATE(894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4555), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4553), 41, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [29780] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4568), 1, - sym_word, - ACTIONS(4571), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4574), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4577), 1, anon_sym_DOLLAR, - ACTIONS(4580), 1, sym__special_character, - ACTIONS(4583), 1, anon_sym_DQUOTE, - ACTIONS(4589), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4592), 1, aux_sym_number_token2, - ACTIONS(4595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4598), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4601), 1, anon_sym_BQUOTE, - ACTIONS(4604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4610), 1, - sym_test_operator, - ACTIONS(4613), 1, - sym__brace_start, - STATE(2975), 1, - aux_sym__literal_repeat1, - ACTIONS(4586), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4607), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(872), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2540), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [29874] = 10, + sym_word, + [31289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4436), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4557), 1, + aux_sym_concatenation_token1, + ACTIONS(4559), 1, + sym__concat, + STATE(911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4563), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(4561), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100353,6 +101700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -100370,41 +101718,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29944] = 8, + [31352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, - anon_sym_DQUOTE, - ACTIONS(4625), 1, - sym_variable_name, - STATE(2404), 1, - sym_string, - ACTIONS(4623), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(4541), 1, + aux_sym_concatenation_token1, + ACTIONS(4565), 1, + sym__concat, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4619), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 41, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100416,7 +101761,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -100428,41 +101775,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30010] = 8, + [31415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, - anon_sym_DQUOTE, - ACTIONS(4625), 1, - sym_variable_name, - STATE(2404), 1, - sym_string, - ACTIONS(4623), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(4541), 1, + aux_sym_concatenation_token1, + ACTIONS(4543), 1, + sym__concat, + ACTIONS(4567), 1, + anon_sym_LPAREN, + STATE(878), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1226), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4619), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 40, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100474,7 +101819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -100486,110 +101833,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30076] = 23, - ACTIONS(71), 1, + [31480] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 1, - sym_word, - ACTIONS(4629), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4633), 1, - anon_sym_DOLLAR, - ACTIONS(4635), 1, - sym__special_character, - ACTIONS(4637), 1, - anon_sym_DQUOTE, - ACTIONS(4641), 1, - aux_sym_number_token1, - ACTIONS(4643), 1, - aux_sym_number_token2, - ACTIONS(4645), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, - anon_sym_BQUOTE, - ACTIONS(4651), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4655), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4657), 1, - sym_test_operator, - ACTIONS(4659), 1, - sym__brace_start, - STATE(2831), 1, - aux_sym__literal_repeat1, - ACTIONS(4639), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(885), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2281), 7, + ACTIONS(2329), 1, + anon_sym_RPAREN, + ACTIONS(4366), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4495), 1, + sym_variable_name, + STATE(6667), 1, + sym_subscript, + ACTIONS(4257), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2513), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2283), 10, - sym_file_descriptor, + anon_sym_PIPE_AMP, + ACTIONS(4491), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(4493), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - [30172] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(883), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + STATE(4472), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(4364), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100597,7 +101880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -100615,22 +101897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30234] = 6, + [31557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 40, + ACTIONS(1248), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100641,6 +101918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100657,6 +101936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100671,22 +101951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30296] = 6, + [31614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4570), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4573), 1, sym__concat, - STATE(910), 1, + STATE(882), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 40, + ACTIONS(1235), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100697,6 +101977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100727,77 +102008,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30358] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1039), 1, + [31677] = 30, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1067), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(77), 1, sym_test_operator, - ACTIONS(1069), 1, + ACTIONS(79), 1, sym__brace_start, ACTIONS(1352), 1, anon_sym_LT_LT_LT, ACTIONS(1354), 1, sym_file_descriptor, - ACTIONS(2825), 1, + ACTIONS(2523), 1, sym_word, - ACTIONS(4669), 1, - sym__special_character, - ACTIONS(4671), 1, + ACTIONS(4549), 1, sym_variable_name, - STATE(619), 1, + ACTIONS(4576), 1, + sym__special_character, + STATE(530), 1, sym_command_name, - STATE(2307), 1, + STATE(1216), 1, aux_sym__literal_repeat1, - STATE(2412), 1, + STATE(1499), 1, sym_concatenation, - STATE(6656), 1, + STATE(6628), 1, sym_subscript, - ACTIONS(1049), 2, + ACTIONS(55), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1063), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1350), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3116), 2, + STATE(2989), 2, sym_variable_assignment, aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, ACTIONS(1346), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, ACTIONS(1344), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1879), 9, + STATE(986), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -100807,22 +102089,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [30468] = 6, + [31788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 40, + ACTIONS(1288), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100833,6 +102110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100849,6 +102128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100863,78 +102143,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30530] = 6, - ACTIONS(3), 1, + [31845] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(910), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, - sym_file_descriptor, + ACTIONS(4509), 1, + sym_word, + ACTIONS(4511), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4513), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4515), 1, + anon_sym_DOLLAR, + ACTIONS(4517), 1, + sym__special_character, + ACTIONS(4519), 1, + anon_sym_DQUOTE, + ACTIONS(4523), 1, + aux_sym_number_token1, + ACTIONS(4525), 1, + aux_sym_number_token2, + ACTIONS(4527), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4529), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4531), 1, + anon_sym_BQUOTE, + ACTIONS(4533), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4537), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4539), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2793), 1, + aux_sym__literal_repeat1, + ACTIONS(4521), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4535), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(888), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2082), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2411), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2084), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [31940] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4509), 1, + sym_word, + ACTIONS(4511), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4513), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4515), 1, anon_sym_DOLLAR, + ACTIONS(4517), 1, sym__special_character, + ACTIONS(4519), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4523), 1, aux_sym_number_token1, + ACTIONS(4525), 1, aux_sym_number_token2, + ACTIONS(4527), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4529), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4531), 1, anon_sym_BQUOTE, + ACTIONS(4533), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4537), 1, + sym_test_operator, + ACTIONS(4539), 1, + sym__brace_start, + STATE(2793), 1, + aux_sym__literal_repeat1, + ACTIONS(4521), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4535), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [30592] = 6, + STATE(888), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2137), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2411), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2139), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [32035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4673), 1, - sym__concat, - STATE(895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 40, + ACTIONS(1304), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100946,8 +102311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -100961,6 +102328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100975,110 +102343,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30654] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4161), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4436), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [30722] = 23, + [32092] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4627), 1, + ACTIONS(4578), 1, sym_word, - ACTIONS(4629), 1, + ACTIONS(4581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(4584), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4633), 1, + ACTIONS(4587), 1, anon_sym_DOLLAR, - ACTIONS(4635), 1, + ACTIONS(4590), 1, sym__special_character, - ACTIONS(4637), 1, + ACTIONS(4593), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, + ACTIONS(4599), 1, aux_sym_number_token1, - ACTIONS(4643), 1, + ACTIONS(4602), 1, aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(4605), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, + ACTIONS(4608), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(4611), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(4614), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4657), 1, + ACTIONS(4620), 1, sym_test_operator, - ACTIONS(4659), 1, + ACTIONS(4623), 1, sym__brace_start, - ACTIONS(4675), 1, - aux_sym__simple_variable_name_token1, - STATE(2831), 1, + STATE(2793), 1, aux_sym__literal_repeat1, - ACTIONS(4639), 2, + ACTIONS(4596), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4653), 2, + ACTIONS(4617), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(933), 2, + STATE(888), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2325), 7, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -101086,7 +102393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2513), 9, + STATE(2411), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -101096,33 +102403,35 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2327), 10, + ACTIONS(2146), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [30818] = 6, + anon_sym_LT_LT_LT, + [32187] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4557), 1, aux_sym_concatenation_token1, - ACTIONS(4677), 1, + ACTIONS(4559), 1, sym__concat, - STATE(895), 1, + STATE(894), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 40, + ACTIONS(1231), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101133,9 +102442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -101163,41 +102473,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30880] = 5, - ACTIONS(3), 1, + [32250] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4679), 1, - sym__special_character, - STATE(887), 1, + STATE(2556), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 5, + STATE(2744), 1, + sym_concatenation, + STATE(2338), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2385), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -101205,30 +102522,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [32313] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, aux_sym_number_token1, + ACTIONS(3273), 1, aux_sym_number_token2, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3279), 1, anon_sym_BQUOTE, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(4628), 1, + sym__special_character, + ACTIONS(4630), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(1974), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(904), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4626), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [30940] = 3, + STATE(2477), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1972), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [32406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 42, + ACTIONS(1300), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101239,6 +102623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -101271,17 +102656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30996] = 3, + [32463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + ACTIONS(1292), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101292,6 +102677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -101324,17 +102710,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31052] = 3, + [32520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(4557), 1, + aux_sym_concatenation_token1, + ACTIONS(4632), 1, sym__concat, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 42, + ACTIONS(1207), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101362,7 +102753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101377,33 +102767,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31108] = 3, + [32583] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(2327), 1, + ts_builtin_sym_end, + ACTIONS(4506), 1, + sym_variable_name, + ACTIONS(4636), 1, + aux_sym_heredoc_redirect_token1, + STATE(6700), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4502), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4343), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(4634), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101411,11 +102814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101430,143 +102831,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31164] = 3, - ACTIONS(3), 1, + [32660] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(312), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(316), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(320), 1, aux_sym_number_token1, + ACTIONS(322), 1, aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1023), 1, + sym_test_operator, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2552), 1, + sym_word, + ACTIONS(4549), 1, + sym_variable_name, + ACTIONS(4638), 1, + sym__special_character, + STATE(619), 1, + sym_command_name, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1437), 1, + sym_concatenation, + STATE(6628), 1, + sym_subscript, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [31220] = 3, - ACTIONS(3), 1, + ACTIONS(1017), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1744), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32771] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2554), 1, + aux_sym__literal_repeat1, + STATE(2727), 1, + sym_concatenation, + STATE(2333), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 13, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [31276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 6, + ACTIONS(2381), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 42, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -101574,52 +102961,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [31332] = 6, + [32834] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, - aux_sym_concatenation_token1, - ACTIONS(4685), 1, - sym__concat, - STATE(895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(4506), 1, + sym_variable_name, + STATE(6700), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4343), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101627,7 +103013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -101645,33 +103030,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31394] = 3, + [32905] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3321), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3325), 1, + anon_sym_DOLLAR, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(3331), 1, + aux_sym_number_token1, + ACTIONS(3333), 1, + aux_sym_number_token2, + ACTIONS(3335), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3339), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3349), 1, sym__brace_start, + ACTIONS(4642), 1, + sym__special_character, + ACTIONS(4644), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4646), 1, + sym_test_operator, + STATE(2116), 1, + aux_sym__literal_repeat1, + ACTIONS(2291), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 42, - anon_sym_SEMI, + ACTIONS(3343), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(907), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4640), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2463), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2289), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101680,35 +103103,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [31450] = 3, + [33000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(4541), 1, + aux_sym_concatenation_token1, + ACTIONS(4543), 1, sym__concat, + STATE(873), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + ACTIONS(1231), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101736,7 +103146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101751,17 +103160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31506] = 3, + [33063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(4557), 1, + aux_sym_concatenation_token1, + ACTIONS(4559), 1, sym__concat, + STATE(894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 42, + ACTIONS(4648), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101772,7 +103186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101789,7 +103203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101804,17 +103217,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31562] = 3, + [33126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(4557), 1, + aux_sym_concatenation_token1, + ACTIONS(4559), 1, sym__concat, + STATE(911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(4652), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101825,7 +103243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101842,7 +103260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101857,90 +103274,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31618] = 8, - ACTIONS(3), 1, + [33189] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(1039), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1043), 1, + anon_sym_DOLLAR, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, - sym_variable_name, - STATE(1657), 1, - sym_string, - ACTIONS(3911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, + anon_sym_BQUOTE, + ACTIONS(1061), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1067), 1, sym_test_operator, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(3907), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 32, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2519), 1, + sym_word, + ACTIONS(4549), 1, + sym_variable_name, + ACTIONS(4656), 1, + sym__special_character, + STATE(641), 1, + sym_command_name, + STATE(2330), 1, + aux_sym__literal_repeat1, + STATE(2424), 1, + sym_concatenation, + STATE(6628), 1, + sym_subscript, + ACTIONS(1049), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1063), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + STATE(1779), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33300] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, aux_sym_number_token1, + ACTIONS(3273), 1, aux_sym_number_token2, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3279), 1, anon_sym_BQUOTE, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(4628), 1, + sym__special_character, + ACTIONS(4630), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(918), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4626), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [31684] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 1, - anon_sym_DQUOTE, - ACTIONS(3913), 1, - sym_variable_name, - STATE(1657), 1, + STATE(2477), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3911), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3907), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 32, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -101957,49 +103426,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + [33393] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, aux_sym_number_token1, + ACTIONS(3273), 1, aux_sym_number_token2, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3279), 1, anon_sym_BQUOTE, + ACTIONS(3281), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(4628), 1, + sym__special_character, + ACTIONS(4630), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(918), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4626), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [31750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, - anon_sym_SEMI, + STATE(2477), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102009,54 +103499,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + [33486] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2804), 1, + aux_sym__literal_repeat1, + STATE(917), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2418), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [31806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 6, + ACTIONS(2084), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -102064,48 +103547,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [31862] = 3, + [33549] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3453), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3465), 1, + anon_sym_DQUOTE, + ACTIONS(3468), 1, + aux_sym_number_token1, + ACTIONS(3471), 1, + aux_sym_number_token2, + ACTIONS(3474), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3477), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3480), 1, + anon_sym_BQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3495), 1, sym__brace_start, + ACTIONS(4661), 1, + sym__special_character, + ACTIONS(4664), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4667), 1, + sym_test_operator, + STATE(2116), 1, + aux_sym__literal_repeat1, + ACTIONS(2569), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 42, - anon_sym_SEMI, + ACTIONS(3486), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(907), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4658), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2463), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2567), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102114,35 +103629,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [33644] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(312), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(316), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(320), 1, aux_sym_number_token1, + ACTIONS(322), 1, aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(338), 1, + sym_test_operator, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2323), 1, + sym_word, + ACTIONS(4547), 1, + sym__special_character, + ACTIONS(4549), 1, + sym_variable_name, + STATE(544), 1, + sym_command_name, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1437), 1, + sym_concatenation, + STATE(6628), 1, + sym_subscript, + ACTIONS(318), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [31918] = 3, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1161), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(4557), 1, + aux_sym_concatenation_token1, + ACTIONS(4559), 1, sym__concat, + STATE(894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4672), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 42, + ACTIONS(4670), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102153,7 +103736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -102170,7 +103753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102185,33 +103767,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31974] = 3, + [33818] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(4294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4495), 1, + sym_variable_name, + STATE(6667), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4472), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 42, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102219,11 +103811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102238,22 +103828,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32030] = 6, + [33889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4557), 1, aux_sym_concatenation_token1, - ACTIONS(4688), 1, + ACTIONS(4674), 1, sym__concat, - STATE(911), 1, + STATE(912), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 40, + ACTIONS(1213), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102264,6 +103854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -102294,17 +103885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32092] = 3, + [33952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4676), 1, + aux_sym_concatenation_token1, + ACTIONS(4679), 1, sym__concat, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(1235), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102332,7 +103928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102347,17 +103942,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32148] = 3, + [34015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(4557), 1, + aux_sym_concatenation_token1, + ACTIONS(4559), 1, sym__concat, + STATE(894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 42, + ACTIONS(4682), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102385,7 +103985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102400,22 +103999,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32204] = 6, + [34078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4557), 1, aux_sym_concatenation_token1, - ACTIONS(4690), 1, + ACTIONS(4559), 1, sym__concat, STATE(911), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(4688), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 40, + ACTIONS(4686), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102426,6 +104025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -102456,22 +104056,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32266] = 6, + [34141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4557), 1, aux_sym_concatenation_token1, - ACTIONS(4695), 1, + ACTIONS(4559), 1, sym__concat, STATE(911), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(4692), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4690), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102482,6 +104082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -102512,93 +104113,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32328] = 6, - ACTIONS(3), 1, + [34204] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2804), 1, + aux_sym__literal_repeat1, + STATE(917), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2418), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 12, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [32390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 6, + ACTIONS(2139), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -102606,101 +104161,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [32446] = 3, - ACTIONS(3), 1, + [34267] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4694), 1, + sym_word, + ACTIONS(4697), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4700), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4703), 1, + anon_sym_DOLLAR, + ACTIONS(4706), 1, + sym__special_character, + ACTIONS(4709), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + aux_sym_number_token1, + ACTIONS(4718), 1, + aux_sym_number_token2, + ACTIONS(4721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4724), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4727), 1, + anon_sym_BQUOTE, + ACTIONS(4730), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4736), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4739), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2804), 1, + aux_sym__literal_repeat1, + ACTIONS(4712), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4733), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(917), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2418), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2146), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [34362] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3503), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3515), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3518), 1, aux_sym_number_token1, + ACTIONS(3521), 1, aux_sym_number_token2, + ACTIONS(3524), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3527), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3530), 1, anon_sym_BQUOTE, + ACTIONS(3533), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3542), 1, + sym__brace_start, + ACTIONS(4745), 1, + sym__special_character, + ACTIONS(4748), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2146), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(918), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4742), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [32502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 42, - anon_sym_SEMI, + STATE(2477), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102710,103 +104315,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [34455] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4459), 1, + sym_word, + ACTIONS(4461), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4463), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4465), 1, anon_sym_DOLLAR, + ACTIONS(4467), 1, sym__special_character, + ACTIONS(4469), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4473), 1, aux_sym_number_token1, + ACTIONS(4475), 1, aux_sym_number_token2, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4479), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4481), 1, anon_sym_BQUOTE, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [32558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4487), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4489), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2804), 1, + aux_sym__literal_repeat1, + ACTIONS(4471), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4485), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(906), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1972), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2418), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1974), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [34550] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(658), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(660), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(662), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(666), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(670), 1, + aux_sym_number_token1, + ACTIONS(672), 1, + aux_sym_number_token2, + ACTIONS(674), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(676), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(678), 1, + anon_sym_BQUOTE, + ACTIONS(680), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(688), 1, + sym_test_operator, + ACTIONS(690), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2525), 1, + sym_word, + ACTIONS(4549), 1, + sym_variable_name, + ACTIONS(4751), 1, + sym__special_character, + STATE(525), 1, + sym_command_name, + STATE(1183), 1, + aux_sym__literal_repeat1, + STATE(1205), 1, + sym_concatenation, + STATE(6628), 1, + sym_subscript, + ACTIONS(668), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(682), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(867), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34661] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(308), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(316), 1, + anon_sym_DQUOTE, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(771), 1, + sym_test_operator, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2387), 1, + sym_word, + ACTIONS(4549), 1, + sym_variable_name, + ACTIONS(4753), 1, + sym__special_character, + STATE(528), 1, + sym_command_name, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1437), 1, + sym_concatenation, + STATE(6628), 1, + sym_subscript, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(769), 2, + sym_raw_string, sym_ansi_c_string, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1346), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1027), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34772] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3321), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3325), 1, + anon_sym_DOLLAR, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(3331), 1, aux_sym_number_token1, + ACTIONS(3333), 1, aux_sym_number_token2, + ACTIONS(3335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3339), 1, anon_sym_BQUOTE, + ACTIONS(3341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3349), 1, + sym__brace_start, + ACTIONS(4642), 1, + sym__special_character, + ACTIONS(4646), 1, + sym_test_operator, + ACTIONS(4755), 1, + aux_sym__simple_variable_name_token1, + STATE(2116), 1, + aux_sym__literal_repeat1, + ACTIONS(2345), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(899), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4640), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [32614] = 3, + STATE(2463), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2343), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [34867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + STATE(1872), 1, + aux_sym__literal_repeat1, + STATE(2118), 1, + sym_concatenation, + ACTIONS(2381), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 42, - anon_sym_SEMI, + STATE(2350), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102818,7 +104666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102833,17 +104680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32670] = 3, + [34930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(4541), 1, + aux_sym_concatenation_token1, + ACTIONS(4543), 1, sym__concat, + STATE(873), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(237), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102854,7 +104706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -102871,7 +104723,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102886,17 +104737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32726] = 3, + [34993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 42, + ACTIONS(1296), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102907,6 +104758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -102939,33 +104791,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32782] = 3, + [35050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + STATE(1826), 1, + aux_sym__literal_repeat1, + STATE(2205), 1, + sym_concatenation, + ACTIONS(2385), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, - anon_sym_SEMI, + STATE(2353), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102977,7 +104834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102992,17 +104848,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32838] = 3, + [35113] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3263), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3271), 1, + aux_sym_number_token1, + ACTIONS(3273), 1, + aux_sym_number_token2, + ACTIONS(3275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3279), 1, + anon_sym_BQUOTE, + ACTIONS(3281), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(4628), 1, + sym__special_character, + ACTIONS(4630), 1, + sym_test_operator, + STATE(2227), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3283), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(905), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4626), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2477), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2078), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [35206] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 1, + aux_sym_concatenation_token1, + ACTIONS(4759), 1, sym__concat, + STATE(1011), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 42, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103015,8 +104949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103030,7 +104962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103045,17 +104976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32894] = 3, + [35268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4763), 1, sym__concat, + STATE(953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(4682), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103066,7 +105002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103083,7 +105018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103098,33 +105032,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32950] = 3, + [35330] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(4769), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4771), 1, + sym_variable_name, + STATE(6656), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4651), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(4765), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103132,11 +105077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103151,96 +105094,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33006] = 6, - ACTIONS(71), 1, + [35404] = 9, + ACTIONS(3), 1, sym_comment, - STATE(2609), 1, - aux_sym__literal_repeat1, - STATE(3008), 1, - sym_concatenation, - STATE(2408), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(4774), 1, + sym_variable_name, + STATE(6698), 1, + sym_subscript, + ACTIONS(4265), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4518), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 16, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(2273), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(4257), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [33068] = 8, + [35472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, - sym_variable_name, - STATE(1777), 1, - sym_string, - ACTIONS(3815), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(4777), 1, + sym__special_character, + STATE(932), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3813), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 41, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103249,11 +105192,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -103265,40 +105208,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33134] = 8, + [35532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, - sym_variable_name, - STATE(1777), 1, - sym_string, - ACTIONS(3815), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3813), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103307,11 +105243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -103323,17 +105261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33200] = 3, + [35588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 42, + ACTIONS(1235), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103344,7 +105282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103376,17 +105314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33256] = 3, + [35644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(1256), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103397,7 +105335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103429,17 +105367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33312] = 3, + [35700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 42, + ACTIONS(1312), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103450,7 +105388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103482,17 +105420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33368] = 3, + [35756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(1264), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103503,7 +105441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103535,23 +105473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33424] = 6, + [35812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - aux_sym_concatenation_token1, - ACTIONS(4700), 1, - sym__concat, - STATE(945), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1268), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103562,8 +105494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103577,6 +105511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103591,17 +105526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33486] = 3, + [35868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 42, + ACTIONS(1272), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103612,7 +105547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103644,90 +105579,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33542] = 23, - ACTIONS(71), 1, + [35924] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, - sym_word, - ACTIONS(4705), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4711), 1, - anon_sym_DOLLAR, - ACTIONS(4714), 1, - sym__special_character, - ACTIONS(4717), 1, - anon_sym_DQUOTE, - ACTIONS(4723), 1, - aux_sym_number_token1, - ACTIONS(4726), 1, - aux_sym_number_token2, - ACTIONS(4729), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4732), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4735), 1, - anon_sym_BQUOTE, - ACTIONS(4738), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4744), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4747), 1, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4763), 1, + sym__concat, + STATE(953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4555), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(4750), 1, + sym__bare_dollar, sym__brace_start, - STATE(2831), 1, - aux_sym__literal_repeat1, - ACTIONS(4720), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4741), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(933), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2454), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(4553), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2513), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2456), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [33638] = 3, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [35986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4763), 1, sym__concat, + STATE(956), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4563), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(4561), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103738,7 +105661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103755,7 +105677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103770,17 +105691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33694] = 3, + [36048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1260), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103823,17 +105744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33750] = 3, + [36104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1235), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103876,202 +105797,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33806] = 30, - ACTIONS(45), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + [36160] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(1258), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(79), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2787), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4753), 1, - sym__special_character, - STATE(533), 1, - sym_command_name, - STATE(1181), 1, - aux_sym__literal_repeat1, - STATE(1431), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, + aux_sym_heredoc_redirect_token1, + ACTIONS(1256), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(944), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33916] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(316), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(320), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(338), 1, - sym_test_operator, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2643), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4755), 1, - sym__special_character, - STATE(540), 1, - sym_command_name, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(318), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1126), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34026] = 10, + sym_word, + [36216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104079,9 +105884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104096,23 +105903,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34096] = 8, + [36272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(4763), 1, + ACTIONS(3855), 1, sym_variable_name, - STATE(2498), 1, + STATE(1555), 1, sym_string, - ACTIONS(4761), 2, + ACTIONS(3853), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4757), 8, + ACTIONS(3851), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -104130,7 +105937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104139,6 +105945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -104154,23 +105961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34162] = 8, + [36338] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(4763), 1, + ACTIONS(3855), 1, sym_variable_name, - STATE(2498), 1, + STATE(1555), 1, sym_string, - ACTIONS(4761), 2, + ACTIONS(3853), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4757), 8, + ACTIONS(3851), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -104188,7 +105995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104197,6 +106003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -104212,100 +106019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34228] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(445), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(449), 1, - anon_sym_DOLLAR, - ACTIONS(453), 1, - anon_sym_DQUOTE, - ACTIONS(457), 1, - aux_sym_number_token1, - ACTIONS(459), 1, - aux_sym_number_token2, - ACTIONS(461), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, - anon_sym_BQUOTE, - ACTIONS(467), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(475), 1, - sym_test_operator, - ACTIONS(477), 1, - sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2526), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4765), 1, - sym__special_character, - STATE(523), 1, - sym_command_name, - STATE(943), 1, - aux_sym__literal_repeat1, - STATE(1056), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(455), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(469), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(781), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34338] = 5, + [36404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - sym__special_character, - STATE(887), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 5, + ACTIONS(1266), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 41, + ACTIONS(1264), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104317,7 +106041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104334,7 +106057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104347,23 +106072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34398] = 6, + [36460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - aux_sym_concatenation_token1, - ACTIONS(4700), 1, - sym__concat, - STATE(950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 6, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(1276), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104374,8 +106093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104389,6 +106110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104403,23 +106125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34460] = 6, + [36516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - aux_sym_concatenation_token1, - ACTIONS(4769), 1, - sym__concat, - STATE(968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 6, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1284), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104430,8 +106146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104445,6 +106163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104459,69 +106178,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34522] = 21, + [36572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3642), 1, - anon_sym_DQUOTE, - ACTIONS(3644), 1, - aux_sym_number_token1, - ACTIONS(3646), 1, - aux_sym_number_token2, - ACTIONS(3648), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, - anon_sym_BQUOTE, - ACTIONS(3654), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4773), 1, - sym__special_character, - ACTIONS(4775), 1, - sym_test_operator, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(948), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4771), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 16, + ACTIONS(1268), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104530,69 +106213,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [34614] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3644), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4773), 1, - sym__special_character, - ACTIONS(4775), 1, - sym_test_operator, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(948), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4771), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 16, + [36628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104601,69 +106266,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [34706] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3746), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3749), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3755), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3758), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(3764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3770), 1, anon_sym_BQUOTE, - ACTIONS(3773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3782), 1, - sym__brace_start, - ACTIONS(4780), 1, - sym__special_character, - ACTIONS(4783), 1, - sym_test_operator, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3776), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(948), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4777), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 16, + [36684] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4780), 1, + sym__concat, + STATE(957), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 40, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104672,103 +106323,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [34798] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(701), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(705), 1, anon_sym_DOLLAR, - ACTIONS(709), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(713), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(731), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [36746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(733), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1352), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2775), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4786), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - STATE(525), 1, - sym_command_name, - STATE(1089), 1, - aux_sym__literal_repeat1, - STATE(1220), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(711), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(725), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, + sym_word, + [36802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(865), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34908] = 6, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [36858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4761), 1, aux_sym_concatenation_token1, - ACTIONS(4788), 1, + ACTIONS(4782), 1, sym__concat, - STATE(968), 1, + STATE(957), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1213), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104779,8 +106472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104808,22 +106502,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34970] = 6, + [36920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4784), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4787), 1, sym__concat, - STATE(907), 1, + STATE(957), 1, aux_sym_concatenation_repeat1, - ACTIONS(4370), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 40, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104864,22 +106558,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35032] = 6, + [36982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4761), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4763), 1, sym__concat, - STATE(910), 1, + STATE(953), 1, aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 40, + ACTIONS(1231), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104920,45 +106614,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35094] = 13, + [37044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4533), 1, - sym_variable_name, - ACTIONS(4792), 1, - aux_sym_heredoc_redirect_token1, - STATE(6675), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4790), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 42, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104966,9 +106648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104983,25 +106667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35170] = 7, + [37100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - aux_sym_concatenation_token1, - ACTIONS(4700), 1, - sym__concat, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 6, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, + ACTIONS(1284), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105012,7 +106688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105026,6 +106705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105040,22 +106720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35234] = 6, + [37156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(883), 1, - aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 40, + ACTIONS(1280), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105066,9 +106741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105082,6 +106758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105096,22 +106773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35296] = 6, + [37212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + ACTIONS(1248), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105122,9 +106794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105138,6 +106811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105152,24 +106826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35358] = 7, + [37268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(886), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(1288), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105180,8 +106847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105195,6 +106864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105209,45 +106879,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35422] = 13, + [37324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4436), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4513), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 42, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105255,9 +106913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105272,22 +106932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35498] = 6, + [37380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 40, + ACTIONS(1292), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105298,6 +106953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105314,6 +106970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105328,22 +106985,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35560] = 6, + [37436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4761), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4763), 1, sym__concat, - STATE(910), 1, + STATE(953), 1, aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + ACTIONS(4672), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 40, + ACTIONS(4670), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105384,162 +107041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35622] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, - anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(775), 1, - sym_test_operator, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2530), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4799), 1, - sym__special_character, - STATE(530), 1, - sym_command_name, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(773), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(956), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35732] = 9, + [37498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - ACTIONS(4161), 2, - sym_test_operator, - sym__brace_start, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4268), 3, + ACTIONS(1298), 6, sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [35800] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4698), 1, - aux_sym_concatenation_token1, - ACTIONS(4700), 1, sym__concat, - STATE(945), 1, - aux_sym_concatenation_repeat1, - ACTIONS(276), 6, - sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 39, + ACTIONS(1296), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105552,6 +107064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105565,6 +107079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105579,311 +107094,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35862] = 22, - ACTIONS(71), 1, + [37554] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, - sym_word, - ACTIONS(4803), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, - anon_sym_DOLLAR, - ACTIONS(4809), 1, - sym__special_character, - ACTIONS(4811), 1, - anon_sym_DQUOTE, - ACTIONS(4815), 1, - aux_sym_number_token1, - ACTIONS(4817), 1, - aux_sym_number_token2, - ACTIONS(4819), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, - anon_sym_BQUOTE, - ACTIONS(4825), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(1302), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4831), 1, + sym__bare_dollar, sym__brace_start, - STATE(2859), 1, - aux_sym__literal_repeat1, - ACTIONS(4813), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4827), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(971), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2156), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2538), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2158), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [35956] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4801), 1, - sym_word, - ACTIONS(4803), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4809), 1, sym__special_character, - ACTIONS(4811), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4817), 1, aux_sym_number_token2, - ACTIONS(4819), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, - sym_test_operator, - ACTIONS(4831), 1, - sym__brace_start, - STATE(2859), 1, - aux_sym__literal_repeat1, - ACTIONS(4813), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4827), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(971), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2160), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2538), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2162), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [36050] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4833), 1, sym_word, - ACTIONS(4835), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4841), 1, - sym__special_character, - ACTIONS(4843), 1, - anon_sym_DQUOTE, - ACTIONS(4847), 1, - aux_sym_number_token1, - ACTIONS(4849), 1, - aux_sym_number_token2, - ACTIONS(4851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, - anon_sym_BQUOTE, - ACTIONS(4857), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4861), 1, + [37610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4863), 1, + sym__bare_dollar, sym__brace_start, - STATE(5225), 1, - aux_sym__literal_repeat1, - STATE(5433), 1, - sym_concatenation, - ACTIONS(4845), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4859), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2271), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5035), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2273), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [36144] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4835), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4841), 1, sym__special_character, - ACTIONS(4843), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4849), 1, aux_sym_number_token2, - ACTIONS(4851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(4865), 1, - sym_word, - ACTIONS(4869), 1, - sym_test_operator, - STATE(5187), 1, - aux_sym__literal_repeat1, - STATE(5408), 1, - sym_concatenation, - ACTIONS(4859), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4867), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2275), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5037), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2277), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [36238] = 6, + sym_word, + [37666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, - aux_sym_concatenation_token1, - ACTIONS(4874), 1, - sym__concat, - STATE(968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1308), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105894,8 +107221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105909,6 +107238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105923,45 +107253,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36300] = 13, + [37722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4436), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4290), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 42, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105969,9 +107287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105986,232 +107306,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36376] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, - anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(338), 1, - sym_test_operator, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2643), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4755), 1, - sym__special_character, - STATE(542), 1, - sym_command_name, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(318), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1126), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36486] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4877), 1, - sym_word, - ACTIONS(4880), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4883), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4886), 1, - anon_sym_DOLLAR, - ACTIONS(4889), 1, - sym__special_character, - ACTIONS(4892), 1, - anon_sym_DQUOTE, - ACTIONS(4898), 1, - aux_sym_number_token1, - ACTIONS(4901), 1, - aux_sym_number_token2, - ACTIONS(4904), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4907), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4910), 1, - anon_sym_BQUOTE, - ACTIONS(4913), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4919), 1, - sym_test_operator, - ACTIONS(4922), 1, - sym__brace_start, - STATE(2859), 1, - aux_sym__literal_repeat1, - ACTIONS(4895), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4916), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(971), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2538), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [36580] = 8, + [37778] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(3680), 1, sym_variable_name, - STATE(2500), 1, + STATE(1829), 1, sym_string, - ACTIONS(1197), 2, - sym__concat, - sym_test_operator, - ACTIONS(4929), 2, + ACTIONS(3678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [36646] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4927), 1, - anon_sym_DQUOTE, - ACTIONS(4931), 1, - sym_variable_name, - STATE(2500), 1, - sym_string, - ACTIONS(1191), 2, - sym__concat, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(4929), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + sym__brace_start, + ACTIONS(3676), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -106220,174 +107331,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1195), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [36712] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, - anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(1023), 1, - sym_test_operator, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2875), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4933), 1, - sym__special_character, - STATE(605), 1, - sym_command_name, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1692), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36822] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(3514), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3516), 1, aux_sym_number_token2, - ACTIONS(3518), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(4937), 1, - sym__special_character, - ACTIONS(4939), 1, - sym_test_operator, - STATE(4236), 1, - aux_sym__literal_repeat1, - STATE(4549), 1, - sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4935), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5108), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [37844] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_DQUOTE, + ACTIONS(3680), 1, + sym_variable_name, + STATE(1829), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 17, + ACTIONS(3678), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3676), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106404,89 +107406,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [36914] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(3514), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3516), 1, aux_sym_number_token2, - ACTIONS(3518), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(4937), 1, - sym__special_character, - ACTIONS(4943), 1, - sym_test_operator, - STATE(4265), 1, - aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4941), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [37006] = 3, + [37910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1280), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106497,7 +107443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -106529,17 +107475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37062] = 3, + [37966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(1248), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106551,8 +107497,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106581,41 +107528,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37117] = 8, + [38022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, - anon_sym_DQUOTE, - ACTIONS(4951), 1, - sym_variable_name, - STATE(2777), 1, - sym_string, - ACTIONS(4949), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4945), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106624,9 +107563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -106638,136 +107581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37182] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1197), 1, - sym_test_operator, - ACTIONS(4957), 1, - sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [37247] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4957), 1, - sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [37312] = 6, + [38078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(4961), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1304), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106778,8 +107602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106793,6 +107619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106807,17 +107634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37373] = 3, + [38134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(1292), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106829,8 +107656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106859,16 +107687,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37428] = 3, + [38190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4763), 1, + sym__concat, + STATE(956), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4692), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 42, + ACTIONS(4690), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106879,8 +107713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -106911,36 +107743,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37483] = 6, + [38252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, - aux_sym_concatenation_token1, - ACTIONS(4965), 1, - sym__concat, - STATE(987), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1254), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1252), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106952,6 +107781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106966,36 +107796,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37544] = 6, + [38308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, - aux_sym_concatenation_token1, - ACTIONS(4967), 1, - sym__concat, - STATE(987), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1308), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107007,6 +107834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107021,36 +107849,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37605] = 6, + [38364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 1, - aux_sym_concatenation_token1, - ACTIONS(4972), 1, - sym__concat, - STATE(987), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1254), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1252), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107062,6 +107887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107076,36 +107902,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37666] = 6, + [38420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(4757), 1, aux_sym_concatenation_token1, - ACTIONS(4977), 1, + ACTIONS(4790), 1, sym__concat, - STATE(990), 1, + STATE(1023), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1215), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107114,6 +107941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -107129,38 +107957,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [37727] = 6, + [38482] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_concatenation_token1, - ACTIONS(4979), 1, - sym__concat, - STATE(990), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, - sym_file_descriptor, + ACTIONS(4771), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(4794), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(6656), 1, + sym_subscript, + ACTIONS(4257), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4651), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4792), 3, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107168,7 +108003,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [38556] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + sym_variable_name, + ACTIONS(4798), 1, + aux_sym_heredoc_redirect_token1, + STATE(6656), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4651), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4796), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -107184,38 +108081,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [37788] = 6, + [38630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 1, + ACTIONS(4757), 1, aux_sym_concatenation_token1, - ACTIONS(4984), 1, + ACTIONS(4759), 1, sym__concat, - STATE(990), 1, + STATE(983), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1226), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107224,6 +108121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -107239,38 +108137,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [37849] = 6, + [38692] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4800), 1, + sym_word, + ACTIONS(4802), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4804), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4806), 1, + anon_sym_DOLLAR, + ACTIONS(4808), 1, + sym__special_character, + ACTIONS(4810), 1, + anon_sym_DQUOTE, + ACTIONS(4814), 1, + aux_sym_number_token1, + ACTIONS(4816), 1, + aux_sym_number_token2, + ACTIONS(4818), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4820), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4822), 1, + anon_sym_BQUOTE, + ACTIONS(4824), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4828), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4830), 1, + sym_test_operator, + ACTIONS(4832), 1, + sym__brace_start, + STATE(3023), 1, + aux_sym__literal_repeat1, + ACTIONS(4812), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4826), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(994), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2343), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2620), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2345), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [38788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4836), 1, sym__concat, - STATE(985), 1, + STATE(993), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1233), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1231), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107296,36 +108267,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37910] = 6, + [38850] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_concatenation_token1, - ACTIONS(4989), 1, - sym__concat, - STATE(988), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4840), 1, + anon_sym_DQUOTE, + ACTIONS(4844), 1, + sym_variable_name, + STATE(2509), 1, + sym_string, + ACTIONS(4842), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4838), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 32, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [38916] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 1, + anon_sym_DQUOTE, + ACTIONS(4844), 1, sym_variable_name, + STATE(2509), 1, + sym_string, + ACTIONS(4842), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, - anon_sym_SEMI, + ACTIONS(4838), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107334,6 +108368,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [38982] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4771), 1, + sym_variable_name, + ACTIONS(4848), 1, + aux_sym_heredoc_redirect_token1, + STATE(6656), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4651), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4846), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -107349,44 +108444,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [37971] = 13, + [39056] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, + ACTIONS(4261), 1, anon_sym_BQUOTE, - ACTIONS(4995), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4997), 1, + ACTIONS(4774), 1, sym_variable_name, - STATE(6672), 1, + ACTIONS(4854), 1, + aux_sym_heredoc_redirect_token1, + STATE(6698), 1, sym_subscript, - ACTIONS(4157), 2, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, + ACTIONS(4852), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(4492), 2, + STATE(4518), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4991), 3, + ACTIONS(4850), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4612), 3, + STATE(4376), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 26, + ACTIONS(4251), 26, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -107413,22 +108508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38046] = 6, + [39132] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(5003), 1, + ACTIONS(4856), 1, sym__concat, - STATE(994), 1, + STATE(1010), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1207), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107439,6 +108534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -107468,20 +108564,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38107] = 5, - ACTIONS(3), 1, + [39194] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(5006), 1, + ACTIONS(4800), 1, + sym_word, + ACTIONS(4802), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4804), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4806), 1, + anon_sym_DOLLAR, + ACTIONS(4808), 1, sym__special_character, - STATE(995), 1, + ACTIONS(4810), 1, + anon_sym_DQUOTE, + ACTIONS(4814), 1, + aux_sym_number_token1, + ACTIONS(4816), 1, + aux_sym_number_token2, + ACTIONS(4818), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4820), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4822), 1, + anon_sym_BQUOTE, + ACTIONS(4824), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4830), 1, + sym_test_operator, + ACTIONS(4832), 1, + sym__brace_start, + ACTIONS(4858), 1, + aux_sym__simple_variable_name_token1, + STATE(3023), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4812), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4826), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1012), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2289), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2620), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2291), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [39290] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4860), 1, + sym__concat, + STATE(1010), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1213), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107492,10 +108663,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -107510,6 +108680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -107522,17 +108693,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38166] = 3, + [39352] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(4757), 1, + aux_sym_concatenation_token1, + ACTIONS(4759), 1, sym__concat, + ACTIONS(4862), 1, + anon_sym_LPAREN, + STATE(983), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1226), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107543,8 +108722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -107559,7 +108736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107574,32 +108750,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38221] = 3, + [39416] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(4294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4774), 1, + sym_variable_name, + STATE(6698), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4518), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107607,11 +108793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107626,49 +108810,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38276] = 22, + [39486] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(4865), 1, sym_word, - ACTIONS(5011), 1, + ACTIONS(4867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(4871), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, + ACTIONS(4873), 1, sym__special_character, - ACTIONS(5019), 1, + ACTIONS(4875), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(4879), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(4881), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(4887), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, + ACTIONS(4893), 1, sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(4895), 1, sym__brace_start, - STATE(3136), 1, + STATE(2900), 1, aux_sym__literal_repeat1, - ACTIONS(5021), 2, + ACTIONS(4877), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5035), 2, + ACTIONS(4891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1000), 2, + STATE(1005), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2156), 7, + ACTIONS(1972), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -107676,7 +108860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2655), 9, + STATE(2591), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -107686,68 +108870,134 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2158), 10, + ACTIONS(1974), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38369] = 22, - ACTIONS(71), 1, + [39580] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, - sym_word, - ACTIONS(5011), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, - sym__special_character, - ACTIONS(5019), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(3702), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, - sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(3710), 1, sym__brace_start, - STATE(3136), 1, + ACTIONS(4899), 1, + sym__special_character, + ACTIONS(4901), 1, + sym_test_operator, + STATE(2315), 1, aux_sym__literal_repeat1, - ACTIONS(5021), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, + ACTIONS(1974), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1000), 2, + STATE(1001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2160), 7, + ACTIONS(4897), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2563), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1972), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2655), 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [39672] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3688), 1, + anon_sym_DOLLAR, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(3694), 1, + aux_sym_number_token1, + ACTIONS(3696), 1, + aux_sym_number_token2, + ACTIONS(3698), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3702), 1, + anon_sym_BQUOTE, + ACTIONS(3704), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(4899), 1, + sym__special_character, + ACTIONS(4901), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1002), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4897), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2563), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -107757,68 +109007,139 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2162), 10, - sym_file_descriptor, + ACTIONS(2078), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38462] = 22, - ACTIONS(71), 1, + [39764] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, - sym_word, - ACTIONS(5044), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5047), 1, + ACTIONS(3686), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5050), 1, + ACTIONS(3688), 1, anon_sym_DOLLAR, - ACTIONS(5053), 1, - sym__special_character, - ACTIONS(5056), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(5062), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(5065), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(5068), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5071), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5074), 1, + ACTIONS(3702), 1, anon_sym_BQUOTE, - ACTIONS(5077), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5083), 1, - sym_test_operator, - ACTIONS(5086), 1, + ACTIONS(3710), 1, sym__brace_start, - STATE(3136), 1, + ACTIONS(4899), 1, + sym__special_character, + ACTIONS(4901), 1, + sym_test_operator, + STATE(2315), 1, aux_sym__literal_repeat1, - ACTIONS(5059), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5080), 2, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1000), 2, + STATE(1004), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, + ACTIONS(4897), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2563), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2655), 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [39856] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3688), 1, + anon_sym_DOLLAR, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(3694), 1, + aux_sym_number_token1, + ACTIONS(3696), 1, + aux_sym_number_token2, + ACTIONS(3698), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3702), 1, + anon_sym_BQUOTE, + ACTIONS(3704), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(4899), 1, + sym__special_character, + ACTIONS(4901), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3706), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1004), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4897), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2563), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -107828,59 +109149,66 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 10, - sym_file_descriptor, + ACTIONS(2137), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38555] = 22, + [39948] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5089), 1, + ACTIONS(4865), 1, sym_word, - ACTIONS(5091), 1, + ACTIONS(4867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(4871), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, + ACTIONS(4873), 1, sym__special_character, - ACTIONS(5099), 1, + ACTIONS(4875), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(4879), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(4881), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(4887), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5117), 1, + ACTIONS(4893), 1, sym_test_operator, - ACTIONS(5119), 1, + ACTIONS(4895), 1, sym__brace_start, - STATE(5261), 1, + STATE(2900), 1, aux_sym__literal_repeat1, - STATE(5482), 1, - sym_concatenation, - ACTIONS(5101), 2, + ACTIONS(4877), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5115), 2, + ACTIONS(4891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2271), 7, + STATE(1006), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2078), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -107888,7 +109216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5141), 9, + STATE(2591), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -107898,44 +109226,73 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 11, + ACTIONS(2080), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [38648] = 8, + [40042] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3809), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3812), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3815), 1, + anon_sym_DOLLAR, + ACTIONS(3821), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, - sym_variable_name, - STATE(1694), 1, - sym_string, - ACTIONS(4143), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, + ACTIONS(3824), 1, + aux_sym_number_token1, + ACTIONS(3827), 1, + aux_sym_number_token2, + ACTIONS(3830), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3833), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3836), 1, + anon_sym_BQUOTE, + ACTIONS(3839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3848), 1, sym__brace_start, - ACTIONS(4141), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 31, + ACTIONS(4906), 1, + sym__special_character, + ACTIONS(4909), 1, + sym_test_operator, + STATE(2315), 1, + aux_sym__literal_repeat1, + ACTIONS(2146), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3842), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1004), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4903), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2563), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107952,63 +109309,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + [40134] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4865), 1, + sym_word, + ACTIONS(4867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4871), 1, + anon_sym_DOLLAR, + ACTIONS(4873), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4875), 1, + anon_sym_DQUOTE, + ACTIONS(4879), 1, aux_sym_number_token1, + ACTIONS(4881), 1, aux_sym_number_token2, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4885), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4887), 1, anon_sym_BQUOTE, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4893), 1, + sym_test_operator, + ACTIONS(4895), 1, + sym__brace_start, + STATE(2900), 1, + aux_sym__literal_repeat1, + ACTIONS(4877), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [38713] = 22, + STATE(1013), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2082), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2591), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2084), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [40228] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(4865), 1, + sym_word, + ACTIONS(4867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(4871), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, + ACTIONS(4873), 1, sym__special_character, - ACTIONS(5099), 1, + ACTIONS(4875), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(4879), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(4881), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(4887), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, - sym__brace_start, - ACTIONS(5121), 1, - sym_word, - ACTIONS(5125), 1, + ACTIONS(4893), 1, sym_test_operator, - STATE(5279), 1, + ACTIONS(4895), 1, + sym__brace_start, + STATE(2900), 1, aux_sym__literal_repeat1, - STATE(5506), 1, - sym_concatenation, - ACTIONS(5115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5123), 2, + ACTIONS(4877), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2275), 7, + ACTIONS(4891), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1013), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2137), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -108016,7 +109431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5148), 9, + STATE(2591), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -108026,52 +109441,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2277), 11, + ACTIONS(2139), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [38806] = 8, + [40322] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(2329), 1, + anon_sym_BQUOTE, + ACTIONS(4774), 1, sym_variable_name, - STATE(1694), 1, - sym_string, - ACTIONS(4143), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(4914), 1, + aux_sym_heredoc_redirect_token1, + STATE(6698), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4852), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4518), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4912), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 26, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108079,220 +109500,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38871] = 5, - ACTIONS(3), 1, + [40398] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(5127), 1, - sym__special_character, - STATE(1005), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(4916), 1, + sym_word, + ACTIONS(4918), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4920), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4922), 1, anon_sym_DOLLAR, + ACTIONS(4924), 1, + sym__special_character, + ACTIONS(4926), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4930), 1, aux_sym_number_token1, + ACTIONS(4932), 1, aux_sym_number_token2, + ACTIONS(4934), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4936), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4938), 1, anon_sym_BQUOTE, + ACTIONS(4940), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [38930] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, - sym_variable_name, - STATE(1710), 1, - sym_string, - ACTIONS(3984), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, + ACTIONS(4944), 1, sym_test_operator, + ACTIONS(4946), 1, sym__brace_start, - ACTIONS(3982), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5150), 1, + aux_sym__literal_repeat1, + STATE(5437), 1, + sym_concatenation, + ACTIONS(4928), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4942), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2379), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5047), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2381), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [40492] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4918), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4920), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4922), 1, + anon_sym_DOLLAR, + ACTIONS(4924), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4926), 1, + anon_sym_DQUOTE, + ACTIONS(4930), 1, aux_sym_number_token1, + ACTIONS(4932), 1, aux_sym_number_token2, + ACTIONS(4934), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4936), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4938), 1, anon_sym_BQUOTE, + ACTIONS(4940), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4946), 1, + sym__brace_start, + ACTIONS(4948), 1, sym_word, - [38995] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, - sym_variable_name, - STATE(1710), 1, - sym_string, - ACTIONS(3984), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, + ACTIONS(4952), 1, sym_test_operator, - sym__brace_start, - ACTIONS(3982), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5154), 1, + aux_sym__literal_repeat1, + STATE(5462), 1, + sym_concatenation, + ACTIONS(4942), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4950), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2383), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5049), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2385), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39060] = 6, + anon_sym_LT_LT_LT, + [40586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4954), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4957), 1, sym__concat, - STATE(985), 1, + STATE(1010), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1237), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 39, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108318,36 +109716,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39121] = 6, + [40648] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4757), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4960), 1, sym__concat, - STATE(986), 1, + STATE(1023), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1209), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108373,88 +109772,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39182] = 3, - ACTIONS(3), 1, + [40710] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4962), 1, + sym_word, + ACTIONS(4965), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4968), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4971), 1, + anon_sym_DOLLAR, + ACTIONS(4974), 1, + sym__special_character, + ACTIONS(4977), 1, + anon_sym_DQUOTE, + ACTIONS(4983), 1, + aux_sym_number_token1, + ACTIONS(4986), 1, + aux_sym_number_token2, + ACTIONS(4989), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4995), 1, + anon_sym_BQUOTE, + ACTIONS(4998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5004), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5007), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5010), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3023), 1, + aux_sym__literal_repeat1, + ACTIONS(4980), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5001), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1012), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2567), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2620), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2569), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [40806] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5013), 1, + sym_word, + ACTIONS(5016), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5019), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5022), 1, anon_sym_DOLLAR, + ACTIONS(5025), 1, sym__special_character, + ACTIONS(5028), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5034), 1, aux_sym_number_token1, + ACTIONS(5037), 1, aux_sym_number_token2, + ACTIONS(5040), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5043), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5046), 1, anon_sym_BQUOTE, + ACTIONS(5049), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5055), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5058), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, - anon_sym_SEMI, + STATE(2900), 1, + aux_sym__literal_repeat1, + ACTIONS(5031), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5052), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1013), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2591), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2146), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [40900] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5063), 1, + anon_sym_DQUOTE, + ACTIONS(5067), 1, + sym_variable_name, + STATE(2580), 1, + sym_string, + ACTIONS(1197), 2, + sym__concat, + sym_test_operator, + ACTIONS(5065), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5061), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [40966] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5063), 1, + anon_sym_DQUOTE, + ACTIONS(5067), 1, + sym_variable_name, + STATE(2580), 1, + sym_string, + ACTIONS(1191), 2, + sym__concat, + sym_test_operator, + ACTIONS(5065), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5061), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + [41032] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2772), 1, + aux_sym__literal_repeat1, + STATE(3049), 1, + sym_concatenation, + STATE(2377), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2381), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -108462,51 +110080,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39292] = 3, - ACTIONS(3), 1, + [41094] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 6, + STATE(2773), 1, + aux_sym__literal_repeat1, + STATE(3054), 1, + sym_concatenation, + STATE(2378), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2385), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -108514,155 +110136,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [41156] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5069), 1, + sym_word, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5075), 1, + anon_sym_DOLLAR, + ACTIONS(5077), 1, + sym__special_character, + ACTIONS(5079), 1, + anon_sym_DQUOTE, + ACTIONS(5083), 1, aux_sym_number_token1, + ACTIONS(5085), 1, aux_sym_number_token2, + ACTIONS(5087), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5089), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5091), 1, anon_sym_BQUOTE, + ACTIONS(5093), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5097), 1, + sym_test_operator, + ACTIONS(5099), 1, + sym__brace_start, + STATE(3019), 1, + aux_sym__literal_repeat1, + ACTIONS(5081), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 6, + STATE(1020), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1972), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2618), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1974), 11, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [41250] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5069), 1, + sym_word, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5075), 1, + anon_sym_DOLLAR, + ACTIONS(5077), 1, + sym__special_character, + ACTIONS(5079), 1, + anon_sym_DQUOTE, + ACTIONS(5083), 1, + aux_sym_number_token1, + ACTIONS(5085), 1, + aux_sym_number_token2, + ACTIONS(5087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5089), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5091), 1, + anon_sym_BQUOTE, + ACTIONS(5093), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5097), 1, + sym_test_operator, + ACTIONS(5099), 1, + sym__brace_start, + STATE(3019), 1, + aux_sym__literal_repeat1, + ACTIONS(5081), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5095), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1021), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2078), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2618), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2080), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [41344] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5069), 1, + sym_word, + ACTIONS(5071), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5073), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5075), 1, anon_sym_DOLLAR, + ACTIONS(5077), 1, sym__special_character, + ACTIONS(5079), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5083), 1, aux_sym_number_token1, + ACTIONS(5085), 1, aux_sym_number_token2, + ACTIONS(5087), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5089), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5091), 1, anon_sym_BQUOTE, + ACTIONS(5093), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5097), 1, + sym_test_operator, + ACTIONS(5099), 1, + sym__brace_start, + STATE(3019), 1, + aux_sym__literal_repeat1, + ACTIONS(5081), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 6, + STATE(1022), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2082), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2618), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2084), 11, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [41438] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5069), 1, + sym_word, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5075), 1, + anon_sym_DOLLAR, + ACTIONS(5077), 1, + sym__special_character, + ACTIONS(5079), 1, + anon_sym_DQUOTE, + ACTIONS(5083), 1, + aux_sym_number_token1, + ACTIONS(5085), 1, + aux_sym_number_token2, + ACTIONS(5087), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5089), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5091), 1, + anon_sym_BQUOTE, + ACTIONS(5093), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5097), 1, + sym_test_operator, + ACTIONS(5099), 1, + sym__brace_start, + STATE(3019), 1, + aux_sym__literal_repeat1, + ACTIONS(5081), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5095), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1022), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2137), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2618), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2139), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [41532] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5101), 1, + sym_word, + ACTIONS(5104), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5110), 1, anon_sym_DOLLAR, + ACTIONS(5113), 1, sym__special_character, + ACTIONS(5116), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5122), 1, aux_sym_number_token1, + ACTIONS(5125), 1, aux_sym_number_token2, + ACTIONS(5128), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5131), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5134), 1, anon_sym_BQUOTE, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5143), 1, + sym_test_operator, + ACTIONS(5146), 1, + sym__brace_start, + STATE(3019), 1, + aux_sym__literal_repeat1, + ACTIONS(5119), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5140), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39457] = 6, + STATE(1022), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2618), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2146), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [41626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(5149), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(5152), 1, sym__concat, - STATE(986), 1, + STATE(1023), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + ACTIONS(1237), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 39, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108688,36 +110561,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39518] = 6, + [41688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4836), 1, sym__concat, - STATE(985), 1, + STATE(993), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(276), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, + ACTIONS(237), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108743,17 +110617,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39579] = 3, + [41750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(4757), 1, + aux_sym_concatenation_token1, + ACTIONS(4759), 1, sym__concat, + STATE(1011), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108764,9 +110644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108780,7 +110659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108795,17 +110673,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39634] = 3, + [41812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(5155), 1, + sym__special_character, + STATE(932), 1, + aux_sym__literal_repeat1, + ACTIONS(276), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, + ACTIONS(237), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108816,6 +110697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108832,9 +110715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -108847,36 +110728,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39689] = 6, + [41872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4836), 1, sym__concat, - STATE(986), 1, + STATE(995), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(1226), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108902,36 +110784,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39750] = 6, + [41934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4836), 1, sym__concat, - STATE(985), 1, + STATE(995), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(1226), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 39, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108957,36 +110841,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39811] = 6, + [41998] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, - aux_sym_concatenation_token1, - ACTIONS(4987), 1, - sym__concat, - STATE(986), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, - sym_file_descriptor, + ACTIONS(4294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4771), 1, sym_variable_name, + STATE(6656), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4651), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 39, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108994,7 +110884,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -109012,23 +110901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39872] = 8, + [42068] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(5159), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(5163), 1, sym_variable_name, - STATE(1912), 1, + STATE(2451), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(5161), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(5157), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -109037,7 +110926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 31, + ACTIONS(1195), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -109046,6 +110935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109054,7 +110944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -109069,23 +110959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39937] = 8, + [42134] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(5159), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(5163), 1, sym_variable_name, - STATE(1912), 1, + STATE(2451), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(5161), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(5157), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -109094,7 +110984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 31, + ACTIONS(1183), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -109103,6 +110993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109111,7 +111002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -109126,32 +111017,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40002] = 3, + [42200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4771), 1, + sym_variable_name, + STATE(6656), 1, + sym_subscript, + ACTIONS(4265), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4290), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + STATE(4651), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 17, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4257), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109160,35 +111076,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [42268] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3714), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3716), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3722), 1, anon_sym_DQUOTE, + ACTIONS(3724), 1, + aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3728), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3732), 1, + anon_sym_BQUOTE, + ACTIONS(3734), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(5167), 1, + sym__special_character, + ACTIONS(5169), 1, + sym_test_operator, + STATE(4265), 1, + aux_sym__literal_repeat1, + STATE(4561), 1, + sym_concatenation, + ACTIONS(2381), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3736), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5165), 3, sym_raw_string, sym_ansi_c_string, + sym_word, + STATE(5129), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [42360] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3714), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3716), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(3724), 1, aux_sym_number_token1, + ACTIONS(3726), 1, aux_sym_number_token2, + ACTIONS(3728), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3732), 1, anon_sym_BQUOTE, + ACTIONS(3734), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(5167), 1, + sym__special_character, + ACTIONS(5173), 1, + sym_test_operator, + STATE(4300), 1, + aux_sym__literal_repeat1, + STATE(4611), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3736), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5171), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [40057] = 3, + STATE(5131), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [42452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4763), 1, sym__concat, + STATE(953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(4648), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109215,7 +111260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109230,22 +111274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40112] = 6, + [42514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4761), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(4763), 1, sym__concat, - STATE(1120), 1, + STATE(956), 1, aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(4654), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, + ACTIONS(4652), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109256,8 +111300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109285,20 +111330,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40173] = 5, + [42576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(4761), 1, + aux_sym_concatenation_token1, + ACTIONS(4763), 1, + sym__concat, + STATE(956), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 40, + ACTIONS(4686), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109309,7 +111356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109327,6 +111373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109339,22 +111386,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40232] = 6, + [42638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5175), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5178), 1, sym__concat, - STATE(982), 1, + STATE(1038), 1, aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 39, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109394,20 +111441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40293] = 5, + [42699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 40, + ACTIONS(1260), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109418,7 +111462,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109435,7 +111478,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109448,17 +111493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40352] = 3, + [42754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1250), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109469,9 +111515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109500,17 +111545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40407] = 3, + [42809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(1235), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109552,24 +111597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40462] = 7, + [42864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - ACTIONS(5142), 1, - anon_sym_LPAREN, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1266), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109580,6 +111619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -109594,6 +111634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109608,17 +111649,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40525] = 3, + [42919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1083), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(4648), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109630,8 +111677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109645,7 +111690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109660,17 +111704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40580] = 3, + [42980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(4652), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109682,8 +111732,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109697,7 +111745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109712,17 +111759,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40635] = 3, + [43041] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(5189), 1, + sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [43106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109733,9 +111838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109764,17 +111868,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40690] = 3, + [43161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1083), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4555), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(4553), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109786,8 +111896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109801,7 +111909,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109816,7 +111923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40745] = 3, + [43222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1258), 6, @@ -109868,17 +111975,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40800] = 3, + [43277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1083), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(4682), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109890,8 +112003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109905,7 +112016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109920,17 +112030,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40855] = 3, + [43338] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(4686), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109942,8 +112058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109957,7 +112071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109972,17 +112085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40910] = 3, + [43399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1312), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110024,17 +112137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40965] = 3, + [43454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1264), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110045,9 +112158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110076,18 +112189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41020] = 3, + [43509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, + STATE(1115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4555), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(4553), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110098,7 +112215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110113,7 +112230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110128,32 +112244,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41075] = 3, + [43570] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(5197), 1, + anon_sym_DQUOTE, + ACTIONS(5201), 1, + sym_variable_name, + STATE(2713), 1, + sym_string, + ACTIONS(5199), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, - anon_sym_SEMI, + ACTIONS(5195), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110165,10 +112289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110180,32 +112301,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41130] = 3, + [43635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(5197), 1, + anon_sym_DQUOTE, + ACTIONS(5201), 1, + sym_variable_name, + STATE(2713), 1, + sym_string, + ACTIONS(5199), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, - anon_sym_SEMI, + ACTIONS(5195), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110217,10 +112346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110232,88 +112358,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41185] = 9, - ACTIONS(71), 1, + [43700] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 1, - anon_sym_DQUOTE, - ACTIONS(5151), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5153), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5155), 1, - anon_sym_BQUOTE, - ACTIONS(5157), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2337), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5145), 14, - anon_sym_EQ, + ACTIONS(5203), 1, + sym__special_character, + STATE(1056), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5147), 25, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [41252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110327,9 +112399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110342,43 +112412,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41307] = 12, + [43759] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 1, + ACTIONS(5208), 1, + anon_sym_DQUOTE, + ACTIONS(5212), 1, sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4605), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + STATE(2492), 1, + sym_string, + ACTIONS(5210), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5159), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + ACTIONS(5206), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110386,12 +112453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110403,18 +112469,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41380] = 3, + [43824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4563), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(4561), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110425,7 +112496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110440,7 +112510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110455,17 +112524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41435] = 3, + [43885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1268), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110476,9 +112545,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110507,18 +112576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41490] = 3, + [43940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1272), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110529,8 +112597,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110559,18 +112628,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41545] = 3, + [43995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4692), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(4690), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110581,7 +112655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110596,7 +112669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110611,18 +112683,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41600] = 3, + [44056] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1197), 1, + sym_test_operator, + ACTIONS(5189), 1, + sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [44121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(5189), 1, + sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [44186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1256), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110634,6 +112819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110663,23 +112849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41655] = 6, + [44241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 6, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 38, + ACTIONS(1231), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110690,7 +112869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110718,17 +112901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41716] = 3, + [44296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, + STATE(1115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(4648), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110739,7 +112927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -110755,7 +112942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110770,23 +112956,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41771] = 6, + [44357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5193), 1, sym__concat, - STATE(1115), 1, + STATE(1116), 1, aux_sym_concatenation_repeat1, - ACTIONS(4305), 6, + ACTIONS(4654), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 38, + ACTIONS(4652), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110797,6 +112982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110825,75 +113011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41832] = 3, + [44418] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [41887] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5174), 1, + ACTIONS(5208), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, + ACTIONS(5212), 1, sym_variable_name, - STATE(2581), 1, + STATE(2492), 1, sym_string, - ACTIONS(5176), 2, + ACTIONS(5210), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5172), 8, + ACTIONS(5206), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -110902,7 +113036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 31, + ACTIONS(1183), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -110934,40 +113068,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41952] = 8, + [44483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - anon_sym_DQUOTE, - ACTIONS(5178), 1, - sym_variable_name, - STATE(2581), 1, - sym_string, - ACTIONS(5176), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5172), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(4682), 39, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110979,7 +113109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110991,100 +113123,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42017] = 8, + [44544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1116), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(4927), 1, - anon_sym_DQUOTE, - ACTIONS(4931), 1, - sym_variable_name, - STATE(2500), 1, - sym_string, - ACTIONS(4929), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 39, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [42082] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5165), 1, - sym_variable_name, - ACTIONS(5182), 1, - aux_sym_heredoc_redirect_token1, - STATE(6701), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4605), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5180), 3, - anon_sym_SEMI, - anon_sym_AMP, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111092,6 +113160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -111109,98 +113178,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42155] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4927), 1, - anon_sym_DQUOTE, - ACTIONS(4931), 1, - sym_variable_name, - STATE(2500), 1, - sym_string, - ACTIONS(4929), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [42220] = 8, + [44605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, - anon_sym_DQUOTE, - ACTIONS(4951), 1, - sym_variable_name, - STATE(2777), 1, - sym_string, - ACTIONS(4949), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(5214), 1, + aux_sym_concatenation_token1, + ACTIONS(5216), 1, + sym__concat, + STATE(1079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4945), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 39, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111209,9 +113216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -111223,36 +113233,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42285] = 6, + [44666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(4989), 1, + ACTIONS(5218), 1, sym__concat, - STATE(988), 1, + STATE(1010), 1, aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, + ACTIONS(1209), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 39, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111261,6 +113271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -111276,38 +113287,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [42346] = 6, + [44727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(4989), 1, + ACTIONS(5220), 1, sym__concat, - STATE(989), 1, + STATE(1010), 1, aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + ACTIONS(1215), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 39, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111316,6 +113326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -111331,42 +113342,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [42407] = 8, + [44788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 1, - sym_variable_name, - STATE(2456), 1, - sym_string, - ACTIONS(5196), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1298), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5192), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 31, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 40, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111378,7 +113380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -111390,17 +113395,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42472] = 3, - ACTIONS(3), 1, + [44843] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(5222), 1, + sym_word, + ACTIONS(5224), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5230), 1, + sym__special_character, + ACTIONS(5232), 1, + anon_sym_DQUOTE, + ACTIONS(5236), 1, + aux_sym_number_token1, + ACTIONS(5238), 1, + aux_sym_number_token2, + ACTIONS(5240), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5242), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5244), 1, + anon_sym_BQUOTE, + ACTIONS(5246), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5250), 1, + sym_test_operator, + ACTIONS(5252), 1, + sym__brace_start, + STATE(5274), 1, + aux_sym__literal_repeat1, + STATE(5520), 1, + sym_concatenation, + ACTIONS(5234), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5248), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2379), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5204), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2381), 11, sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [44936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, + STATE(1083), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111411,8 +113493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -111427,7 +113507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111442,17 +113521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42527] = 3, + [44997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1258), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111464,7 +113544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -111494,32 +113573,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42582] = 3, + [45052] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5214), 1, + aux_sym_concatenation_token1, + ACTIONS(5254), 1, sym__concat, + STATE(1079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111531,7 +113614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111546,32 +113628,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42637] = 3, + [45113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(5256), 1, + aux_sym_concatenation_token1, + ACTIONS(5259), 1, sym__concat, + STATE(1079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111583,7 +113669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111598,32 +113683,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42692] = 3, + [45174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5262), 1, + aux_sym_concatenation_token1, + ACTIONS(5264), 1, sym__concat, + STATE(1087), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111632,10 +113721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111649,27 +113736,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [42747] = 5, + [45235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(5262), 1, + aux_sym_concatenation_token1, + ACTIONS(5266), 1, + sym__concat, + STATE(1087), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 40, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -111679,7 +113768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111688,10 +113776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111703,19 +113791,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [42806] = 3, - ACTIONS(3), 1, + [45296] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(5224), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5226), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5230), 1, + sym__special_character, + ACTIONS(5232), 1, + anon_sym_DQUOTE, + ACTIONS(5236), 1, + aux_sym_number_token1, + ACTIONS(5238), 1, + aux_sym_number_token2, + ACTIONS(5240), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5242), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5244), 1, + anon_sym_BQUOTE, + ACTIONS(5246), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5252), 1, + sym__brace_start, + ACTIONS(5268), 1, + sym_word, + ACTIONS(5272), 1, + sym_test_operator, + STATE(5291), 1, + aux_sym__literal_repeat1, + STATE(5505), 1, + sym_concatenation, + ACTIONS(5248), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5270), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2383), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5246), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2385), 11, sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [45389] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5274), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111726,7 +113891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -111741,7 +113905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111756,32 +113919,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42861] = 3, + [45450] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(4123), 1, + sym_variable_name, + STATE(2021), 1, + sym_string, + ACTIONS(4121), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, - anon_sym_SEMI, + ACTIONS(4119), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111790,13 +113961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -111808,41 +113976,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42916] = 10, + [45515] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4997), 1, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(4123), 1, sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4492), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + STATE(2021), 1, + sym_string, + ACTIONS(4121), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, - anon_sym_SEMI, + ACTIONS(4119), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111850,12 +114017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -111867,22 +114033,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42985] = 6, + [45580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5181), 1, aux_sym_concatenation_token1, - ACTIONS(5200), 1, + ACTIONS(5276), 1, sym__concat, - STATE(895), 1, + STATE(1088), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1215), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111893,7 +114060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -111922,36 +114088,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43046] = 6, + [45641] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5278), 1, aux_sym_concatenation_token1, - ACTIONS(5202), 1, + ACTIONS(5281), 1, sym__concat, - STATE(895), 1, + STATE(1087), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1237), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111960,7 +114126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -111976,18 +114141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [43107] = 3, + [45702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5284), 1, + aux_sym_concatenation_token1, + ACTIONS(5287), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111998,8 +114170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112014,7 +114184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112029,17 +114198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43162] = 3, + [45763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112051,7 +114221,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112081,32 +114250,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43217] = 3, + [45818] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5214), 1, + aux_sym_concatenation_token1, + ACTIONS(5290), 1, sym__concat, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112118,7 +114291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112133,17 +114305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43272] = 3, + [45879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1276), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112154,9 +114326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112185,17 +114357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43327] = 3, + [45934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1260), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112237,32 +114409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43382] = 3, + [45989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, - sym_file_descriptor, + ACTIONS(5214), 1, + aux_sym_concatenation_token1, + ACTIONS(5290), 1, sym__concat, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(5292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112274,7 +114450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112289,26 +114464,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43437] = 5, + [46050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(5214), 1, + aux_sym_concatenation_token1, + ACTIONS(5290), 1, + sym__concat, + STATE(1078), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 40, + ACTIONS(5296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -112318,7 +114494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112331,6 +114506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112343,17 +114519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43496] = 3, + [46111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, + ACTIONS(1235), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112395,18 +114571,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43551] = 3, + [46166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1284), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112417,8 +114592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112447,32 +114623,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43606] = 3, + [46221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, - sym_file_descriptor, + ACTIONS(5262), 1, + aux_sym_concatenation_token1, + ACTIONS(5300), 1, sym__concat, + STATE(1080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112481,10 +114661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112498,19 +114676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [43661] = 3, + [46282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, + STATE(1116), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4563), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(4561), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112521,7 +114704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112536,7 +114719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112551,32 +114733,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43716] = 3, + [46343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, - sym_file_descriptor, + ACTIONS(5262), 1, + aux_sym_concatenation_token1, + ACTIONS(5300), 1, sym__concat, + STATE(1080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(5292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112585,10 +114771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112602,37 +114786,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [43771] = 5, + [46404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - sym__special_character, - STATE(1005), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 5, + ACTIONS(5262), 1, + aux_sym_concatenation_token1, + ACTIONS(5300), 1, + sym__concat, + STATE(1081), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 40, + ACTIONS(5296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112641,10 +114826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112656,33 +114841,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [43830] = 3, + [46465] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(2020), 1, + anon_sym_DQUOTE, + ACTIONS(4203), 1, + sym_variable_name, + STATE(1576), 1, + sym_string, + ACTIONS(4201), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, - anon_sym_SEMI, + ACTIONS(4199), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112691,13 +114885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -112709,32 +114900,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43885] = 3, + [46530] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(5304), 1, + anon_sym_DQUOTE, + ACTIONS(5308), 1, + sym_variable_name, + STATE(2834), 1, + sym_string, + ACTIONS(5306), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, - anon_sym_SEMI, + ACTIONS(5302), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112743,13 +114943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -112761,55 +114957,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43940] = 9, + [46595] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 1, + ACTIONS(2020), 1, + anon_sym_DQUOTE, + ACTIONS(4203), 1, sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(4161), 2, + STATE(1576), 1, + sym_string, + ACTIONS(4201), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, + ACTIONS(4199), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - STATE(4492), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 16, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(4157), 20, + [46660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112818,19 +115048,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [44007] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [46715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1312), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112842,6 +115088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112871,23 +115118,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44062] = 6, + [46770] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5310), 1, + sym_word, + ACTIONS(5312), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5316), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + sym__special_character, + ACTIONS(5320), 1, + anon_sym_DQUOTE, + ACTIONS(5324), 1, + aux_sym_number_token1, + ACTIONS(5326), 1, + aux_sym_number_token2, + ACTIONS(5328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5332), 1, + anon_sym_BQUOTE, + ACTIONS(5334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5338), 1, + sym_test_operator, + ACTIONS(5340), 1, + sym__brace_start, + STATE(3319), 1, + aux_sym__literal_repeat1, + ACTIONS(5322), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1120), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(1972), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2821), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1974), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [46863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4370), 6, + ACTIONS(5342), 1, + sym__special_character, + STATE(1107), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, + ACTIONS(1318), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112898,7 +115213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112913,7 +115231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112926,36 +115243,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44123] = 6, + [46922] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5310), 1, + sym_word, + ACTIONS(5312), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5316), 1, + anon_sym_DOLLAR, + ACTIONS(5318), 1, + sym__special_character, + ACTIONS(5320), 1, + anon_sym_DQUOTE, + ACTIONS(5324), 1, + aux_sym_number_token1, + ACTIONS(5326), 1, + aux_sym_number_token2, + ACTIONS(5328), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5332), 1, + anon_sym_BQUOTE, + ACTIONS(5334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5338), 1, + sym_test_operator, + ACTIONS(5340), 1, + sym__brace_start, + STATE(3319), 1, + aux_sym__literal_repeat1, + ACTIONS(5322), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1121), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2078), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2821), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2080), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [47015] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1115), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4443), 6, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(4197), 1, + sym_variable_name, + STATE(1938), 1, + sym_string, + ACTIONS(4195), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 38, - anon_sym_SEMI, + ACTIONS(4193), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112964,12 +115356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -112981,22 +115371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44184] = 6, + [47080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(5214), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(5290), 1, sym__concat, - STATE(986), 1, + STATE(1078), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(2084), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 39, + ACTIONS(2082), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113036,43 +115426,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44245] = 12, + [47141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - sym_variable_name, - ACTIONS(5208), 1, - aux_sym_heredoc_redirect_token1, - STATE(6701), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4605), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(5214), 1, + aux_sym_concatenation_token1, + ACTIONS(5290), 1, + sym__concat, + STATE(1078), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5206), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(2137), 39, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113080,6 +115463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -113097,45 +115481,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44318] = 13, + [47202] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(4997), 1, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(4197), 1, sym_variable_name, - ACTIONS(5212), 1, - aux_sym_heredoc_redirect_token1, - STATE(6672), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4492), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + STATE(1938), 1, + sym_string, + ACTIONS(4195), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5210), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 26, + ACTIONS(4193), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113143,39 +115522,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44393] = 6, + [47267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5193), 1, sym__concat, - STATE(1114), 1, + STATE(1115), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 6, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113186,6 +115564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113214,23 +115593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44454] = 6, + [47328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1115), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 6, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(1296), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113242,6 +115615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -113255,6 +115630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113269,23 +115645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44515] = 6, + [47383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5345), 1, sym__concat, - STATE(1114), 1, + STATE(1038), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 6, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113296,6 +115671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113324,23 +115700,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44576] = 6, + [47444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5347), 1, sym__concat, - STATE(1115), 1, + STATE(1038), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 6, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113351,6 +115726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113379,21 +115755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44637] = 8, + [47505] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(260), 1, anon_sym_DQUOTE, ACTIONS(1197), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(5189), 1, sym_variable_name, - STATE(2219), 1, + STATE(2286), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(5187), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(5185), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -113434,81 +115810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [44702] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4957), 1, - sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [44767] = 6, + [47570] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5193), 1, sym__concat, - STATE(1120), 1, + STATE(1116), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(4692), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 39, + ACTIONS(4690), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113548,22 +115867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44828] = 6, + [47631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(982), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1272), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113574,6 +115888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -113589,6 +115904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113603,180 +115919,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44889] = 6, - ACTIONS(3), 1, + [47686] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5310), 1, + sym_word, + ACTIONS(5312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5314), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5316), 1, anon_sym_DOLLAR, + ACTIONS(5318), 1, sym__special_character, + ACTIONS(5320), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5324), 1, aux_sym_number_token1, + ACTIONS(5326), 1, aux_sym_number_token2, + ACTIONS(5328), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5332), 1, anon_sym_BQUOTE, + ACTIONS(5334), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [44950] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(982), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, - sym_file_descriptor, + ACTIONS(5338), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5340), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3319), 1, + aux_sym__literal_repeat1, + ACTIONS(5322), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1122), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2082), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2821), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2084), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [47779] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5310), 1, + sym_word, + ACTIONS(5312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5314), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5316), 1, anon_sym_DOLLAR, + ACTIONS(5318), 1, sym__special_character, + ACTIONS(5320), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5324), 1, aux_sym_number_token1, + ACTIONS(5326), 1, aux_sym_number_token2, + ACTIONS(5328), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5332), 1, anon_sym_BQUOTE, + ACTIONS(5334), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [45011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 7, - sym_file_descriptor, - sym__concat, + ACTIONS(5338), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5340), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3319), 1, + aux_sym__literal_repeat1, + ACTIONS(5322), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5336), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1122), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2137), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2821), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2139), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [47872] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5349), 1, + sym_word, + ACTIONS(5352), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5355), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5358), 1, anon_sym_DOLLAR, + ACTIONS(5361), 1, sym__special_character, + ACTIONS(5364), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5370), 1, aux_sym_number_token1, + ACTIONS(5373), 1, aux_sym_number_token2, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5379), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5382), 1, anon_sym_BQUOTE, + ACTIONS(5385), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5391), 1, + sym_test_operator, + ACTIONS(5394), 1, + sym__brace_start, + STATE(3319), 1, + aux_sym__literal_repeat1, + ACTIONS(5367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5388), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [45066] = 3, + STATE(1122), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2821), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2146), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [47965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1264), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113788,6 +116154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113817,48 +116184,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45121] = 22, + [48020] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5214), 1, + ACTIONS(5397), 1, sym_word, - ACTIONS(5216), 1, + ACTIONS(5399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(5401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(5403), 1, anon_sym_DOLLAR, - ACTIONS(5222), 1, + ACTIONS(5405), 1, sym__special_character, - ACTIONS(5224), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(5411), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(5413), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(5415), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(5417), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(5419), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(5421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5242), 1, + ACTIONS(5425), 1, sym_test_operator, - ACTIONS(5244), 1, + ACTIONS(5427), 1, sym__brace_start, - STATE(5266), 1, + STATE(5284), 1, aux_sym__literal_repeat1, - STATE(5461), 1, + STATE(5473), 1, sym_concatenation, - ACTIONS(5226), 2, + ACTIONS(5409), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5240), 2, + ACTIONS(5423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2271), 7, + ACTIONS(2379), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -113866,7 +116233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5139), 9, + STATE(5162), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -113876,35 +116243,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 11, + ACTIONS(2381), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [45214] = 6, + anon_sym_LT_LT_LT, + [48113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(1262), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113915,6 +116277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113929,6 +116292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113943,48 +116307,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45275] = 22, + [48168] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(5399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(5401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(5403), 1, anon_sym_DOLLAR, - ACTIONS(5222), 1, + ACTIONS(5405), 1, sym__special_character, - ACTIONS(5224), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(5411), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(5413), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(5415), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(5417), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(5419), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(5421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(5427), 1, sym__brace_start, - ACTIONS(5246), 1, + ACTIONS(5429), 1, sym_word, - ACTIONS(5250), 1, + ACTIONS(5433), 1, sym_test_operator, - STATE(5394), 1, + STATE(5287), 1, aux_sym__literal_repeat1, - STATE(5464), 1, + STATE(5499), 1, sym_concatenation, - ACTIONS(5240), 2, + ACTIONS(5423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5248), 2, + ACTIONS(5431), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2275), 7, + ACTIONS(2383), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -113992,7 +116356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5174), 9, + STATE(5169), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -114002,35 +116366,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2277), 11, + ACTIONS(2385), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [45368] = 6, + anon_sym_LT_LT_LT, + [48261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5252), 1, - sym__concat, - STATE(1116), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 6, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1300), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114042,6 +116400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114055,6 +116415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114069,36 +116430,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45429] = 6, + [48316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5214), 1, aux_sym_concatenation_token1, - ACTIONS(5254), 1, + ACTIONS(5290), 1, sym__concat, - STATE(1116), 1, + STATE(1071), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(4650), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(4648), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114124,36 +116485,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45490] = 6, + [48377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, + ACTIONS(5214), 1, aux_sym_concatenation_token1, - ACTIONS(5259), 1, + ACTIONS(5290), 1, sym__concat, - STATE(1116), 1, + STATE(1078), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(4654), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(4652), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114179,36 +116540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45551] = 6, + [48438] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4370), 5, + ACTIONS(5304), 1, + anon_sym_DQUOTE, + ACTIONS(5308), 1, + sym_variable_name, + STATE(2834), 1, + sym_string, + ACTIONS(5306), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 39, - anon_sym_SEMI, + ACTIONS(5302), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114217,12 +116583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -114234,36 +116597,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45612] = 6, + [48503] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5214), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5290), 1, sym__concat, - STATE(982), 1, + STATE(1071), 1, aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, + ACTIONS(4684), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 39, + ACTIONS(4682), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114289,36 +116652,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45673] = 6, + [48564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5214), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5290), 1, sym__concat, - STATE(1120), 1, + STATE(1078), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4688), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(4686), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114344,22 +116707,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45734] = 6, + [48625] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5262), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1197), 1, + sym_test_operator, + ACTIONS(5189), 1, + sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [48690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114370,7 +116786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -114385,6 +116801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114399,36 +116816,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45795] = 6, + [48745] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, - aux_sym_concatenation_token1, - ACTIONS(4987), 1, - sym__concat, - STATE(985), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, - sym_file_descriptor, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(5189), 1, sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [48810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 39, + ACTIONS(1276), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114440,6 +116910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114454,36 +116925,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45856] = 6, + [48865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, - aux_sym_concatenation_token1, - ACTIONS(4987), 1, - sym__concat, - STATE(986), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1274), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114495,6 +116962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114509,36 +116977,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45917] = 6, + [48920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_concatenation_token1, - ACTIONS(4989), 1, - sym__concat, - STATE(988), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1294), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 39, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114547,8 +117011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114562,24 +117028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [45978] = 6, + [48975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(5214), 1, aux_sym_concatenation_token1, - ACTIONS(4989), 1, + ACTIONS(5290), 1, sym__concat, - STATE(989), 1, + STATE(1071), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(5437), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(5435), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114602,6 +117067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -114617,38 +117083,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46039] = 6, + [49036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5214), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(5290), 1, sym__concat, - STATE(1075), 1, + STATE(1078), 1, aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + ACTIONS(5441), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 39, + ACTIONS(5439), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114674,22 +117139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46100] = 6, + [49097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1226), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(1219), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114701,7 +117160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114729,24 +117191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46161] = 7, + [49152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - ACTIONS(5272), 1, - anon_sym_LPAREN, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, + ACTIONS(1280), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114758,6 +117213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114771,6 +117228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114785,41 +117243,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46224] = 10, + [49207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4605), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114827,9 +117276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114844,22 +117295,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46293] = 6, + [49262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(1075), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1288), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114870,8 +117316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114885,6 +117332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114899,45 +117347,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46354] = 9, + [49317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, + ACTIONS(5262), 1, + aux_sym_concatenation_token1, + ACTIONS(5300), 1, + sym__concat, + STATE(1080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5445), 5, + sym_file_descriptor, sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(4161), 2, sym_test_operator, sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4605), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 19, + ACTIONS(5443), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114947,7 +117372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -114957,124 +117385,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [46421] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1197), 1, - sym_test_operator, - ACTIONS(4957), 1, - sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [46486] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3952), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3954), 1, aux_sym_number_token2, - ACTIONS(3956), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(5277), 1, - sym__special_character, - ACTIONS(5279), 1, - sym_test_operator, - STATE(4348), 1, - aux_sym__literal_repeat1, - STATE(4860), 1, - sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5275), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(5237), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 16, + [49378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 1, + aux_sym_concatenation_token1, + ACTIONS(5300), 1, + sym__concat, + STATE(1081), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5449), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5447), 39, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115084,167 +117440,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [46577] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3952), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3954), 1, aux_sym_number_token2, - ACTIONS(3956), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(5277), 1, - sym__special_character, - ACTIONS(5283), 1, - sym_test_operator, - STATE(4368), 1, - aux_sym__literal_repeat1, - STATE(4735), 1, - sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5281), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(5241), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [46668] = 8, + [49439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, + ACTIONS(1298), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4957), 1, - sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 41, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [46733] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5194), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 1, - sym_variable_name, - STATE(2456), 1, - sym_string, - ACTIONS(5196), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5192), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115256,7 +117494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -115268,43 +117509,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46798] = 12, + [49494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - sym_variable_name, - ACTIONS(5287), 1, - aux_sym_heredoc_redirect_token1, - STATE(6701), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4605), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5285), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 41, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115312,9 +117542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115329,26 +117561,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46871] = 6, + [49549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, - aux_sym_concatenation_token1, - ACTIONS(5295), 1, - sym__concat, - STATE(1203), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(5451), 1, + sym__special_character, + STATE(1056), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 39, + ACTIONS(4648), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -115358,6 +117590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115366,10 +117599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115381,20 +117614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46931] = 3, + [49608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1280), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115405,6 +117636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115434,20 +117667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46985] = 5, + [49663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5297), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1284), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115458,9 +117688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115474,7 +117704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115487,31 +117719,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47043] = 3, + [49718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1248), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115538,22 +117771,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47097] = 3, + [49773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(5451), 1, + sym__special_character, + STATE(1056), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(4682), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -115563,6 +117800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115574,9 +117812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115589,31 +117825,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47151] = 3, + [49832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1270), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115640,31 +117877,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47205] = 3, + [49887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1290), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115691,22 +117929,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47259] = 3, + [49942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(5451), 1, + sym__special_character, + STATE(1056), 1, + aux_sym__literal_repeat1, + ACTIONS(4555), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(4553), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -115716,6 +117958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115724,11 +117967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115740,17 +117982,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47313] = 3, + [50001] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1197), 1, + sym_test_operator, + ACTIONS(5063), 1, + anon_sym_DQUOTE, + ACTIONS(5067), 1, + sym_variable_name, + STATE(2580), 1, + sym_string, + ACTIONS(5065), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5061), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [50066] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(5063), 1, + anon_sym_DQUOTE, + ACTIONS(5067), 1, + sym_variable_name, + STATE(2580), 1, + sym_string, + ACTIONS(5065), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5061), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [50131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, ACTIONS(1304), 40, anon_sym_SEMI, @@ -115758,15 +118114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115775,6 +118131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -115791,33 +118148,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47367] = 3, + [50186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, sym__concat, - sym_variable_name, + STATE(1072), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115826,9 +118187,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115842,37 +118203,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47421] = 6, + [50247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(4834), 1, aux_sym_concatenation_token1, - ACTIONS(5295), 1, + ACTIONS(4836), 1, sym__concat, - STATE(1201), 1, + STATE(1073), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1226), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115881,6 +118242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -115896,19 +118258,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [47481] = 3, + [50308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, sym__concat, + ACTIONS(5453), 1, + anon_sym_LPAREN, + STATE(1073), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1226), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115919,7 +118287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115934,7 +118301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115949,17 +118315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47535] = 3, + [50371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1304), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115970,8 +118336,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116000,16 +118367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47589] = 3, + [50426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 41, + ACTIONS(1292), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116020,7 +118388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -116037,6 +118404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116051,17 +118419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47643] = 3, + [50481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1252), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116072,8 +118440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116102,17 +118471,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47697] = 3, + [50536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, sym__concat, + STATE(1072), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116123,7 +118497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -116138,7 +118512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116153,16 +118526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47751] = 3, + [50597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 41, + ACTIONS(1308), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116173,7 +118547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -116190,6 +118563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116204,17 +118578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47805] = 3, + [50652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1254), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116225,7 +118600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -116255,31 +118630,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47859] = 3, + [50707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1288), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116306,17 +118682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47913] = 3, + [50762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1304), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116327,6 +118703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -116357,17 +118734,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47967] = 3, + [50817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1252), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116378,6 +118755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -116408,35 +118786,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48021] = 6, + [50872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - aux_sym_concatenation_token1, - ACTIONS(5302), 1, - sym__concat, - STATE(1161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 39, + ACTIONS(1308), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116448,6 +118823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116462,20 +118838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48081] = 5, + [50927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - sym__special_character, - STATE(1159), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1252), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116502,7 +118875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116515,17 +118890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48139] = 3, + [50982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116536,7 +118912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -116566,35 +118942,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48193] = 6, + [51037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - aux_sym_concatenation_token1, - ACTIONS(5307), 1, - sym__concat, - STATE(1166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1254), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116606,6 +118979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116620,35 +118994,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48253] = 6, + [51092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - aux_sym_concatenation_token1, - ACTIONS(5309), 1, - sym__concat, - STATE(1166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1314), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116660,6 +119031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116674,16 +119046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48313] = 3, + [51147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5451), 1, + sym__special_character, + STATE(1056), 1, + aux_sym__literal_repeat1, + ACTIONS(4672), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(4670), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116712,7 +119088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116725,31 +119100,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48367] = 3, + [51206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5181), 1, + aux_sym_concatenation_token1, + ACTIONS(5183), 1, sym__concat, - sym_variable_name, + STATE(1083), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4672), 6, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(4670), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116758,9 +119138,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116774,37 +119154,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48421] = 6, + [51267] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - aux_sym_concatenation_token1, - ACTIONS(5302), 1, - sym__concat, - STATE(1162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(4079), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4093), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, + anon_sym_BQUOTE, + ACTIONS(4099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(5458), 1, + sym__special_character, + ACTIONS(5460), 1, + sym_test_operator, + STATE(4423), 1, + aux_sym__literal_repeat1, + STATE(4756), 1, + sym_concatenation, + ACTIONS(2381), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5456), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5238), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [51358] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4081), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4093), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, + anon_sym_BQUOTE, + ACTIONS(4099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(5458), 1, + sym__special_character, + ACTIONS(5464), 1, + sym_test_operator, + STATE(4414), 1, + aux_sym__literal_repeat1, + STATE(4931), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4101), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5462), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5242), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [51449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 39, + ACTIONS(1252), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116816,6 +119332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116830,35 +119347,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48481] = 6, + [51504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, - aux_sym_concatenation_token1, - ACTIONS(5314), 1, - sym__concat, - STATE(1166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1282), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116870,6 +119384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116884,31 +119399,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48541] = 3, + [51559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(5466), 1, + sym__special_character, + STATE(1107), 1, + aux_sym__literal_repeat1, + ACTIONS(276), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(237), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116920,9 +119440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116935,31 +119453,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48595] = 3, + [51618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1286), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116986,35 +119505,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48649] = 6, + [51673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - aux_sym_concatenation_token1, - ACTIONS(5302), 1, - sym__concat, - STATE(1161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1292), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117026,6 +119542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117040,31 +119557,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48709] = 3, + [51728] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, sym__concat, - sym_variable_name, + ACTIONS(5468), 1, + anon_sym_LPAREN, + STATE(1073), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1226), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117073,9 +119596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117089,33 +119612,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48763] = 3, + [51791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, - sym_variable_name, + STATE(1115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4672), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4670), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117124,9 +119651,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117140,33 +119667,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48817] = 3, + [51852] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5475), 1, + anon_sym_DQUOTE, + ACTIONS(5477), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5479), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5481), 1, + anon_sym_BQUOTE, + ACTIONS(5483), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2449), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5471), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5473), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [51919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, - sym_variable_name, + STATE(1221), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4686), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117178,7 +119766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117193,31 +119780,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48871] = 3, + [51979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(5485), 1, + sym__special_character, + STATE(1277), 1, + aux_sym__literal_repeat1, + ACTIONS(4555), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(4553), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117226,11 +119817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -117242,33 +119832,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48925] = 3, + [52037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5487), 1, + aux_sym_concatenation_token1, + ACTIONS(5489), 1, sym__concat, + STATE(1195), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117277,10 +119870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117294,32 +119885,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [48979] = 3, + [52097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117328,7 +119920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -117345,102 +119936,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49033] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5317), 1, - sym_word, - ACTIONS(5319), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, - anon_sym_DOLLAR, - ACTIONS(5325), 1, - sym__special_character, - ACTIONS(5327), 1, - anon_sym_DQUOTE, - ACTIONS(5331), 1, - aux_sym_number_token1, - ACTIONS(5333), 1, - aux_sym_number_token2, - ACTIONS(5335), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, - anon_sym_BQUOTE, - ACTIONS(5341), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5345), 1, - sym_test_operator, - ACTIONS(5347), 1, - sym__brace_start, - STATE(5405), 1, - aux_sym__literal_repeat1, - STATE(5594), 1, - sym_concatenation, - ACTIONS(5329), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2271), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5350), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2273), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [49125] = 3, + [52151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5487), 1, + aux_sym_concatenation_token1, + ACTIONS(5491), 1, sym__concat, + STATE(1195), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117449,10 +119975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117466,32 +119990,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49179] = 3, + [52211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5493), 1, + aux_sym_concatenation_token1, + ACTIONS(5495), 1, sym__concat, + STATE(1206), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5445), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(5443), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117500,10 +120029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117517,40 +120044,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49233] = 8, + [52271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, - anon_sym_DQUOTE, - ACTIONS(5355), 1, - sym_variable_name, - STATE(2736), 1, - sym_string, - ACTIONS(5353), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(5497), 1, + aux_sym_concatenation_token1, + ACTIONS(5500), 1, + sym__concat, + STATE(1195), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5349), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 39, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117562,7 +120085,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -117573,40 +120098,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49297] = 8, + [52331] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, - anon_sym_DQUOTE, - ACTIONS(5355), 1, - sym_variable_name, - STATE(2736), 1, - sym_string, - ACTIONS(5353), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5505), 1, + sym__concat, + STATE(1201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5349), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117616,9 +120137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -117630,35 +120154,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49361] = 5, + [52391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, - sym__special_character, - STATE(1232), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 6, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 38, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117670,7 +120190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -117683,31 +120205,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49419] = 3, + [52445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117734,87 +120256,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49473] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5319), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, - anon_sym_DOLLAR, - ACTIONS(5325), 1, - sym__special_character, - ACTIONS(5327), 1, - anon_sym_DQUOTE, - ACTIONS(5331), 1, - aux_sym_number_token1, - ACTIONS(5333), 1, - aux_sym_number_token2, - ACTIONS(5335), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, - anon_sym_BQUOTE, - ACTIONS(5341), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(5359), 1, - sym_word, - ACTIONS(5363), 1, - sym_test_operator, - STATE(5413), 1, - aux_sym__literal_repeat1, - STATE(5589), 1, - sym_concatenation, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5361), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2275), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5397), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2277), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [49565] = 3, + [52499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5507), 1, sym__concat, + STATE(1201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117824,7 +120281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -117840,7 +120296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117855,17 +120310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49619] = 3, + [52559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117906,117 +120361,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49673] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1087), 1, - sym__special_character, - ACTIONS(5365), 1, - sym_word, - ACTIONS(5367), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5371), 1, - anon_sym_LBRACE, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5377), 1, - sym_test_operator, - STATE(2363), 1, - aux_sym__literal_repeat1, - STATE(3217), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5373), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6663), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2790), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - STATE(2357), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49781] = 8, + [52613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, - anon_sym_DQUOTE, - ACTIONS(5385), 1, - sym_variable_name, - STATE(2864), 1, - sym_string, - ACTIONS(5383), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(5509), 1, + aux_sym_concatenation_token1, + ACTIONS(5512), 1, + sym__concat, + STATE(1201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5379), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118026,9 +120398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -118040,39 +120415,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49845] = 8, + [52673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, - anon_sym_DQUOTE, - ACTIONS(5385), 1, - sym_variable_name, - STATE(2864), 1, - sym_string, - ACTIONS(5383), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5379), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 40, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118084,7 +120450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -118095,32 +120464,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [49909] = 3, + [52727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118147,21 +120517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49963] = 6, + [52781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, - aux_sym_concatenation_token1, - ACTIONS(5295), 1, - sym__concat, - STATE(1201), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(1266), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 39, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118186,6 +120552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118201,35 +120568,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [50023] = 6, + [52835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5393), 1, - sym__concat, - STATE(1198), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1226), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1219), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118255,17 +120619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50083] = 3, + [52889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5493), 1, + aux_sym_concatenation_token1, + ACTIONS(5515), 1, sym__concat, + STATE(1217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118275,7 +120644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118288,10 +120656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118305,31 +120671,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50137] = 3, + [52949] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5519), 1, + anon_sym_DQUOTE, + ACTIONS(5523), 1, sym_variable_name, + STATE(2760), 1, + sym_string, + ACTIONS(5521), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, - anon_sym_SEMI, + ACTIONS(5517), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118339,13 +120715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -118357,34 +120729,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50191] = 6, + [53013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5395), 1, - sym__concat, - STATE(1198), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, - sym_file_descriptor, + ACTIONS(5519), 1, + anon_sym_DQUOTE, + ACTIONS(5523), 1, sym_variable_name, + STATE(2760), 1, + sym_string, + ACTIONS(5521), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, - anon_sym_SEMI, + ACTIONS(5517), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118394,12 +120771,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -118411,31 +120785,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50251] = 3, + [53077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118444,7 +120818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -118461,23 +120834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50305] = 3, + [53131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 41, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -118487,7 +120861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118496,9 +120869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118512,33 +120885,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50359] = 3, + [53185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(5493), 1, + aux_sym_concatenation_token1, + ACTIONS(5525), 1, + sym__concat, + STATE(1217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 41, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118547,7 +120924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118563,36 +120939,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50413] = 6, + [53245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, - aux_sym_concatenation_token1, - ACTIONS(5404), 1, - sym__concat, - STATE(1198), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1233), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1231), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118618,112 +120992,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50473] = 30, - ACTIONS(71), 1, + [53299] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(5493), 1, + aux_sym_concatenation_token1, + ACTIONS(5495), 1, + sym__concat, + STATE(1211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5449), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5447), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [53359] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5529), 1, + anon_sym_DQUOTE, + ACTIONS(5533), 1, + sym_variable_name, + STATE(2964), 1, + sym_string, + ACTIONS(5531), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(5527), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1087), 1, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - ACTIONS(5367), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5371), 1, - anon_sym_LBRACE, - ACTIONS(5375), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5407), 1, - sym_word, - ACTIONS(5411), 1, - sym_test_operator, - STATE(2345), 1, - aux_sym__literal_repeat1, - STATE(3217), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5409), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6667), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2657), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - STATE(2342), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [50581] = 6, + sym_word, + [53423] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, - sym_file_descriptor, + ACTIONS(5529), 1, + anon_sym_DQUOTE, + ACTIONS(5533), 1, sym_variable_name, + STATE(2964), 1, + sym_string, + ACTIONS(5531), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, - anon_sym_SEMI, + ACTIONS(5527), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -118733,12 +121144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -118750,35 +121158,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50641] = 6, + [53487] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, - aux_sym_concatenation_token1, - ACTIONS(5415), 1, - sym__concat, - STATE(1222), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5535), 1, + sym__special_character, + STATE(1235), 1, + aux_sym__literal_repeat1, + ACTIONS(276), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(237), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118787,10 +121195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -118802,19 +121210,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50701] = 3, + [53545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(5537), 1, + aux_sym_concatenation_token1, + ACTIONS(5540), 1, sym__concat, + STATE(1217), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118824,7 +121236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118839,7 +121250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118855,21 +121265,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [50755] = 6, + [53605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(5503), 1, aux_sym_concatenation_token1, - ACTIONS(5417), 1, + ACTIONS(5543), 1, sym__concat, - STATE(1222), 1, + STATE(1196), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1233), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118879,7 +121290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118892,6 +121302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118907,24 +121318,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50815] = 6, + [53665] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(5545), 1, + sym_word, + ACTIONS(5547), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5549), 1, + anon_sym_LPAREN, + ACTIONS(5551), 1, + anon_sym_LBRACE, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(5557), 1, + sym_test_operator, + STATE(2372), 1, + aux_sym__literal_repeat1, + STATE(3088), 1, + sym__expression, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5553), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6642), 2, + sym_compound_statement, + sym_subshell, + STATE(2506), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2758), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2369), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5419), 1, + ACTIONS(5559), 1, sym__concat, - STATE(994), 1, + STATE(1038), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118963,22 +121451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50875] = 6, + [53833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5421), 1, + ACTIONS(5561), 1, sym__concat, - STATE(994), 1, + STATE(1038), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119017,28 +121505,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50935] = 30, + [53893] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, ACTIONS(1075), 1, anon_sym_BANG, @@ -119046,23 +121534,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1087), 1, sym__special_character, - ACTIONS(5367), 1, + ACTIONS(5547), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, + ACTIONS(5549), 1, anon_sym_LPAREN, - ACTIONS(5371), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - ACTIONS(5375), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5423), 1, + ACTIONS(5563), 1, sym_word, - ACTIONS(5427), 1, + ACTIONS(5567), 1, sym_test_operator, - STATE(2373), 1, + STATE(2448), 1, aux_sym__literal_repeat1, - STATE(3217), 1, + STATE(3088), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1079), 2, @@ -119071,21 +121559,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(5425), 2, + ACTIONS(5565), 2, sym_raw_string, sym_ansi_c_string, - STATE(6668), 2, + STATE(6694), 2, sym_compound_statement, sym_subshell, - STATE(2518), 3, + STATE(2506), 3, sym_ternary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(2660), 3, + STATE(2844), 3, sym_binary_expression, sym_unary_expression, sym_concatenation, - STATE(2431), 9, + STATE(2430), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -119095,22 +121583,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51043] = 6, + [54001] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(5547), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5549), 1, + anon_sym_LPAREN, + ACTIONS(5551), 1, + anon_sym_LBRACE, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(5569), 1, + sym_word, + ACTIONS(5573), 1, + sym_test_operator, + STATE(2478), 1, + aux_sym__literal_repeat1, + STATE(3088), 1, + sym__expression, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5571), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6681), 2, + sym_compound_statement, + sym_subshell, + STATE(2506), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2732), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2473), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, + ACTIONS(5493), 1, aux_sym_concatenation_token1, - ACTIONS(5431), 1, + ACTIONS(5495), 1, sym__concat, - STATE(1219), 1, + STATE(1206), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1233), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119149,17 +121715,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [51103] = 3, + [54169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119182,6 +121748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119198,19 +121765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51157] = 3, + [54223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119251,35 +121817,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [51211] = 6, + [54277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(1258), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119291,6 +121853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119305,70 +121868,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51271] = 6, - ACTIONS(3), 1, + [54331] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(5547), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5549), 1, + anon_sym_LPAREN, + ACTIONS(5551), 1, + anon_sym_LBRACE, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(5575), 1, + sym_word, + ACTIONS(5579), 1, + sym_test_operator, + STATE(2396), 1, + aux_sym__literal_repeat1, + STATE(3088), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [51331] = 3, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5577), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6664), 2, + sym_compound_statement, + sym_subshell, + STATE(2506), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2788), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2395), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [54439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(1262), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 41, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119379,10 +121968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -119396,6 +121982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119410,35 +121997,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51385] = 6, + [54493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - aux_sym_concatenation_token1, - ACTIONS(5433), 1, - sym__concat, - STATE(1219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1237), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119447,8 +122030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119462,34 +122047,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51445] = 3, + [54547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119498,9 +122081,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119514,29 +122097,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [51499] = 30, + [54601] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, ACTIONS(1075), 1, anon_sym_BANG, @@ -119544,23 +122128,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1087), 1, sym__special_character, - ACTIONS(5367), 1, + ACTIONS(5547), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, + ACTIONS(5549), 1, anon_sym_LPAREN, - ACTIONS(5371), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - ACTIONS(5375), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5435), 1, + ACTIONS(5581), 1, sym_word, - ACTIONS(5439), 1, + ACTIONS(5585), 1, sym_test_operator, - STATE(2366), 1, + STATE(2407), 1, aux_sym__literal_repeat1, - STATE(3217), 1, + STATE(3088), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1079), 2, @@ -119569,21 +122153,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(5437), 2, + ACTIONS(5583), 2, sym_raw_string, sym_ansi_c_string, - STATE(6687), 2, + STATE(6651), 2, sym_compound_statement, sym_subshell, - STATE(2518), 3, + STATE(2506), 3, sym_ternary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(2663), 3, + STATE(2807), 3, sym_binary_expression, sym_unary_expression, sym_concatenation, - STATE(2362), 9, + STATE(2406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -119593,163 +122177,79 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51607] = 9, - ACTIONS(71), 1, + [54709] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 1, - anon_sym_DQUOTE, - ACTIONS(5443), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5445), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2543), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5145), 14, - anon_sym_EQ, + ACTIONS(1314), 7, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5147), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [51673] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1087), 1, - sym__special_character, - ACTIONS(5367), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5371), 1, - anon_sym_LBRACE, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_test_operator, - STATE(2327), 1, - aux_sym__literal_repeat1, - STATE(3217), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5453), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6639), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2668), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - STATE(2418), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51781] = 30, + sym_word, + [54763] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, ACTIONS(1075), 1, anon_sym_BANG, @@ -119757,23 +122257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1087), 1, sym__special_character, - ACTIONS(5367), 1, + ACTIONS(5547), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, + ACTIONS(5549), 1, anon_sym_LPAREN, - ACTIONS(5371), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - ACTIONS(5375), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5457), 1, + ACTIONS(5587), 1, sym_word, - ACTIONS(5461), 1, + ACTIONS(5591), 1, sym_test_operator, - STATE(2359), 1, + STATE(2419), 1, aux_sym__literal_repeat1, - STATE(3217), 1, + STATE(3088), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1079), 2, @@ -119782,21 +122282,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(5459), 2, + ACTIONS(5589), 2, sym_raw_string, sym_ansi_c_string, - STATE(6666), 2, + STATE(6678), 2, sym_compound_statement, sym_subshell, - STATE(2518), 3, + STATE(2506), 3, sym_ternary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(2670), 3, + STATE(2838), 3, sym_binary_expression, sym_unary_expression, sym_concatenation, - STATE(2355), 9, + STATE(2414), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -119806,35 +122306,35 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51889] = 6, + [54871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5463), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(5593), 1, + sym__special_character, + STATE(1235), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119843,10 +122343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119858,18 +122358,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51949] = 3, + [54929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1266), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119880,10 +122381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -119897,6 +122395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119911,35 +122410,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52003] = 6, + [54983] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, - sym_file_descriptor, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1197), 1, + sym_test_operator, + ACTIONS(5189), 1, sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [55047] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5596), 1, + sym__special_character, + STATE(1238), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1318), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119952,7 +122507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119965,21 +122519,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52063] = 6, + [55105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, - aux_sym_concatenation_token1, - ACTIONS(5472), 1, - sym__concat, - STATE(1222), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(5189), 1, + sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [55169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120002,8 +122608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120017,37 +122625,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52123] = 6, + [55223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(1270), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120059,6 +122662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120073,17 +122677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52183] = 3, + [55277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120124,35 +122728,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52237] = 6, + [55331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1274), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120164,6 +122764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120178,22 +122779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52297] = 6, + [55385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - aux_sym_concatenation_token1, - ACTIONS(5475), 1, - sym__concat, - STATE(1207), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 38, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120203,6 +122799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120215,8 +122812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120230,37 +122829,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52357] = 6, + [55439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - aux_sym_concatenation_token1, - ACTIONS(5475), 1, - sym__concat, - STATE(1213), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + ACTIONS(1278), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 38, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120269,8 +122863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120284,19 +122880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52417] = 3, + [55493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1282), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120307,7 +122903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -120337,17 +122932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52471] = 3, + [55547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1286), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120358,7 +122954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -120388,35 +122983,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52525] = 5, + [55601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 39, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120428,7 +123019,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120441,31 +123034,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52583] = 3, + [55655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120492,21 +123085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52637] = 5, + [55709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, - sym__special_character, - STATE(1232), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(1290), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120517,7 +123107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -120532,7 +123121,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120545,35 +123136,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52695] = 6, + [55763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1294), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120585,6 +123172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120599,22 +123187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52755] = 6, + [55817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(5487), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(5599), 1, sym__concat, - STATE(1194), 1, + STATE(1191), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1233), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120624,6 +123211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120636,7 +123224,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -120652,21 +123239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [52815] = 5, + [55877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(1298), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120678,8 +123264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -120693,7 +123277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120706,7 +123292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52873] = 3, + [55931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1302), 7, @@ -120757,20 +123343,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52927] = 5, + [55985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 1, - sym__special_character, - STATE(1159), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 5, + ACTIONS(1250), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 39, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120781,8 +123365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -120797,7 +123379,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120810,7 +123394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52985] = 3, + [56039] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1306), 7, @@ -120861,22 +123445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53039] = 6, + [56093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - aux_sym_concatenation_token1, - ACTIONS(5475), 1, - sym__concat, - STATE(1207), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1237), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120886,6 +123465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120898,8 +123478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120913,24 +123495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53099] = 6, + [56147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 38, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120940,6 +123516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120952,9 +123529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120968,18 +123545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [53159] = 3, + [56201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121020,17 +123598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [53213] = 3, + [56255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121053,7 +123631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121070,18 +123647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [53267] = 3, + [56309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121122,82 +123700,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [53321] = 8, + [56363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1197), 1, - sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5543), 1, + sym__concat, + STATE(1196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5292), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [53385] = 5, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [56423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5543), 1, + sym__concat, + STATE(1199), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 39, + ACTIONS(5296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -121206,7 +123783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121219,6 +123795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121231,7 +123808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53443] = 3, + [56483] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1254), 7, @@ -121282,10 +123859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53497] = 3, + [56537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -121293,7 +123870,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121333,10 +123910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53551] = 3, + [56591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1254), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -121344,7 +123921,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121384,31 +123961,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53605] = 3, + [56645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121417,7 +123994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121434,75 +124010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [53659] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4957), 1, - sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [53723] = 3, + sym_word, + [56699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121513,6 +124033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -121542,31 +124063,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53777] = 3, + [56753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, - sym_file_descriptor, + ACTIONS(5493), 1, + aux_sym_concatenation_token1, + ACTIONS(5495), 1, sym__concat, + STATE(1206), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(5292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121575,10 +124100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -121592,18 +124115,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [53831] = 3, + [56813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5493), 1, + aux_sym_concatenation_token1, + ACTIONS(5495), 1, sym__concat, + STATE(1211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(5296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121613,7 +124142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121626,10 +124154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -121643,32 +124169,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [53885] = 3, + [56873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121695,31 +124222,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53939] = 3, + [56927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121746,17 +124273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53993] = 3, + [56981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121797,18 +124324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54047] = 3, + [57035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121819,6 +124345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -121848,20 +124375,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54101] = 5, + [57089] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5601), 1, + sym_word, + ACTIONS(5603), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5605), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + sym__special_character, + ACTIONS(5611), 1, + anon_sym_DQUOTE, + ACTIONS(5615), 1, + aux_sym_number_token1, + ACTIONS(5617), 1, + aux_sym_number_token2, + ACTIONS(5619), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5621), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5623), 1, + anon_sym_BQUOTE, + ACTIONS(5625), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5629), 1, + sym_test_operator, + ACTIONS(5631), 1, + sym__brace_start, + STATE(5420), 1, + aux_sym__literal_repeat1, + STATE(5580), 1, + sym_concatenation, + ACTIONS(5613), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5627), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2379), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5276), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2381), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [57181] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5603), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5605), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + sym__special_character, + ACTIONS(5611), 1, + anon_sym_DQUOTE, + ACTIONS(5615), 1, + aux_sym_number_token1, + ACTIONS(5617), 1, + aux_sym_number_token2, + ACTIONS(5619), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5621), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5623), 1, + anon_sym_BQUOTE, + ACTIONS(5625), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5631), 1, + sym__brace_start, + ACTIONS(5633), 1, + sym_word, + ACTIONS(5637), 1, + sym_test_operator, + STATE(5425), 1, + aux_sym__literal_repeat1, + STATE(5565), 1, + sym_concatenation, + ACTIONS(5627), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5635), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2383), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5279), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2385), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [57273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, + ACTIONS(5639), 1, sym__special_character, - STATE(1139), 1, + STATE(1277), 1, aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1320), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, + ACTIONS(1318), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121901,18 +124568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54159] = 3, + [57331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121923,6 +124589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -121952,18 +124619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54213] = 3, + [57385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121974,6 +124640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -122003,31 +124670,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54267] = 3, + [57439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122054,31 +124721,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54321] = 3, + [57493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122105,17 +124772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54375] = 3, + [57547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122156,22 +124823,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54429] = 6, + [57601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, + ACTIONS(5503), 1, aux_sym_concatenation_token1, - ACTIONS(5475), 1, + ACTIONS(5543), 1, sym__concat, - STATE(1207), 1, + STATE(1199), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(2084), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(2082), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122193,6 +124860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -122208,24 +124876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54489] = 6, + [57661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, + ACTIONS(5503), 1, aux_sym_concatenation_token1, - ACTIONS(5475), 1, + ACTIONS(5543), 1, sym__concat, - STATE(1213), 1, + STATE(1199), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(2139), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(2137), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122247,6 +124914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -122262,24 +124930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54549] = 6, + [57721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 38, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122289,6 +124951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -122301,9 +124964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122317,40 +124980,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [54609] = 8, + [57775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_DQUOTE, - ACTIONS(5490), 1, - sym_variable_name, - STATE(2462), 1, - sym_string, - ACTIONS(5488), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5484), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 40, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -122362,7 +125017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -122373,32 +125031,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [54673] = 3, + [57829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122407,7 +125066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -122424,36 +125082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [54727] = 6, + [57883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4370), 5, + ACTIONS(1258), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122465,6 +125120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122479,35 +125135,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54787] = 6, + [57937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5642), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5644), 1, sym__concat, - STATE(1205), 1, + STATE(1305), 1, aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 38, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122533,87 +125189,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54847] = 8, + [57997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_DQUOTE, - ACTIONS(5490), 1, - sym_variable_name, - STATE(2462), 1, - sym_string, - ACTIONS(5488), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5484), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [54911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 7, - sym_file_descriptor, + ACTIONS(5487), 1, + aux_sym_concatenation_token1, + ACTIONS(5599), 1, sym__concat, + STATE(1191), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5648), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(5646), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122622,10 +125226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122639,18 +125241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [54965] = 3, + [58057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122691,17 +125294,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55019] = 3, + [58111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5487), 1, + aux_sym_concatenation_token1, + ACTIONS(5599), 1, sym__concat, - sym_variable_name, + STATE(1193), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5652), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(5650), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122726,7 +125333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122742,22 +125348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [55073] = 6, + [58171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(4654), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 38, + ACTIONS(4652), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122768,7 +125368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -122796,22 +125399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55133] = 6, + [58225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1205), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 38, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122822,6 +125420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -122836,55 +125435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [55193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, @@ -122899,33 +125449,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55247] = 3, + [58279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122934,6 +125483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -122950,37 +125500,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55301] = 6, + [58333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5642), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5654), 1, sym__concat, - STATE(1204), 1, + STATE(1305), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123006,22 +125555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55361] = 6, + [58393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1205), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(1231), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123032,7 +125575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -123060,35 +125606,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55421] = 6, + [58447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123097,9 +125639,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123113,23 +125655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [55481] = 6, + [58501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1205), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(4688), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(4686), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123140,7 +125677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -123168,22 +125708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55541] = 6, + [58555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5656), 1, + sym__special_character, + STATE(1238), 1, + aux_sym__literal_repeat1, + ACTIONS(276), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123194,6 +125732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -123209,7 +125749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123222,18 +125761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55601] = 3, + [58613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123244,6 +125782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -123273,18 +125812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55655] = 3, + [58667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(4563), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(4561), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123295,7 +125832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -123309,7 +125849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123324,18 +125863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55709] = 3, + [58721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123346,6 +125884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -123375,22 +125914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55763] = 3, + [58775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(5660), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(5658), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -123400,6 +125939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123408,9 +125948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123424,19 +125964,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55817] = 3, + [58829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5662), 1, + aux_sym_concatenation_token1, + ACTIONS(5665), 1, sym__concat, - sym_variable_name, + STATE(1305), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123459,9 +126002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123475,19 +126018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55871] = 3, + [58889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(5642), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, sym__concat, - sym_variable_name, + STATE(1289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(5435), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123510,9 +126056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123526,19 +126072,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55925] = 3, + [58949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5642), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, sym__concat, - sym_variable_name, + STATE(1296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(5439), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123561,6 +126110,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [59009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -123577,37 +126177,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55979] = 6, + [59063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(1302), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [59117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 6, + sym_file_descriptor, sym__concat, - STATE(1194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [59171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123619,6 +126316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123633,21 +126331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56039] = 6, + [59225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5503), 1, aux_sym_concatenation_token1, - ACTIONS(5494), 1, + ACTIONS(5543), 1, sym__concat, - STATE(1401), 1, + STATE(1196), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(5437), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(5435), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123657,7 +126356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -123670,6 +126368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -123686,17 +126385,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56098] = 3, + [59285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5543), 1, sym__concat, + STATE(1199), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(5439), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123718,9 +126422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123734,19 +126438,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56151] = 3, + [59345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5543), 1, sym__concat, + STATE(1196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(4648), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123768,9 +126476,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123784,19 +126492,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56204] = 3, + [59405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5543), 1, sym__concat, + STATE(1199), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(4652), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123818,9 +126530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123834,19 +126546,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56257] = 3, + [59465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(5503), 1, + aux_sym_concatenation_token1, + ACTIONS(5543), 1, sym__concat, + STATE(1196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(4682), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123871,7 +126587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123886,21 +126601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56310] = 6, + [59525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5503), 1, aux_sym_concatenation_token1, - ACTIONS(5498), 1, + ACTIONS(5543), 1, sym__concat, - STATE(1462), 1, + STATE(1199), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(4688), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(4686), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123939,30 +126655,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56369] = 3, + [59585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, - sym_variable_name, + STATE(1220), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4555), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(4553), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123971,9 +126692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123987,32 +126708,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56422] = 3, + [59645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, - sym_variable_name, + STATE(1221), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4563), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(4561), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124021,9 +126746,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124037,32 +126762,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56475] = 3, + [59705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124089,34 +126814,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56528] = 6, + [59759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5502), 1, - sym__concat, - STATE(1381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 6, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 36, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124128,6 +126850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124142,30 +126865,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56587] = 3, + [59813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124192,30 +126916,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56640] = 3, + [59867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, - sym_variable_name, + STATE(1220), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4672), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(4670), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124227,7 +126956,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [59927] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1221), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4692), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4690), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124242,16 +127024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56693] = 3, + [59987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124274,6 +127057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -124290,68 +127074,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56746] = 21, + [60041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 1, + ACTIONS(1286), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5510), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5513), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(5516), 1, sym__special_character, - ACTIONS(5519), 1, anon_sym_DQUOTE, - ACTIONS(5522), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5525), 1, aux_sym_number_token2, - ACTIONS(5528), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5531), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5534), 1, anon_sym_BQUOTE, - ACTIONS(5537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5543), 1, - sym_test_operator, - ACTIONS(5546), 1, - sym__brace_start, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5540), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5504), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(3082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 13, + [60095] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1220), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4648), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124359,35 +127162,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [56835] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [60155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(5193), 1, sym__concat, - STATE(1353), 1, + STATE(1221), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 6, + ACTIONS(4654), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, + ACTIONS(4652), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124413,34 +127234,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56894] = 6, + [60215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5191), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(5193), 1, sym__concat, - STATE(1381), 1, + STATE(1220), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 6, + ACTIONS(4684), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 36, + ACTIONS(4682), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124466,22 +127288,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56953] = 3, + [60275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(5485), 1, + sym__special_character, + STATE(1277), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(4682), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -124490,6 +127316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124498,9 +127325,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [60333] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1220), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124514,32 +127394,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57006] = 3, + [60393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(4692), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(4690), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124548,9 +127429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124564,18 +127445,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57059] = 3, + [60447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(5642), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, sym__concat, + STATE(1289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124598,9 +127483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124614,23 +127499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57112] = 6, + [60507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - aux_sym_concatenation_token1, - ACTIONS(5494), 1, - sym__concat, - STATE(1352), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124655,6 +127535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124668,17 +127549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57171] = 3, + [60561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124719,17 +127602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [57224] = 3, + [60615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124739,6 +127622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -124751,7 +127635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -124768,30 +127651,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57277] = 3, + [60669] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5672), 1, + anon_sym_DQUOTE, + ACTIONS(5676), 1, sym_variable_name, + STATE(2505), 1, + sym_string, + ACTIONS(5674), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, - anon_sym_SEMI, + ACTIONS(5670), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -124803,10 +127697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -124817,24 +127708,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57330] = 3, + [60733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(5485), 1, + sym__special_character, + STATE(1277), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(4648), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -124843,6 +127737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124851,11 +127746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124867,134 +127761,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57383] = 3, - ACTIONS(3), 1, + [60791] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5678), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(5680), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5682), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5684), 1, anon_sym_BQUOTE, + ACTIONS(5686), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [57436] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 1, - aux_sym_concatenation_token1, - ACTIONS(5549), 1, - sym__concat, - STATE(1297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2593), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5471), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [57495] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5473), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [60857] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5672), 1, + anon_sym_DQUOTE, + ACTIONS(5676), 1, sym_variable_name, + STATE(2505), 1, + sym_string, + ACTIONS(5674), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, - anon_sym_SEMI, + ACTIONS(5670), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -125004,13 +127861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -125022,17 +127875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57548] = 3, + [60921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125042,6 +127895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125054,6 +127908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125070,36 +127925,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57601] = 5, + [60975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(5485), 1, sym__special_character, - STATE(1423), 1, + STATE(1277), 1, aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(4672), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(4670), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125124,30 +127979,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57658] = 3, + [61033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125174,34 +128030,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57711] = 6, + [61087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5502), 1, - sym__concat, - STATE(1353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 6, + ACTIONS(4654), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(4652), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125227,21 +128080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57770] = 6, + [61140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - aux_sym_concatenation_token1, - ACTIONS(5555), 1, - sym__concat, - STATE(1326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(1258), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 38, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125251,6 +128099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125265,6 +128114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125280,21 +128130,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [57829] = 6, + [61193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5688), 1, aux_sym_concatenation_token1, - ACTIONS(5555), 1, + ACTIONS(5690), 1, sym__concat, - STATE(1338), 1, + STATE(1361), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 38, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125304,6 +128154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125331,25 +128182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57888] = 6, + [61252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5692), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(5694), 1, sym__concat, - STATE(1381), 1, + STATE(1395), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 6, + ACTIONS(1215), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125386,21 +128236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57947] = 6, + [61311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - aux_sym_concatenation_token1, - ACTIONS(5557), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5696), 1, + sym__special_character, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125410,6 +128259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125425,7 +128275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125439,16 +128288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58006] = 3, + [61368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125458,7 +128308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125471,6 +128320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125487,18 +128337,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58059] = 3, + [61421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(5703), 1, + sym__special_character, + STATE(1392), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(5699), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125521,11 +128374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125537,18 +128389,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58112] = 3, + [61478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, sym__concat, + STATE(1450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4682), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125558,10 +128416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -125574,7 +128429,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125589,16 +128443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58165] = 3, + [61537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(5660), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 40, + ACTIONS(5658), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125639,16 +128493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58218] = 3, + [61590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(5703), 1, + sym__special_character, + STATE(1392), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(5707), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125671,11 +128529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125687,18 +128544,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58271] = 3, + [61647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(5711), 1, + sym__special_character, + STATE(1368), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 40, + ACTIONS(4648), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125709,9 +128569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -125726,7 +128585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125739,17 +128597,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58324] = 3, + [61704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125759,6 +128616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125771,6 +128629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125787,36 +128646,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58377] = 5, + [61757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 6, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, + sym__concat, + STATE(1347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 37, + ACTIONS(4686), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125829,6 +128687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125841,16 +128700,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58434] = 3, + [61816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(5713), 1, + aux_sym_concatenation_token1, + ACTIONS(5715), 1, sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125860,7 +128724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125875,7 +128738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125891,17 +128753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58487] = 3, + [61875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125911,6 +128772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -125941,20 +128803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58540] = 5, + [61928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 38, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125977,10 +128835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125992,22 +128851,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58597] = 6, + [61981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5692), 1, aux_sym_concatenation_token1, - ACTIONS(5565), 1, + ACTIONS(5705), 1, sym__concat, - STATE(1345), 1, + STATE(1450), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(5294), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(5292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126018,8 +128880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126029,6 +128889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126044,33 +128905,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58656] = 3, + [62040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(5717), 1, + aux_sym_concatenation_token1, + ACTIONS(5720), 1, + sym__concat, + STATE(1361), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126079,7 +128943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126096,16 +128959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58709] = 3, + [62099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126115,7 +128979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126128,7 +128991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -126145,24 +129007,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58762] = 6, + [62152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5723), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(5725), 1, sym__concat, - STATE(1353), 1, + STATE(1385), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(1209), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126173,6 +129034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126199,16 +129062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58821] = 3, + [62211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126231,6 +129094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -126247,18 +129111,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, + [62264] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5729), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5733), 1, + anon_sym_DOLLAR, + ACTIONS(5735), 1, + sym__special_character, + ACTIONS(5737), 1, + anon_sym_DQUOTE, + ACTIONS(5739), 1, + aux_sym_number_token1, + ACTIONS(5741), 1, + aux_sym_number_token2, + ACTIONS(5743), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5745), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5747), 1, + anon_sym_BQUOTE, + ACTIONS(5749), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5753), 1, + sym_test_operator, + ACTIONS(5755), 1, + sym__brace_start, + STATE(3420), 1, + aux_sym__literal_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5751), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1375), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5727), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3309), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [62353] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5713), 1, + aux_sym_concatenation_token1, + ACTIONS(5757), 1, + sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58874] = 3, + [62412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126299,34 +129283,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58927] = 6, + [62465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5502), 1, - sym__concat, - STATE(1381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 6, + ACTIONS(5759), 1, + sym__special_character, + STATE(1368), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 36, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126339,7 +129323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126352,34 +129335,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58986] = 6, + [62522] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, - aux_sym_concatenation_token1, - ACTIONS(5570), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - sym_file_descriptor, + ACTIONS(5729), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5733), 1, + anon_sym_DOLLAR, + ACTIONS(5735), 1, + sym__special_character, + ACTIONS(5737), 1, + anon_sym_DQUOTE, + ACTIONS(5739), 1, + aux_sym_number_token1, + ACTIONS(5741), 1, + aux_sym_number_token2, + ACTIONS(5743), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5745), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5747), 1, + anon_sym_BQUOTE, + ACTIONS(5749), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5753), 1, sym_test_operator, + ACTIONS(5755), 1, sym__brace_start, + STATE(3420), 1, + aux_sym__literal_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, - anon_sym_SEMI, + ACTIONS(5751), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1375), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5727), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3309), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126387,39 +129402,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [59045] = 6, + anon_sym_LT_LT_LT, + [62611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5762), 1, aux_sym_concatenation_token1, - ACTIONS(5549), 1, + ACTIONS(5765), 1, sym__concat, - STATE(1297), 1, + STATE(1370), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1237), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126441,7 +129439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126457,17 +129454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [59104] = 3, + [62670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(5711), 1, + sym__special_character, + STATE(1368), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 40, + ACTIONS(4682), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126478,9 +129480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -126495,7 +129496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126508,34 +129508,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59157] = 6, + [62727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - aux_sym_concatenation_token1, - ACTIONS(5549), 1, - sym__concat, - STATE(1393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(5768), 1, + sym__special_character, + STATE(1423), 1, + aux_sym__literal_repeat1, + ACTIONS(4672), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(4670), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126548,7 +129548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126561,16 +129560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59216] = 3, + [62784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126580,7 +129580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126611,31 +129610,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59269] = 3, + [62837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1282), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126644,9 +129642,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126660,31 +129658,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [59322] = 3, + [62890] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5773), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5776), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5779), 1, + anon_sym_DOLLAR, + ACTIONS(5782), 1, + sym__special_character, + ACTIONS(5785), 1, + anon_sym_DQUOTE, + ACTIONS(5788), 1, + aux_sym_number_token1, + ACTIONS(5791), 1, + aux_sym_number_token2, + ACTIONS(5794), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5797), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5800), 1, + anon_sym_BQUOTE, + ACTIONS(5803), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5809), 1, sym_test_operator, + ACTIONS(5812), 1, sym__brace_start, + STATE(3420), 1, + aux_sym__literal_repeat1, + ACTIONS(2146), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, - anon_sym_SEMI, + ACTIONS(5806), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1375), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5770), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3309), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2144), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126692,54 +129727,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [59375] = 6, + anon_sym_LT_LT_LT, + [62979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - aux_sym_concatenation_token1, - ACTIONS(5573), 1, - sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5768), 1, + sym__special_character, + STATE(1423), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(4648), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126748,10 +129764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126764,23 +129780,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59434] = 6, + [63036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5723), 1, aux_sym_concatenation_token1, - ACTIONS(5575), 1, + ACTIONS(5815), 1, sym__concat, - STATE(1389), 1, + STATE(1385), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 6, + ACTIONS(1215), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126791,6 +129805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126817,22 +129833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59493] = 6, + [63095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1418), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(1250), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126842,8 +129852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126853,9 +129865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126869,23 +129881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [59552] = 6, + [63148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(1237), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126895,8 +129903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126909,6 +129918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126923,23 +129933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59611] = 6, + [63201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5502), 1, - sym__concat, - STATE(1353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 6, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126950,6 +129954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126962,6 +129968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126976,23 +129983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59670] = 6, + [63254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5692), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(5705), 1, sym__concat, - STATE(1381), 1, + STATE(1347), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 6, + ACTIONS(5298), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 36, + ACTIONS(5296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127029,57 +130036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [59782] = 3, + [63313] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1314), 6, @@ -127129,21 +130086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [59835] = 5, + [63366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 6, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(1231), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127155,6 +130107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -127169,6 +130123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127181,31 +130136,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59892] = 3, + [63419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(1473), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(4686), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127231,23 +130189,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59945] = 6, + [63478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5821), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(5824), 1, sym__concat, - STATE(1353), 1, + STATE(1385), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 6, + ACTIONS(1237), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127258,6 +130214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127284,23 +130242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60004] = 6, + [63537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5502), 1, - sym__concat, - STATE(1381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 6, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127311,6 +130263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127323,6 +130277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127337,17 +130292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60063] = 3, + [63590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127357,6 +130311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127369,7 +130324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -127386,18 +130340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60116] = 3, + [63643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127437,34 +130392,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60169] = 5, + [63696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 6, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127473,10 +130424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127488,138 +130440,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60226] = 6, - ACTIONS(3), 1, + [63749] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5827), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(5829), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5831), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5833), 1, anon_sym_BQUOTE, + ACTIONS(5835), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [60285] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2811), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5471), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [60344] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5473), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [63814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1278), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 40, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127631,6 +130533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127645,22 +130548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60397] = 6, + [63867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + ACTIONS(5837), 1, + sym__special_character, + STATE(1392), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 37, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127670,8 +130571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127685,7 +130588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127698,23 +130600,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60456] = 6, + [63924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 1, + ACTIONS(5819), 1, sym__concat, - STATE(1372), 1, + STATE(1473), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(2084), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(2082), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127724,6 +130625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -127734,6 +130636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -127749,25 +130652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60515] = 6, + [63983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - aux_sym_concatenation_token1, - ACTIONS(5589), 1, - sym__concat, - STATE(1378), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 6, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127777,7 +130672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127789,6 +130687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127804,22 +130703,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60574] = 6, + [64036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(5840), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(5843), 1, sym__concat, - STATE(1418), 1, + STATE(1395), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1237), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(1235), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127829,7 +130729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -127857,22 +130756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60633] = 6, + [64095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(5703), 1, + sym__special_character, + STATE(1392), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 37, + ACTIONS(4648), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127882,8 +130779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127897,7 +130796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127910,75 +130808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60692] = 6, + [64152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - aux_sym_concatenation_token1, - ACTIONS(5591), 1, - sym__concat, - STATE(1378), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(1278), 6, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [60751] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, sym__concat, - STATE(1444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, - sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127988,8 +130828,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127999,61 +130840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [60810] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5581), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128067,25 +130857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [60869] = 6, + [64205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, - aux_sym_concatenation_token1, - ACTIONS(5596), 1, - sym__concat, - STATE(1378), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128096,6 +130879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128107,6 +130892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128122,21 +130908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60928] = 6, + [64258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - aux_sym_concatenation_token1, - ACTIONS(5494), 1, - sym__concat, - STATE(1352), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1270), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128161,6 +130942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128174,17 +130956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60987] = 3, + [64311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128194,7 +130978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128225,23 +131008,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61040] = 6, + [64364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5599), 1, - sym__concat, - STATE(1389), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(5703), 1, + sym__special_character, + STATE(1392), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(4682), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128251,7 +131031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128265,7 +131048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128278,22 +131060,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61099] = 6, + [64421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(5692), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(5705), 1, sym__concat, - STATE(1418), 1, + STATE(1347), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(2084), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(2082), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128303,7 +131086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -128331,16 +131113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61158] = 3, + [64480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128363,7 +131145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -128380,18 +131161,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61211] = 3, + [64533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(4648), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128401,9 +131188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128416,7 +131202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128431,78 +131216,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61264] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5601), 1, - anon_sym_DQUOTE, - ACTIONS(5603), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5607), 1, - anon_sym_BQUOTE, - ACTIONS(5609), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2594), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5145), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5147), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [61329] = 6, + [64592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(5692), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(5705), 1, sym__concat, - STATE(1420), 1, + STATE(1450), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(5437), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(5435), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128512,7 +131242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -128540,34 +131269,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61388] = 5, + [64651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, + sym__concat, + STATE(1347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(5439), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128580,6 +131309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128592,16 +131322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61445] = 3, + [64710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128642,23 +131372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61498] = 6, + [64763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 1, - aux_sym_concatenation_token1, - ACTIONS(5616), 1, - sym__concat, - STATE(1389), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1286), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128668,7 +131391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128681,6 +131407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128695,88 +131422,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61557] = 21, + [64816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5623), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5625), 1, - anon_sym_DOLLAR, - ACTIONS(5627), 1, - sym__special_character, - ACTIONS(5629), 1, - anon_sym_DQUOTE, - ACTIONS(5631), 1, - aux_sym_number_token1, - ACTIONS(5633), 1, - aux_sym_number_token2, - ACTIONS(5635), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5639), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, - sym__brace_start, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5643), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5619), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [61646] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(1473), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(2137), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128786,10 +131447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128803,6 +131462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128815,17 +131475,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61703] = 3, + [64875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, sym__concat, + STATE(1450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(4648), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128836,8 +131502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128847,9 +131511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128863,23 +131527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [61756] = 6, + [64934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - aux_sym_concatenation_token1, - ACTIONS(5649), 1, - sym__concat, - STATE(1462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128889,6 +131547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128901,9 +131560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128917,18 +131576,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61815] = 3, + [64987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5846), 1, + aux_sym_concatenation_token1, + ACTIONS(5848), 1, sym__concat, + STATE(1486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5445), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(5443), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128939,8 +131605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128950,10 +131614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128967,35 +131629,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61868] = 5, + [65046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, + ACTIONS(5703), 1, sym__special_character, - STATE(1397), 1, + STATE(1392), 1, aux_sym__literal_repeat1, - ACTIONS(4519), 6, + ACTIONS(5437), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 37, + ACTIONS(5435), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129020,17 +131683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61925] = 3, + [65103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1473), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(4652), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129040,9 +131708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129052,9 +131719,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129068,36 +131735,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [61978] = 5, + [65162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(5846), 1, + aux_sym_concatenation_token1, + ACTIONS(5848), 1, + sym__concat, + STATE(1489), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5449), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(5447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129106,10 +131772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129121,17 +131787,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62035] = 3, + [65221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(5723), 1, + aux_sym_concatenation_token1, + ACTIONS(5850), 1, sym__concat, + STATE(1363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129141,7 +131813,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129157,7 +131828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129172,17 +131842,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62088] = 3, + [65280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, sym__concat, + STATE(1450), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129193,8 +131869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129207,7 +131881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129222,16 +131895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62141] = 3, + [65339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129241,7 +131915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129254,7 +131927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -129271,22 +131943,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62194] = 6, + [65392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5688), 1, aux_sym_concatenation_token1, - ACTIONS(5654), 1, + ACTIONS(5852), 1, sym__concat, - STATE(1421), 1, + STATE(1497), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1233), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129325,69 +131998,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62253] = 6, + [65451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5555), 1, + ACTIONS(5819), 1, sym__concat, - STATE(1326), 1, + STATE(1471), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [62312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 5, + ACTIONS(4684), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(4682), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129397,10 +132023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129413,7 +132037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129428,16 +132051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62365] = 3, + [65510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129447,7 +132071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129478,16 +132101,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62418] = 3, + [65563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(5854), 1, + sym__special_character, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(5445), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(5443), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129510,12 +132137,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129527,31 +132151,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62471] = 3, + [65620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5856), 1, + sym__special_character, + STATE(1423), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129560,11 +132189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129576,18 +132204,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [62524] = 3, + [65677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(5713), 1, + aux_sym_concatenation_token1, + ACTIONS(5859), 1, sym__concat, + STATE(1357), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5648), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(5646), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129597,7 +132229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129610,10 +132241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129627,23 +132256,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62577] = 3, + [65736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 40, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -129652,7 +132282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129661,9 +132290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129677,17 +132306,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62630] = 3, + [65789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(5688), 1, + aux_sym_concatenation_token1, + ACTIONS(5852), 1, sym__concat, + STATE(1497), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(5435), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129710,10 +132345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129728,20 +132361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62683] = 5, + [65848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5656), 1, - sym__special_character, - STATE(1410), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5688), 1, + aux_sym_concatenation_token1, + ACTIONS(5852), 1, + sym__concat, + STATE(1346), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(5439), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129767,6 +132401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129778,22 +132413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [62740] = 5, + [65907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1254), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129816,62 +132446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [62797] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5611), 1, sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129883,17 +132462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62854] = 3, + [65960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129934,30 +132514,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62907] = 3, + [66013] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(5768), 1, + sym__special_character, + STATE(1423), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(4682), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129969,9 +132553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129984,16 +132566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62960] = 3, + [66070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130034,70 +132616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63013] = 6, + [66123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1418), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [63072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130137,34 +132666,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63125] = 6, + [66176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5659), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1233), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130190,17 +132716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63184] = 3, + [66229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130240,74 +132766,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63237] = 6, + [66282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5661), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1278), 5, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [63296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130332,59 +132800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [63355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130398,21 +132814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63414] = 5, + [66335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130422,7 +132836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130435,10 +132848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130450,21 +132864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63471] = 5, + [66388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1226), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130475,6 +132886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -130491,6 +132903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130503,20 +132916,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63528] = 5, + [66441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - sym__special_character, - STATE(1410), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130526,7 +132936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130541,7 +132950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130555,16 +132966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63585] = 3, + [66494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130587,6 +132998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -130603,22 +133015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [63638] = 5, + [66547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - sym__special_character, - STATE(1410), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 38, + ACTIONS(1312), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130628,7 +133036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130641,9 +133048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130655,19 +133065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [63695] = 3, + [66600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130689,7 +133098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -130706,103 +133114,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63748] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5621), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5623), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5625), 1, - anon_sym_DOLLAR, - ACTIONS(5627), 1, - sym__special_character, - ACTIONS(5629), 1, - anon_sym_DQUOTE, - ACTIONS(5631), 1, - aux_sym_number_token1, - ACTIONS(5633), 1, - aux_sym_number_token2, - ACTIONS(5635), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5639), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, - sym__brace_start, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5643), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5619), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [63837] = 6, + [66653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 1, - aux_sym_concatenation_token1, - ACTIONS(5680), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1233), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1231), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130828,31 +133166,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63896] = 3, + [66706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 6, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130861,9 +133198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130877,17 +133214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63949] = 3, + [66759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130910,6 +133248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -130926,32 +133265,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64002] = 3, + [66812] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(5863), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, - anon_sym_SEMI, + ACTIONS(5865), 1, + sym_variable_name, + STATE(6680), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5126), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130959,11 +133307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130978,16 +133324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64055] = 3, + [66881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130997,7 +133344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131010,7 +133356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -131027,17 +133372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64108] = 3, + [66934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131047,7 +133394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131078,34 +133424,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64161] = 5, + [66987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(1258), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 38, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131117,7 +133459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131130,23 +133474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64218] = 6, + [67040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(5713), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 1, + ACTIONS(5859), 1, sym__concat, - STATE(1372), 1, + STATE(1357), 1, aux_sym_concatenation_repeat1, - ACTIONS(5186), 6, + ACTIONS(1233), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131157,6 +133499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131183,31 +133527,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64277] = 3, + [67099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5868), 1, + sym__concat, + STATE(1395), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131233,67 +133580,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64330] = 3, + [67158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5713), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [64383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5859), 1, sym__concat, - sym_variable_name, + STATE(1366), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5652), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(5650), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131315,10 +133616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131332,18 +133631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64436] = 3, + [67217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(5703), 1, + sym__special_character, + STATE(1392), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(5292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131353,6 +133656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131368,9 +133672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131383,16 +133685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64489] = 3, + [67274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131402,7 +133705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131433,22 +133735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64542] = 6, + [67327] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(5819), 1, sym__concat, - STATE(1444), 1, + STATE(1471), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5437), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(5435), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131469,6 +133771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -131484,24 +133787,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64601] = 6, + [67386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5683), 1, + ACTIONS(5819), 1, sym__concat, - STATE(1461), 1, + STATE(1473), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(5441), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(5439), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131522,6 +133824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -131537,36 +133840,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64660] = 6, + [67445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - aux_sym_concatenation_token1, - ACTIONS(5587), 1, - sym__concat, - STATE(1375), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5190), 6, - sym_file_descriptor, + ACTIONS(5865), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, + ACTIONS(5870), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 36, - anon_sym_SEMI, + STATE(6680), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5126), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131574,7 +133882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -131590,25 +133898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64719] = 6, + [67514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - aux_sym_concatenation_token1, - ACTIONS(5587), 1, - sym__concat, - STATE(1372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 6, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131619,6 +133920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131628,8 +133931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131643,25 +133948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64778] = 6, + [67567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - aux_sym_concatenation_token1, - ACTIONS(5587), 1, - sym__concat, - STATE(1375), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 6, + ACTIONS(1282), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131671,7 +133968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131681,8 +133981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131696,22 +133998,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64837] = 5, + [67620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(5846), 1, + aux_sym_concatenation_token1, + ACTIONS(5848), 1, + sym__concat, + STATE(1486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(5292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131721,10 +134025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131734,10 +134035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131749,18 +134050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64894] = 3, + [67679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5846), 1, + aux_sym_concatenation_token1, + ACTIONS(5848), 1, sym__concat, + STATE(1489), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(5296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131771,8 +134079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131782,10 +134088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131799,28 +134103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64947] = 6, + [67738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1418), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(5711), 1, + sym__special_character, + STATE(1368), 1, + aux_sym__literal_repeat1, + ACTIONS(4555), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(4553), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -131828,6 +134132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131840,7 +134145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131853,16 +134157,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65006] = 3, + [67795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131903,17 +134207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65059] = 3, + [67848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1235), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131923,6 +134226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131935,7 +134239,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -131952,18 +134255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [65112] = 3, + [67901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131973,6 +134276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132003,22 +134307,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65165] = 6, + [67954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(5846), 1, aux_sym_concatenation_token1, - ACTIONS(5685), 1, + ACTIONS(5848), 1, sym__concat, - STATE(1461), 1, + STATE(1486), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1233), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132028,7 +134333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -132056,17 +134360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65224] = 3, + [68013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132076,6 +134379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132106,22 +134410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65277] = 6, + [68066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(1306), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 37, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132131,8 +134429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132145,6 +134445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132159,20 +134460,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65336] = 5, + [68119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, + sym__concat, + STATE(1347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 38, + ACTIONS(2137), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132182,10 +134486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132199,6 +134500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132211,16 +134513,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65393] = 3, + [68178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1231), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132230,10 +134538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132243,9 +134549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132259,18 +134565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65446] = 3, + [68237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132280,7 +134586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132311,16 +134616,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65499] = 3, + [68290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5872), 1, sym__concat, + STATE(1484), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132330,10 +134641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132343,9 +134652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132359,29 +134668,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65552] = 6, + [68349] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 1, - aux_sym_concatenation_token1, - ACTIONS(5694), 1, - sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(5711), 1, + sym__special_character, + STATE(1368), 1, + aux_sym__literal_repeat1, + ACTIONS(4672), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(4670), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -132389,6 +134696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132397,10 +134705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132412,23 +134720,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65611] = 6, + [68406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5700), 1, + ACTIONS(5874), 1, sym__concat, - STATE(1462), 1, + STATE(1484), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1215), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132438,9 +134746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132467,34 +134774,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65670] = 5, + [68465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132506,7 +134809,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132519,33 +134824,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65727] = 5, + [68518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, + ACTIONS(5768), 1, sym__special_character, - STATE(1474), 1, + STATE(1423), 1, aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(4555), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 38, + ACTIONS(4553), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132554,6 +134860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -132568,18 +134875,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65783] = 3, + [68575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5692), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, + sym__concat, + STATE(1347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(4652), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132589,10 +134902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132602,6 +134912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -132617,18 +134928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65835] = 3, + [68634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132667,17 +134977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [65887] = 3, + [68687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(5292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132687,10 +135004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132700,9 +135015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132717,16 +135032,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65939] = 3, + [68746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 39, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132749,120 +135064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [65991] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5629), 1, - anon_sym_DQUOTE, - ACTIONS(5713), 1, - sym_variable_name, - STATE(3346), 1, - sym_string, - ACTIONS(5711), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5709), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 28, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [66053] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5629), 1, - anon_sym_DQUOTE, - ACTIONS(5713), 1, - sym_variable_name, - STATE(3346), 1, - sym_string, - ACTIONS(5711), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5709), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 28, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -132874,20 +135082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66115] = 5, + [68799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, + ACTIONS(5854), 1, sym__special_character, - STATE(1514), 1, + STATE(1348), 1, aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(5294), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(5292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132897,6 +135105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132925,18 +135134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66171] = 3, + [68856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132947,6 +135155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132956,7 +135166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -132973,17 +135182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66223] = 3, + [68909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132993,7 +135204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -133022,20 +135232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66275] = 5, + [68962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 1, - sym__special_character, - STATE(1474), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1258), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133058,9 +135266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -133072,18 +135283,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66331] = 3, + [69015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(5876), 1, + aux_sym_concatenation_token1, + ACTIONS(5879), 1, sym__concat, + STATE(1484), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133093,10 +135309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133106,9 +135320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133123,16 +135337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66383] = 3, + [69074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133155,6 +135369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -133172,17 +135387,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66435] = 3, + [69127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5846), 1, + aux_sym_concatenation_token1, + ACTIONS(5882), 1, sym__concat, + STATE(1514), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133192,7 +135413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -133205,7 +135425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133221,18 +135440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66487] = 3, + [69186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133243,6 +135461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133252,7 +135472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -133269,17 +135488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66539] = 3, + [69239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(1473), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 39, + ACTIONS(5296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133289,10 +135515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133319,20 +135543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66591] = 5, + [69298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(5846), 1, + aux_sym_concatenation_token1, + ACTIONS(5884), 1, + sym__concat, + STATE(1514), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133343,8 +135570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133354,10 +135579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -133369,17 +135594,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66647] = 3, + [69357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, sym__concat, + STATE(1510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(5292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133389,10 +135621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133404,7 +135634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133418,17 +135647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [66699] = 3, + [69416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133451,6 +135681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -133468,30 +135699,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66751] = 3, + [69469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(1254), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133503,6 +135734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133517,19 +135749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66803] = 5, + [69522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5722), 1, - sym__special_character, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133555,52 +135784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [66859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, @@ -133615,19 +135798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66911] = 3, + [69575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133637,8 +135818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133648,6 +135831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -133664,31 +135848,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66963] = 3, + [69628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4692), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4690), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133697,9 +135882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133713,132 +135898,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67015] = 6, + [69681] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - aux_sym_concatenation_token1, - ACTIONS(5728), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(5729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5733), 1, anon_sym_DOLLAR, + ACTIONS(5735), 1, sym__special_character, + ACTIONS(5737), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5739), 1, aux_sym_number_token1, + ACTIONS(5741), 1, aux_sym_number_token2, + ACTIONS(5743), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5745), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5747), 1, anon_sym_BQUOTE, + ACTIONS(5749), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [67073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5753), 1, sym_test_operator, + ACTIONS(5755), 1, sym__brace_start, + STATE(3420), 1, + aux_sym__literal_repeat1, + ACTIONS(1974), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5751), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1365), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5727), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [67125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, - anon_sym_SEMI, + STATE(3309), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1972), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133846,38 +135966,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67177] = 5, + [69770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, - sym__special_character, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(5688), 1, + aux_sym_concatenation_token1, + ACTIONS(5890), 1, + sym__concat, + STATE(1361), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133900,10 +136004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -133916,17 +136020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67233] = 3, + [69829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, sym__concat, + STATE(1510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1231), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133949,7 +136058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133965,30 +136073,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67285] = 3, + [69888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1226), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133997,9 +136106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134014,29 +136123,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67337] = 3, + [69941] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5729), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5731), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5733), 1, + anon_sym_DOLLAR, + ACTIONS(5735), 1, + sym__special_character, + ACTIONS(5737), 1, + anon_sym_DQUOTE, + ACTIONS(5739), 1, + aux_sym_number_token1, + ACTIONS(5741), 1, + aux_sym_number_token2, + ACTIONS(5743), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5745), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5747), 1, + anon_sym_BQUOTE, + ACTIONS(5749), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5753), 1, sym_test_operator, + ACTIONS(5755), 1, sym__brace_start, + STATE(3420), 1, + aux_sym__literal_repeat1, + ACTIONS(2080), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, - anon_sym_SEMI, + ACTIONS(5751), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1369), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5727), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3309), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2078), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134044,48 +136190,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67389] = 3, + [70030] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5865), 1, sym_variable_name, + STATE(6680), 1, + sym_subscript, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5126), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4265), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, - anon_sym_SEMI, + ACTIONS(4292), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134093,11 +136231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134112,21 +136248,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67441] = 6, + [70097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(5723), 1, aux_sym_concatenation_token1, - ACTIONS(5735), 1, + ACTIONS(5850), 1, sym__concat, - STATE(1488), 1, + STATE(1363), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5437), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(5435), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134136,8 +136272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134147,6 +136284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -134162,30 +136300,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67499] = 3, + [70156] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5865), 1, + sym_variable_name, + STATE(6680), 1, + sym_subscript, + ACTIONS(4265), 2, sym_test_operator, sym__brace_start, + ACTIONS(4290), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, - anon_sym_SEMI, + STATE(5126), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134195,9 +136339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4251), 17, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134211,23 +136356,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67551] = 3, + [70221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(4563), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(4561), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -134236,6 +136381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134244,9 +136390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134260,20 +136406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67603] = 3, + [70274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134284,6 +136428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134311,7 +136457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67655] = 3, + [70327] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 6, @@ -134321,7 +136467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134331,8 +136477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134360,20 +136507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67707] = 5, + [70380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134398,7 +136542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -134411,20 +136557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67763] = 5, + [70433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(5723), 1, + aux_sym_concatenation_token1, + ACTIONS(5850), 1, + sym__concat, + STATE(1377), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(5439), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134450,6 +136597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -134462,16 +136610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67819] = 3, + [70492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134493,6 +136642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -134509,22 +136659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67871] = 5, + [70545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5892), 1, + sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134534,9 +136685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134546,10 +136696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -134561,19 +136711,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67927] = 3, + [70604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, sym__concat, + STATE(1513), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(5296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134583,6 +136738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -134593,10 +136749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134610,17 +136764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67979] = 3, + [70663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134660,17 +136816,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68031] = 3, + [70716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5894), 1, sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134691,10 +136852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134708,21 +136867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68083] = 5, + [70775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(5896), 1, + aux_sym_concatenation_token1, + ACTIONS(5899), 1, + sym__concat, + STATE(1514), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(1235), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134733,8 +136896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134744,10 +136905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -134759,17 +136920,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68139] = 3, + [70834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5902), 1, + aux_sym_concatenation_token1, + ACTIONS(5905), 1, sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134779,9 +136947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134793,7 +136960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134809,21 +136975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68191] = 6, + [70893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, + ACTIONS(5886), 1, aux_sym_concatenation_token1, - ACTIONS(5742), 1, + ACTIONS(5888), 1, sym__concat, - STATE(1515), 1, + STATE(1510), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5445), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(5443), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134833,9 +137000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134860,17 +137026,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68249] = 3, + [70952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, sym__concat, + STATE(1513), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5449), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(5447), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134880,10 +137053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134895,7 +137066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134909,17 +137079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68301] = 3, + [71011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134929,7 +137101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -134942,6 +137113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -134959,21 +137131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68353] = 6, + [71064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - aux_sym_concatenation_token1, - ACTIONS(5744), 1, - sym__concat, - STATE(1515), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134995,8 +137163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135011,25 +137181,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68411] = 5, + [71117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 1, - sym__special_character, - STATE(1514), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4688), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(4686), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -135038,6 +137205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135046,9 +137214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135060,23 +137230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68467] = 6, + [71170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - aux_sym_concatenation_token1, - ACTIONS(5752), 1, - sym__concat, - STATE(1515), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1286), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135086,6 +137250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -135100,6 +137265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135113,17 +137279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68525] = 3, + [71223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1237), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135134,8 +137303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135163,29 +137330,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68577] = 3, + [71275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(5908), 1, sym__concat, + STATE(1010), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, - anon_sym_SEMI, + ACTIONS(1207), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135194,9 +137365,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135210,31 +137381,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68629] = 3, + [71333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(5910), 1, sym__concat, - sym_variable_name, + STATE(1010), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, - anon_sym_SEMI, + ACTIONS(1213), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135243,9 +137417,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135259,93 +137433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [68681] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5757), 1, - sym_extglob_pattern, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2541), 1, - sym__extglob_blob, - STATE(2917), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68783] = 3, + [71391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135355,8 +137453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135384,18 +137483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68835] = 3, + [71443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135406,6 +137503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135415,7 +137514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -135432,22 +137530,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68887] = 6, + [71495] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - aux_sym_concatenation_token1, - ACTIONS(5759), 1, - sym__concat, - STATE(1510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(5737), 1, + anon_sym_DQUOTE, + ACTIONS(5916), 1, + sym_variable_name, + STATE(3393), 1, + sym_string, + ACTIONS(5914), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5912), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 28, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [71557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1256), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135458,8 +137608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135469,8 +137617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135485,21 +137635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68945] = 6, + [71609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, + ACTIONS(5918), 1, aux_sym_concatenation_token1, - ACTIONS(5759), 1, + ACTIONS(5920), 1, sym__concat, - STATE(1510), 1, + STATE(1596), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(5648), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(5646), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135509,61 +137659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [69003] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5740), 1, - aux_sym_concatenation_token1, - ACTIONS(5759), 1, - sym__concat, - STATE(1513), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135588,17 +137685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69061] = 3, + [71667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135608,6 +137706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -135620,7 +137719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -135638,16 +137736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69113] = 3, + [71719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(5922), 1, + sym__special_character, + STATE(1531), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135657,6 +137758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -135669,12 +137771,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135686,19 +137785,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69165] = 3, + [71775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135709,6 +137807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135718,7 +137818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -135735,17 +137834,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69217] = 3, + [71827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135767,7 +137867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -135784,66 +137883,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69269] = 3, + [71879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5918), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [69321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(5920), 1, sym__concat, + STATE(1599), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5652), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(5650), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135853,9 +137909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135865,10 +137920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135882,30 +137935,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69373] = 3, + [71937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1233), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135917,7 +137972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135932,16 +137986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69425] = 3, + [71989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1312), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135981,16 +138035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69477] = 3, + [72041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136030,65 +138084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [69581] = 3, + [72093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136128,16 +138133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69633] = 3, + [72145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136177,65 +138182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [69737] = 3, + [72197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136275,16 +138231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69789] = 3, + [72249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136324,16 +138280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69841] = 3, + [72301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136373,65 +138329,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69893] = 21, + [72353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5769), 1, - sym__special_character, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(5773), 1, - aux_sym_number_token1, - ACTIONS(5775), 1, - aux_sym_number_token2, - ACTIONS(5777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5781), 1, - anon_sym_BQUOTE, - ACTIONS(5783), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5787), 1, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(5927), 1, + sym__concat, + STATE(1600), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(5789), 1, sym__brace_start, - STATE(5595), 1, - aux_sym__literal_repeat1, - STATE(5612), 1, - sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5785), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5761), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 13, + ACTIONS(5435), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136439,21 +138363,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [69981] = 5, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [72411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(5927), 1, + sym__concat, + STATE(1613), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 37, + ACTIONS(5439), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136463,9 +138405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136479,6 +138420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -136491,65 +138433,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70037] = 21, + [72469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(5931), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4265), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(4251), 17, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5765), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5767), 1, anon_sym_DOLLAR, - ACTIONS(5769), 1, sym__special_character, - ACTIONS(5771), 1, anon_sym_DQUOTE, - ACTIONS(5773), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5775), 1, aux_sym_number_token2, - ACTIONS(5777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5781), 1, anon_sym_BQUOTE, - ACTIONS(5783), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5789), 1, - sym__brace_start, - ACTIONS(5793), 1, - sym_test_operator, - STATE(5558), 1, - aux_sym__literal_repeat1, - STATE(5613), 1, - sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5791), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 13, + ACTIONS(5929), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136557,17 +138483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [70125] = 3, + anon_sym_LT_LT_DASH, + [72525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5298), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(5296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136590,9 +138516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -136607,16 +138533,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70177] = 3, + [72577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136626,7 +138552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136655,17 +138580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70229] = 3, + [72629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136705,16 +138631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70281] = 3, + [72681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(5933), 1, + sym__special_character, + STATE(1549), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136724,7 +138654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136741,7 +138670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -136754,21 +138682,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70333] = 6, + [72737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(5936), 1, aux_sym_concatenation_token1, - ACTIONS(5795), 1, + ACTIONS(5938), 1, sym__concat, - STATE(1488), 1, + STATE(1556), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136778,7 +138707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -136789,6 +138717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -136804,9 +138733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70391] = 3, + [72795] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1278), 5, @@ -136837,6 +138765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -136853,18 +138782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70443] = 3, + [72847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136874,6 +138802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136902,19 +138831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70495] = 3, + [72899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136924,8 +138851,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136953,65 +138881,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70547] = 3, - ACTIONS(3), 1, + [72951] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5942), 1, + sym_extglob_pattern, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2604), 1, + sym__extglob_blob, + STATE(2888), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [70599] = 3, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [73053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137021,9 +138975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137051,16 +139004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70651] = 3, + [73105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(5936), 1, + aux_sym_concatenation_token1, + ACTIONS(5944), 1, sym__concat, + STATE(1761), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137071,8 +139030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137085,7 +139042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137100,17 +139056,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70703] = 3, + [73163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1312), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137120,8 +139075,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137149,65 +139105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70755] = 3, + [73215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(5298), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(5296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137217,6 +139124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137229,10 +139137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137246,17 +139152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70859] = 3, + [73267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137278,7 +139185,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137295,17 +139201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70911] = 3, + [73319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137315,9 +139223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137327,6 +139234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137343,18 +139251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70963] = 3, + [73371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137364,9 +139272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137376,6 +139283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137392,18 +139300,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71015] = 3, + [73423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(5948), 1, sym__concat, + STATE(1591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137427,7 +139339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137441,9 +139352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71067] = 3, + [73481] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1298), 5, @@ -137462,6 +139372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137490,19 +139401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71119] = 3, + [73533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1312), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137523,6 +139433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137539,94 +139450,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [71171] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - ACTIONS(5799), 1, - sym_extglob_pattern, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(2842), 1, - sym__extglob_blob, - STATE(3011), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71273] = 3, + [73585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(5952), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(5950), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137636,7 +139470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137649,7 +139486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137664,16 +139500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71325] = 3, + [73637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137683,6 +139519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137711,73 +139548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71377] = 3, + [73689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(5956), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [71429] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5801), 1, - aux_sym_concatenation_token1, - ACTIONS(5803), 1, - sym__concat, - STATE(1583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(5954), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137787,7 +139568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137814,16 +139598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71487] = 3, + [73741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1264), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137833,9 +139618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137845,6 +139629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137861,18 +139646,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71539] = 3, + [73793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(5958), 1, sym__concat, + STATE(1591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137896,7 +139685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137910,18 +139698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71591] = 3, + [73851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137943,6 +139730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137959,24 +139747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71643] = 6, + [73903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - aux_sym_concatenation_token1, - ACTIONS(5805), 1, - sym__concat, - STATE(1583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1290), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1288), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137999,6 +139782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138013,18 +139797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71701] = 3, + [73955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138035,6 +139817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138062,10 +139846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71753] = 3, + [74007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -138073,7 +139857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138111,16 +139895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71805] = 3, + [74059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138142,7 +139926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138159,17 +139942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71857] = 3, + [74111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138191,7 +139975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138208,17 +139991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71909] = 3, + [74163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138228,9 +140013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138240,7 +140024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138257,17 +140040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71961] = 3, + [74215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138289,7 +140073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138306,17 +140089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72013] = 3, + [74267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138338,7 +140122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138355,17 +140138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72065] = 3, + [74319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1254), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138376,8 +140162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138405,16 +140189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72117] = 3, + [74371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138424,9 +140209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138436,7 +140220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138453,17 +140236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72169] = 3, + [74423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138473,9 +140258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138485,7 +140269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138502,23 +140285,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72221] = 6, + [74475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, - aux_sym_concatenation_token1, - ACTIONS(5810), 1, - sym__concat, - STATE(1583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(5960), 1, + sym__special_character, + STATE(1582), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138529,6 +140311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138538,11 +140322,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -138554,11 +140336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72279] = 3, + [74531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -138566,7 +140349,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138604,104 +140387,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72331] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - ACTIONS(5815), 1, - sym_extglob_pattern, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2644), 1, - sym__expression, - STATE(2645), 1, - sym__extglob_blob, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72433] = 3, + [74583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 6, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 38, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138713,6 +140421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138727,17 +140436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72485] = 3, + [74635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1312), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138758,7 +140467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138775,23 +140483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72537] = 6, + [74687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - aux_sym_concatenation_token1, - ACTIONS(5817), 1, - sym__concat, - STATE(1568), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5952), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5950), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138801,7 +140504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138811,7 +140517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -138827,97 +140532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72595] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5757), 1, - sym_extglob_pattern, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2541), 1, - sym__extglob_blob, - STATE(2969), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72697] = 6, + [74739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5819), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1254), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138940,6 +140568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138954,22 +140583,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72755] = 6, + [74791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5821), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138979,6 +140603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -138992,6 +140617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139006,22 +140632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72813] = 6, + [74843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5823), 1, - sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(5956), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(5954), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139031,7 +140651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139058,22 +140681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [72871] = 6, + [74895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5825), 1, - sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1266), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1264), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139083,6 +140701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -139095,6 +140714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139110,22 +140730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [72929] = 6, + [74947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5963), 1, aux_sym_concatenation_token1, - ACTIONS(5829), 1, + ACTIONS(5966), 1, sym__concat, - STATE(1626), 1, + STATE(1591), 1, aux_sym_concatenation_repeat1, - ACTIONS(5389), 5, + ACTIONS(1237), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139136,6 +140755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139160,35 +140781,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72987] = 6, + [75005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(5831), 1, - sym__concat, - STATE(895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1292), 39, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139197,9 +140813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139213,18 +140829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73045] = 3, + [75057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(5920), 1, sym__concat, - sym_variable_name, + STATE(1596), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1231), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139245,10 +140866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139262,22 +140881,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [75115] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, sym_word, - [73097] = 6, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5942), 1, + sym_extglob_pattern, + ACTIONS(5969), 1, + sym__special_character, + STATE(2604), 1, + sym__extglob_blob, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2936), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5835), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1270), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139287,8 +140976,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139298,9 +140988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139314,23 +141004,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73155] = 6, + [75269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(5918), 1, aux_sym_concatenation_token1, - ACTIONS(5829), 1, + ACTIONS(5971), 1, sym__concat, - STATE(1632), 1, + STATE(1604), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 5, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 36, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139340,6 +141030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -139367,73 +141058,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [73213] = 6, - ACTIONS(3), 1, + [75327] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5837), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, - anon_sym_SEMI, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(4292), 1, + anon_sym_LT_LT, + ACTIONS(5973), 1, + sym_variable_name, + STATE(6672), 1, + sym_subscript, + STATE(5223), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4294), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_LT_LT_DASH, + STATE(5221), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4265), 20, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [73271] = 6, + [75395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5839), 1, - aux_sym_concatenation_token1, - ACTIONS(5842), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(2084), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(2082), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139443,8 +141134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139471,39 +141164,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73329] = 11, + [75447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5849), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(5976), 1, + sym__concat, + STATE(1604), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139511,7 +141198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -139527,40 +141214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73397] = 11, + [75505] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - sym_variable_name, - ACTIONS(5852), 1, - aux_sym_heredoc_redirect_token1, - STATE(6633), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(5978), 1, + sym__concat, + STATE(1639), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139568,6 +141250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -139585,21 +141268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73465] = 6, + [75563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(2139), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(2137), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139609,8 +141287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139637,35 +141317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73523] = 5, + [75615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(1274), 5, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(5856), 22, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139675,7 +141336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -139688,20 +141348,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [73579] = 5, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [75667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, + ACTIONS(5980), 1, sym__special_character, - STATE(1514), 1, + STATE(1549), 1, aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(5294), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 37, + ACTIONS(5292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139723,6 +141401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -139737,32 +141416,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73635] = 3, + [75723] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 6, + ACTIONS(5982), 1, + aux_sym_concatenation_token1, + ACTIONS(5985), 1, + sym__concat, + STATE(1604), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 38, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139771,7 +141452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -139787,31 +141467,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73687] = 3, + [75781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 6, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 38, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139820,9 +141500,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139836,22 +141516,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73739] = 7, + [75833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1274), 6, sym_file_descriptor, - ACTIONS(5872), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5864), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139859,23 +141548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5862), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139889,46 +141565,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73799] = 7, + [75885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1254), 5, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5862), 12, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139942,23 +141614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73859] = 6, + [75937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - aux_sym_concatenation_token1, - ACTIONS(5817), 1, - sym__concat, - STATE(1568), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139969,6 +141636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139978,9 +141647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139994,23 +141663,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73917] = 6, + [75989] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - aux_sym_concatenation_token1, - ACTIONS(5817), 1, - sym__concat, - STATE(1572), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(5990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5994), 1, + anon_sym_DOLLAR, + ACTIONS(5996), 1, + sym__special_character, + ACTIONS(5998), 1, + anon_sym_DQUOTE, + ACTIONS(6000), 1, + aux_sym_number_token1, + ACTIONS(6002), 1, + aux_sym_number_token2, + ACTIONS(6004), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6006), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6008), 1, + anon_sym_BQUOTE, + ACTIONS(6010), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6014), 1, + sym_test_operator, + ACTIONS(6016), 1, + sym__brace_start, + STATE(5598), 1, + aux_sym__literal_repeat1, + STATE(5617), 1, + sym_concatenation, + ACTIONS(2381), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6012), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5988), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5522), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [76077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140021,6 +141752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140030,9 +141763,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140046,18 +141779,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73975] = 3, + [76129] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 6, + ACTIONS(5990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5994), 1, + anon_sym_DOLLAR, + ACTIONS(5996), 1, + sym__special_character, + ACTIONS(5998), 1, + anon_sym_DQUOTE, + ACTIONS(6000), 1, + aux_sym_number_token1, + ACTIONS(6002), 1, + aux_sym_number_token2, + ACTIONS(6004), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6006), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6008), 1, + anon_sym_BQUOTE, + ACTIONS(6010), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6016), 1, + sym__brace_start, + ACTIONS(6020), 1, + sym_test_operator, + STATE(5529), 1, + aux_sym__literal_repeat1, + STATE(5611), 1, + sym_concatenation, + ACTIONS(2385), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6012), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6018), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [76217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4563), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(4561), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140068,6 +141868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -140096,30 +141897,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74027] = 3, + [76269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 6, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(6022), 1, + sym__concat, + STATE(1639), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140145,26 +141949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74079] = 6, + [76327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1496), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(1233), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 37, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -140172,6 +141972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140180,6 +141981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -140195,23 +141997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74137] = 6, + [76379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1548), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(1282), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 37, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140221,8 +142017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140232,8 +142029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140247,20 +142046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74195] = 3, + [76431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140271,6 +142067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140280,6 +142078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140296,20 +142095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74247] = 3, + [76483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140320,6 +142116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140329,6 +142127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140345,20 +142144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74299] = 3, + [76535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(6024), 1, + sym__special_character, + STATE(1582), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(5292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140369,6 +142169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140380,9 +142182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -140396,18 +142196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74351] = 3, + [76591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140418,6 +142216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140427,6 +142227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140443,20 +142244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74403] = 3, + [76643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140467,6 +142265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140476,6 +142276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140492,9 +142293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74455] = 3, + [76695] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1270), 7, @@ -140525,6 +142325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140541,12 +142342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74507] = 3, + [76747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -140554,7 +142354,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1312), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140574,6 +142374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140590,24 +142391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74559] = 6, + [76799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - aux_sym_concatenation_token1, - ACTIONS(5829), 1, - sym__concat, - STATE(1626), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1294), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140627,8 +142423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140642,20 +142440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74617] = 3, + [76851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140665,6 +142461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -140675,6 +142472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140691,20 +142489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74669] = 3, + [76903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140715,6 +142510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140742,22 +142539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74721] = 6, + [76955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - aux_sym_concatenation_token1, - ACTIONS(5876), 1, - sym__concat, - STATE(1636), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140768,6 +142559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140777,8 +142570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140792,22 +142587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74779] = 5, + [77007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(1254), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 37, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140832,7 +142622,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -140845,22 +142637,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74835] = 3, + [77059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -140868,7 +142660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140880,6 +142671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140894,18 +142686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74887] = 3, + [77111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140915,6 +142706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -140925,6 +142717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140941,31 +142734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74939] = 3, + [77163] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140973,10 +142757,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6028), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140990,31 +142787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74991] = 3, + [77223] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141022,60 +142810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [75043] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5827), 1, - aux_sym_concatenation_token1, - ACTIONS(5878), 1, - sym__concat, - STATE(1636), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + anon_sym_LT_LT_LT, + ACTIONS(6028), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -141091,20 +142840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75101] = 3, + [77283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141114,6 +142861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141124,6 +142872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -141140,31 +142889,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75153] = 3, + [77335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(4692), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(4690), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141173,9 +142922,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141189,24 +142938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75205] = 3, + [77387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -141214,7 +142962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141226,6 +142973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141240,70 +142988,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75257] = 6, - ACTIONS(3), 1, + [77439] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(5880), 1, - aux_sym_concatenation_token1, - ACTIONS(5883), 1, - sym__concat, - STATE(1636), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, - anon_sym_SEMI, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(5973), 1, + sym_variable_name, + ACTIONS(6042), 1, + anon_sym_LT_LT, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + STATE(6672), 1, + sym_subscript, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5223), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5052), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4265), 20, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [75315] = 3, + [77509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, - sym_file_descriptor, + ACTIONS(5936), 1, + aux_sym_concatenation_token1, + ACTIONS(5938), 1, sym__concat, - sym_variable_name, + STATE(1556), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, + ACTIONS(5435), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141323,9 +143081,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141339,20 +143097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75367] = 3, + [77567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141362,6 +143118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141390,18 +143147,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75419] = 3, + [77619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, + ACTIONS(5936), 1, + aux_sym_concatenation_token1, + ACTIONS(5938), 1, sym__concat, - sym_variable_name, + STATE(1728), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(5439), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141421,9 +143182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141437,20 +143198,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75471] = 3, + [77677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, - sym_file_descriptor, + ACTIONS(6046), 1, + aux_sym_concatenation_token1, + ACTIONS(6049), 1, sym__concat, - sym_variable_name, + STATE(1639), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141460,6 +143223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141470,9 +143234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141486,20 +143250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75523] = 3, + [77735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(5980), 1, + sym__special_character, + STATE(1549), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(5699), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141510,6 +143275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141519,11 +143286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -141535,20 +143301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75575] = 3, + [77791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(4654), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(4652), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141558,7 +143321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141568,9 +143334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141584,24 +143350,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75627] = 3, + [77843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -141609,7 +143374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141621,6 +143385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141635,16 +143400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75679] = 3, + [77895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141654,10 +143420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141670,6 +143434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141684,18 +143449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75731] = 3, + [77947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141705,6 +143469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141715,7 +143480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -141732,31 +143496,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75783] = 3, + [77999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141765,9 +143529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141781,19 +143545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75835] = 3, + [78051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141803,6 +143567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141831,18 +143596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75887] = 3, + [78103] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(5980), 1, + sym__special_character, + STATE(1549), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(5707), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141853,6 +143620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141865,9 +143634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -141880,67 +143647,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75939] = 3, - ACTIONS(3), 1, + [78159] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(4443), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + ACTIONS(6054), 1, + sym_extglob_pattern, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2832), 1, + sym__expression, + STATE(2833), 1, + sym__extglob_blob, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [75991] = 3, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(4688), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(4686), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141950,7 +143740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141963,7 +143756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141978,29 +143770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76043] = 3, + [78313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(4654), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(4652), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142012,7 +143805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142027,21 +143819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76095] = 6, + [78365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1262), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142051,7 +143840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142065,6 +143853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142079,21 +143868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76153] = 6, + [78417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(1599), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142114,9 +143899,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142130,23 +143915,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76211] = 3, + [78469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 39, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -142154,7 +143940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142166,6 +143951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142180,16 +143966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76263] = 3, + [78521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142212,9 +143998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142229,17 +144015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76315] = 3, + [78573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(6056), 1, sym__concat, - sym_variable_name, + STATE(1562), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1231), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142249,8 +144039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142262,7 +144053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142276,19 +144066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76367] = 3, + [78631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1274), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142298,7 +144088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142327,17 +144116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76419] = 3, + [78683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(6058), 1, + sym__special_character, + STATE(1657), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142347,8 +144138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142361,9 +144154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -142376,17 +144167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76471] = 3, + [78739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1266), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1264), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142396,7 +144188,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142407,6 +144198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -142423,32 +144215,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76523] = 3, + [78791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(4563), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(4561), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142457,6 +144248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -142472,19 +144264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76575] = 3, + [78843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142505,7 +144296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -142522,23 +144312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76627] = 6, + [78895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1590), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142548,6 +144334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142558,9 +144345,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142574,34 +144361,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76685] = 6, + [78947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(4688), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(4686), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142627,17 +144412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76743] = 3, + [78999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142658,7 +144443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -142675,23 +144459,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76795] = 6, + [79051] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + ACTIONS(6063), 1, + sym_extglob_pattern, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2988), 1, + sym__expression, + STATE(3053), 1, + sym__extglob_blob, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [79153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1592), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142701,6 +144555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142713,6 +144568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142728,22 +144584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76853] = 6, + [79205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1593), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 36, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142753,6 +144604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142763,8 +144615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142778,24 +144632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76911] = 6, + [79257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 36, + ACTIONS(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142805,6 +144653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142818,6 +144667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142832,22 +144682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76969] = 6, + [79309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1590), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142857,6 +144702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142870,6 +144716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142884,68 +144731,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77027] = 6, - ACTIONS(3), 1, + [79361] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, - sym_file_descriptor, + ACTIONS(5973), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(6672), 1, + sym_subscript, + STATE(5223), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5221), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4251), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4257), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4290), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4265), 14, + sym_test_operator, + sym__brace_start, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [77085] = 3, + [79425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(1262), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 39, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142955,7 +144805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -142971,6 +144820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142985,21 +144835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77137] = 6, + [79477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1496), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1237), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143009,8 +144854,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143020,8 +144866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143035,19 +144883,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [77195] = 3, + [79529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(5927), 1, sym__concat, - sym_variable_name, + STATE(1600), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1231), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143071,7 +144922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143086,16 +144936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77247] = 3, + [79587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1233), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 39, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143135,22 +144985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77299] = 6, + [79639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(6065), 1, + sym__special_character, + STATE(1531), 1, + aux_sym__literal_repeat1, + ACTIONS(5648), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 36, + ACTIONS(5646), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143160,7 +145007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143170,11 +145020,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143186,23 +145034,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77357] = 6, + [79695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1590), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1278), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, + ACTIONS(1276), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143225,6 +145070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143239,22 +145085,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77415] = 6, + [79747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(6024), 1, + sym__special_character, + STATE(1582), 1, + aux_sym__literal_repeat1, + ACTIONS(5445), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 36, + ACTIONS(5443), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [79803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 7, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143277,6 +145170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143291,33 +145185,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77473] = 6, + [79855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1590), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(5660), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(5658), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143343,22 +145234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77531] = 6, + [79907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6067), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(6069), 1, sym__concat, - STATE(1591), 1, + STATE(1710), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(5648), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(5646), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143378,7 +145269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -143394,18 +145284,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77589] = 3, + [79965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143444,17 +145335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77641] = 3, + [80017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143493,16 +145384,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77693] = 3, + [80069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 39, + ACTIONS(1252), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [80121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143512,7 +145452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -143528,6 +145467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143542,17 +145482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77745] = 3, + [80173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143562,7 +145503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143591,17 +145531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77797] = 3, + [80225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1258), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1256), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143611,7 +145552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143640,96 +145580,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77849] = 28, - ACTIONS(71), 1, + [80277] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6071), 1, + sym__special_character, + STATE(1657), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5757), 1, - sym_extglob_pattern, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2541), 1, - sym__extglob_blob, - STATE(3250), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77951] = 6, + sym_word, + [80333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1592), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1302), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143749,8 +145662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143764,24 +145679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78009] = 6, + [80385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1593), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1278), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143791,7 +145699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143803,6 +145714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143816,18 +145728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78067] = 3, + [80437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1262), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143837,10 +145750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143850,9 +145760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143866,34 +145776,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78119] = 6, + [80489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1590), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5660), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5658), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143919,22 +145827,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78177] = 6, + [80541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(1270), 7, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [80593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 7, + sym_file_descriptor, sym__concat, - STATE(1592), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [80645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [80697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 7, + sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143956,6 +146007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143971,7 +146023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78235] = 28, + [80749] = 28, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -143984,17 +146036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1127), 1, sym_word, @@ -144002,21 +146054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1135), 1, anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, ACTIONS(1141), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5757), 1, + ACTIONS(5942), 1, sym_extglob_pattern, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2541), 1, + STATE(2604), 1, sym__extglob_blob, - STATE(2861), 1, + STATE(3029), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1131), 2, @@ -144028,14 +146080,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144045,33 +146097,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [78337] = 6, + [80851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + ACTIONS(5980), 1, + sym__special_character, + STATE(1549), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 36, + ACTIONS(5435), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144084,7 +146136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -144097,33 +146148,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78395] = 6, + [80907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(1707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1266), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 36, + ACTIONS(1264), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144132,9 +146179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144148,35 +146195,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78453] = 7, + [80959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - ACTIONS(5892), 1, - anon_sym_LPAREN, - STATE(1707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1282), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 35, + ACTIONS(1280), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144188,6 +146231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144202,17 +146246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78513] = 3, + [81011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(6067), 1, + aux_sym_concatenation_token1, + ACTIONS(6069), 1, sym__concat, - sym_variable_name, + STATE(1710), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144222,7 +146271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144235,7 +146283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144251,38 +146298,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78565] = 10, + [81069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5849), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1278), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 4, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144290,9 +146328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144306,18 +146345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78631] = 3, + [81121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1755), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(5435), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144327,7 +146372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144338,9 +146382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144354,35 +146398,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78683] = 6, + [81179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(5819), 1, sym__concat, - STATE(1595), 1, + STATE(1756), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5441), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5439), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144408,34 +146451,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78741] = 9, + [81237] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, + sym__concat, + STATE(1757), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5445), 5, + sym_file_descriptor, sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(4161), 2, sym_test_operator, sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 16, + ACTIONS(5443), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144445,8 +146486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -144462,18 +146501,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78805] = 3, + [81295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, sym__concat, + STATE(1758), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5449), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(5447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144483,7 +146528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144494,10 +146538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144511,18 +146553,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78857] = 3, + [81353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(5980), 1, + sym__special_character, + STATE(1549), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(4648), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144532,8 +146578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144546,9 +146593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -144561,17 +146606,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78909] = 3, + [81409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(2082), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144581,7 +146631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144595,7 +146644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144610,17 +146658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78961] = 3, + [81467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1755), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(4648), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144630,7 +146683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144641,9 +146693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144657,19 +146709,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79013] = 3, + [81525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(4652), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144679,7 +146735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144690,9 +146745,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144706,19 +146761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79065] = 3, + [81583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1286), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1284), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144728,7 +146783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144757,17 +146811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79117] = 3, + [81635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(6067), 1, + aux_sym_concatenation_token1, + ACTIONS(6073), 1, sym__concat, - sym_variable_name, + STATE(1747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144777,7 +146836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144790,7 +146848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144806,16 +146863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79169] = 3, + [81693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1250), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 39, + ACTIONS(1248), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144825,10 +146884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144838,8 +146894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144853,35 +146911,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79221] = 6, + [81745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(5895), 1, - sym__concat, - STATE(895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(5980), 1, + sym__special_character, + STATE(1549), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(4682), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144894,7 +146951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -144907,88 +146963,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79279] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - ACTIONS(5897), 1, - sym__regex_no_space, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2870), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79378] = 3, + [81801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(1756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 38, + ACTIONS(2137), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144999,8 +146989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145027,16 +147015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79429] = 3, + [81859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1755), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(4682), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145046,7 +147040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145057,9 +147050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145073,24 +147066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79480] = 6, + [81917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5901), 1, + ACTIONS(5819), 1, sym__concat, - STATE(1715), 1, + STATE(1756), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(4688), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(4686), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145110,6 +147102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -145126,16 +147119,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79537] = 3, + [81975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1755), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(5292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145146,8 +147145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145157,9 +147154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145174,16 +147171,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79588] = 3, + [82033] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(1756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 38, + ACTIONS(5296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145194,8 +147197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145222,16 +147223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79639] = 3, + [82091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145253,6 +147254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -145270,22 +147272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79690] = 6, + [82143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, - aux_sym_concatenation_token1, - ACTIONS(5906), 1, - sym__concat, - STATE(1715), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1286), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 35, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145295,7 +147291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145307,6 +147306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145321,67 +147321,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79747] = 6, - ACTIONS(71), 1, + [82195] = 3, + ACTIONS(3), 1, sym_comment, - STATE(3442), 1, - aux_sym__literal_repeat1, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 10, + ACTIONS(4654), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(2158), 21, + [82247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [79804] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [82299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145392,8 +147441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145419,17 +147466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79855] = 3, + [82351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145440,8 +147490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145467,17 +147515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79906] = 3, + [82403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1282), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1280), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145487,7 +147538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145516,20 +147566,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79957] = 5, + [82455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, + ACTIONS(6067), 1, + aux_sym_concatenation_token1, + ACTIONS(6075), 1, + sym__concat, + STATE(1747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [82513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1284), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145539,7 +147639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145550,10 +147649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -145565,20 +147665,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80012] = 5, - ACTIONS(3), 1, + [82565] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(5911), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, sym__special_character, - STATE(1721), 1, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5942), 1, + sym_extglob_pattern, + STATE(2434), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 4, + STATE(2604), 1, + sym__extglob_blob, + STATE(3333), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5936), 1, + aux_sym_concatenation_token1, + ACTIONS(6077), 1, + sym__concat, + STATE(1761), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145589,8 +147767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145604,6 +147780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -145616,19 +147793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80067] = 5, + [82725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, - sym__special_character, - STATE(1811), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(1250), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1248), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145638,10 +147814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145653,7 +147826,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -145665,23 +147840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80122] = 6, + [82777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(5886), 1, aux_sym_concatenation_token1, - ACTIONS(5916), 1, + ACTIONS(5888), 1, sym__concat, - STATE(1895), 1, + STATE(1757), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5294), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(5292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145716,18 +147892,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80179] = 3, + [82835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, sym__concat, + STATE(1758), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(5296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145747,10 +147929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145764,17 +147944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80230] = 3, + [82893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(6056), 1, sym__concat, + STATE(1562), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(5435), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145798,7 +147984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145813,16 +147998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80281] = 3, + [82951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145832,6 +148017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -145861,16 +148047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80332] = 3, + [83003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145880,6 +148066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -145909,16 +148096,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80383] = 3, + [83055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1235), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145928,6 +148115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -145957,29 +148145,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80434] = 3, + [83107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(4688), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(4686), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145988,9 +148177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146005,16 +148194,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80485] = 3, + [83159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(1755), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146024,7 +148219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146035,9 +148229,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146051,18 +148245,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80536] = 3, + [83217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, sym__concat, + STATE(1757), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146072,7 +148271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146085,7 +148283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146101,16 +148298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80587] = 3, + [83275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146120,8 +148317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146147,18 +148346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80638] = 3, + [83327] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(6056), 1, sym__concat, + STATE(1569), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(5439), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146168,8 +148371,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146181,7 +148385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146195,18 +148398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80689] = 3, + [83385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146228,6 +148430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146245,29 +148448,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80740] = 3, + [83437] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, sym__concat, + STATE(1523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, - anon_sym_SEMI, + ACTIONS(237), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146276,9 +148483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146293,16 +148500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80791] = 3, + [83495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146312,6 +148519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -146341,72 +148549,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80842] = 11, - ACTIONS(71), 1, + [83547] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LT_LT, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5918), 1, - sym_variable_name, - STATE(6657), 1, - sym_subscript, - STATE(5135), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4159), 3, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1226), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_LT_DASH, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 10, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4161), 20, + [83605] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, + sym__concat, + ACTIONS(6079), 1, + anon_sym_LPAREN, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1226), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 35, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [80909] = 3, + sym_word, + [83665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146416,8 +148673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146443,19 +148702,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80960] = 3, + [83717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(6082), 1, + aux_sym_concatenation_token1, + ACTIONS(6085), 1, sym__concat, + STATE(1747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1235), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146475,10 +148738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146492,18 +148753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81011] = 3, + [83775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1290), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1288), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146523,7 +148786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146540,18 +148802,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81062] = 3, + [83827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(6067), 1, + aux_sym_concatenation_token1, + ACTIONS(6069), 1, sym__concat, + STATE(1725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5652), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(5650), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146571,10 +148839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146588,90 +148854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81113] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - ACTIONS(5921), 1, - sym__regex_no_space, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2637), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81212] = 3, + [83885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146691,7 +148887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146708,75 +148903,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81263] = 12, - ACTIONS(71), 1, + [83937] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5918), 1, + ACTIONS(1254), 7, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - STATE(6657), 1, - sym_subscript, - ACTIONS(5923), 2, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(5135), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 10, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4161), 20, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81332] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [83989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146796,7 +148985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146813,69 +149001,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81383] = 6, - ACTIONS(71), 1, + [84041] = 6, + ACTIONS(3), 1, sym_comment, - STATE(3442), 1, - aux_sym__literal_repeat1, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2162), 21, + ACTIONS(4834), 1, + aux_sym_concatenation_token1, + ACTIONS(4836), 1, + sym__concat, + STATE(1523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81440] = 3, + sym_word, + [84099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1254), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146895,7 +149086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146912,22 +149102,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81491] = 6, + [84151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5929), 1, + ACTIONS(6088), 1, sym__concat, - STATE(1600), 1, + STATE(1484), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1209), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146964,21 +149156,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81548] = 6, + [84209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5931), 1, + ACTIONS(6090), 1, sym__concat, - STATE(1600), 1, + STATE(1484), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1215), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147015,21 +149208,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81605] = 6, + [84267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5886), 1, aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(6092), 1, sym__concat, - STATE(1748), 1, + STATE(1515), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1209), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147049,7 +149243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -147065,72 +149258,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81662] = 9, - ACTIONS(71), 1, + [84325] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5918), 1, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(6094), 1, + sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_variable_name, - STATE(6657), 1, - sym_subscript, - STATE(5135), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4157), 7, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4268), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [84383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 6, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4690), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4161), 14, - sym_test_operator, - sym__brace_start, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81725] = 3, + sym_word, + [84435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1294), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147150,7 +149392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -147167,22 +149408,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81776] = 6, + [84487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6096), 1, aux_sym_concatenation_token1, - ACTIONS(5935), 1, + ACTIONS(6099), 1, sym__concat, - STATE(1759), 1, + STATE(1761), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1237), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1235), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147192,7 +149435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147203,6 +149445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -147219,89 +149462,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81833] = 27, - ACTIONS(71), 1, + [84545] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(5737), 1, + anon_sym_DQUOTE, + ACTIONS(5916), 1, + sym_variable_name, + STATE(3393), 1, + sym_string, + ACTIONS(5914), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(5912), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 28, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2944), 1, - sym__expression, - STATE(7403), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [81932] = 3, + sym_word, + [84607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147312,6 +149536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147339,21 +149565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81983] = 5, + [84659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, - sym__special_character, - STATE(1827), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 6, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 35, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147363,6 +149585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147375,7 +149598,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -147389,21 +149614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82038] = 6, + [84711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5939), 1, - sym__concat, - STATE(1759), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147413,7 +149634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147424,8 +149644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147440,17 +149662,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82095] = 3, + [84762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, sym__concat, + STATE(1784), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147460,6 +149686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147470,10 +149697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147488,21 +149713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82146] = 6, + [84819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - aux_sym_concatenation_token1, - ACTIONS(5944), 1, - sym__concat, - STATE(1759), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1270), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147523,8 +149743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147539,21 +149761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82203] = 6, + [84870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(1748), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(6106), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1318), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147563,6 +149784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147577,7 +149799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -147590,21 +149811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82260] = 6, + [84925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(1749), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1276), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147627,6 +149844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147641,15 +149859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82317] = 3, + [84976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147659,10 +149879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147672,8 +149889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147687,18 +149906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82368] = 3, + [85027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1282), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 38, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147708,9 +149926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147722,6 +149939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147737,16 +149955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82419] = 3, + [85078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(5298), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(5296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147756,8 +149974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147767,9 +149986,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147783,18 +150002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82470] = 3, + [85129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1286), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147804,9 +150022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147816,9 +150033,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147832,22 +150049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [82521] = 6, + [85180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5947), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147867,8 +150081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147882,23 +150098,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82578] = 6, + [85231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5949), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(6109), 1, + sym__special_character, + STATE(1895), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(5435), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147918,10 +150133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -147933,19 +150148,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82635] = 3, + [85286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147983,165 +150197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82686] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2983), 1, - sym__expression, - STATE(6937), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82785] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5897), 1, - sym__regex_no_space, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2962), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82884] = 5, + [85337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, - sym__special_character, - STATE(1827), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 6, + ACTIONS(1302), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 35, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148161,9 +150227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148175,19 +150244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82939] = 3, + [85388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148225,65 +150293,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82990] = 3, - ACTIONS(3), 1, + [85439] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + STATE(1914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6111), 2, sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + aux_sym_concatenation_token1, + ACTIONS(1219), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1226), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [83041] = 3, + [85494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148293,6 +150362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148303,7 +150373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148320,8 +150389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83092] = 3, + [85545] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1290), 6, @@ -148351,7 +150421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148368,17 +150437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83143] = 3, + [85596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1262), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148388,9 +150458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148400,9 +150469,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148416,17 +150485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83194] = 3, + [85647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148447,7 +150517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148464,33 +150533,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83245] = 6, + [85698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(6102), 1, aux_sym_concatenation_token1, - ACTIONS(5951), 1, + ACTIONS(6113), 1, sym__concat, - STATE(994), 1, + STATE(1858), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, + ACTIONS(1207), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148499,7 +150570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -148516,32 +150586,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83302] = 6, + [85755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5953), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1282), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(1280), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148550,9 +150617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148567,17 +150634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83359] = 3, + [85806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148587,6 +150653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148615,88 +150682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83410] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(3006), 1, - sym__expression, - STATE(7112), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83509] = 3, + [85857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148717,7 +150712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148734,17 +150728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83560] = 3, + [85908] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(6115), 1, + sym__special_character, + STATE(1788), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148754,8 +150752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148765,12 +150765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148783,17 +150780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83611] = 3, + [85963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148804,6 +150800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148813,7 +150811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148831,69 +150828,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83662] = 27, + [86014] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(737), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(6061), 1, sym__special_character, - STATE(2451), 1, + ACTIONS(6118), 1, + sym__regex_no_space, + STATE(2513), 1, aux_sym__literal_repeat1, - STATE(2806), 1, + STATE(2873), 1, sym__expression, - STATE(7232), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(721), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2383), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148903,16 +150900,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83761] = 3, + [86113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148922,8 +150919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148933,7 +150931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148951,21 +150948,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83812] = 5, + [86164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(6120), 1, + sym__concat, + STATE(1639), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 6, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [86221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(6122), 1, + sym__concat, + STATE(1639), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 35, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148989,6 +151037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149001,16 +151050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83867] = 3, + [86278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(5927), 1, sym__concat, + STATE(1792), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149020,7 +151074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149034,7 +151087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149049,7 +151101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83918] = 27, + [86335] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -149062,56 +151114,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1125), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(5969), 1, sym__special_character, - STATE(2451), 1, + ACTIONS(6124), 1, + sym__regex_no_space, + STATE(2625), 1, aux_sym__literal_repeat1, - STATE(2812), 1, + STATE(2928), 1, sym__expression, - STATE(7319), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149121,21 +151173,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84017] = 5, + [86434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 6, + ACTIONS(1270), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 35, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149146,6 +151193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149155,10 +151204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149171,21 +151221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84072] = 6, + [86485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(1753), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149195,8 +151240,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149208,6 +151254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149222,16 +151269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84129] = 3, + [86536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1312), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149252,7 +151299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -149269,90 +151315,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [84180] = 27, - ACTIONS(71), 1, + [86587] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(6126), 1, sym__special_character, - STATE(2451), 1, + STATE(1788), 1, aux_sym__literal_repeat1, - STATE(2819), 1, - sym__expression, - STATE(7372), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 6, + ACTIONS(5437), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(5435), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149362,7 +151339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149372,12 +151352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149390,17 +151367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84330] = 3, + [86642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(6109), 1, + sym__special_character, + STATE(1895), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(4682), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149423,9 +151404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149438,17 +151417,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84381] = 3, + [86697] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1327), 1, + anon_sym_LPAREN, + STATE(1914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1226), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149458,6 +151487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149486,16 +151516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84432] = 3, + [86805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149534,94 +151564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84483] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2825), 1, - sym__expression, - STATE(6817), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84582] = 6, + [86856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, - aux_sym_concatenation_token1, - ACTIONS(5916), 1, - sym__concat, - STATE(1895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(1298), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149631,6 +151583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149643,6 +151596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149656,23 +151610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [84639] = 6, + [86907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, - aux_sym_concatenation_token1, - ACTIONS(5916), 1, - sym__concat, - STATE(1711), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(1302), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 35, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149682,6 +151631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149694,6 +151644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149707,20 +151658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [84696] = 5, + [86958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, - sym__special_character, - STATE(1843), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(1286), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 37, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149730,9 +151679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149742,9 +151690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149756,18 +151707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [84751] = 3, + [87009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1306), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149778,8 +151729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149789,9 +151738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149805,22 +151754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [84802] = 5, + [87060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 6, + ACTIONS(1250), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149830,6 +151775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149840,10 +151786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149855,17 +151802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [84857] = 3, + [87111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149875,7 +151824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149886,7 +151834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -149903,70 +151850,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [84908] = 27, + [87162] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6128), 1, + sym_word, + ACTIONS(6130), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6136), 1, + sym__special_character, + ACTIONS(6138), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(6142), 1, + aux_sym_number_token1, + ACTIONS(6144), 1, + aux_sym_number_token2, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6150), 1, + anon_sym_BQUOTE, + ACTIONS(6152), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(6156), 1, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + ACTIONS(6158), 1, + sym__brace_start, + STATE(3490), 1, aux_sym__literal_repeat1, - STATE(2885), 1, - sym__expression, - STATE(6919), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(6140), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, + ACTIONS(6154), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1879), 2, sym_concatenation, - STATE(2361), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2078), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2080), 8, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + STATE(3427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149976,16 +151919,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [85007] = 3, + [87251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149995,8 +151938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150006,7 +151950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150024,64 +151967,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85058] = 3, - ACTIONS(3), 1, + [87302] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(3490), 1, + aux_sym__literal_repeat1, + STATE(1905), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3427), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2082), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2084), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [85109] = 3, + [87359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(6160), 1, + sym__special_character, + STATE(1833), 1, + aux_sym__literal_repeat1, + ACTIONS(5445), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(5443), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150091,7 +152042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150102,12 +152052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150119,22 +152066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85160] = 5, + [87414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 6, + ACTIONS(1266), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 35, + ACTIONS(1264), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150144,6 +152087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150154,10 +152098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150169,17 +152114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85215] = 3, + [87465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150218,19 +152164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85266] = 5, + [87516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - sym__special_character, - STATE(1811), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150240,10 +152184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150255,7 +152196,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150267,29 +152210,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85321] = 3, + [87567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(6028), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150297,11 +152246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150316,82 +152264,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85372] = 5, + [87626] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, - sym_file_descriptor, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(5856), 21, + ACTIONS(6028), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [85427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150399,11 +152298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150416,16 +152316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85482] = 3, + [87685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150446,7 +152346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150463,17 +152362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85533] = 3, + [87736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1280), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150483,7 +152384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150512,16 +152412,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85584] = 3, + [87787] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2980), 1, + sym__expression, + STATE(7341), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150531,8 +152503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150542,7 +152515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150560,21 +152532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85635] = 5, + [87937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 6, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 35, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150584,6 +152551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150597,7 +152565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150610,21 +152580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85690] = 5, + [87988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 6, + ACTIONS(1298), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 35, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150634,6 +152599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150647,7 +152613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150660,20 +152628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85745] = 5, + [88039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(1254), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150683,7 +152648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150696,7 +152660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150710,16 +152676,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [85800] = 3, + [88090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(6162), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(5707), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150743,9 +152713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150758,16 +152726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85851] = 3, + [88145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150806,33 +152774,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85902] = 7, + [88196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1250), 5, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150840,10 +152803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150858,33 +152822,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85961] = 7, + [88247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1258), 5, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150892,10 +152851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150910,20 +152870,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86020] = 5, + [88298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, + ACTIONS(6162), 1, sym__special_character, - STATE(1870), 1, + STATE(1768), 1, aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(4684), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 36, + ACTIONS(4682), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150960,16 +152920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86075] = 3, + [88353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151008,21 +152968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86126] = 5, + [88404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, - sym__special_character, - STATE(1827), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(1278), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151033,6 +152988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151044,7 +153001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151056,22 +153015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86181] = 5, + [88455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, + ACTIONS(6164), 1, sym__special_character, - STATE(1892), 1, + STATE(1833), 1, aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1320), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1318), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151081,7 +153040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151108,16 +153066,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86236] = 3, + [88510] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + ACTIONS(6167), 1, + sym__regex_no_space, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2928), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1254), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151127,9 +153157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151139,8 +153168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151154,18 +153185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86287] = 3, + [88660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151176,8 +153207,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151203,17 +153232,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86338] = 3, + [88711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(6169), 1, + sym__special_character, + STATE(1880), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(5292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151223,9 +153257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151237,9 +153270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151251,17 +153282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86389] = 3, + [88766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151271,8 +153303,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151298,18 +153331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86440] = 3, + [88817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(1254), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 38, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151319,9 +153351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151331,9 +153362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151347,21 +153378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86491] = 5, + [88868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, + ACTIONS(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151382,10 +153410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151397,17 +153426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86546] = 3, + [88919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1254), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 38, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151417,9 +153447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151431,6 +153460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151446,16 +153476,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86597] = 3, + [88970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151476,6 +153506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151492,18 +153523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86648] = 3, + [89021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6171), 1, + sym__concat, + STATE(1858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 38, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151513,9 +153548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151525,7 +153559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -151542,17 +153575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86699] = 3, + [89078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(5298), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(5296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151563,6 +153595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151574,7 +153608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151590,16 +153623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86750] = 3, + [89129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1284), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151610,8 +153644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151621,6 +153653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151638,17 +153671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86801] = 3, + [89180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(6160), 1, + sym__special_character, + STATE(1833), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(5292), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151670,9 +153707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151686,17 +153721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86852] = 3, + [89235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1268), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151716,6 +153751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151732,19 +153768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86903] = 3, + [89286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(6173), 1, + aux_sym_concatenation_token1, + ACTIONS(6175), 1, sym__concat, + STATE(1931), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(5435), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151766,7 +153806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151780,21 +153819,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86954] = 5, + [89343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(6177), 1, sym__special_character, - STATE(1843), 1, + STATE(1884), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(5648), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(5646), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151832,17 +153870,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87009] = 3, + [89398] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(3069), 1, + sym__expression, + STATE(7403), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151853,6 +153962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151878,19 +153989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87060] = 3, + [89548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151901,6 +154010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151926,18 +154037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87111] = 3, + [89599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151947,9 +154057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151959,6 +154068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151976,17 +154086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87162] = 3, + [89650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151997,6 +154106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152022,19 +154133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87213] = 3, + [89701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152044,6 +154153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152072,42 +154182,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87264] = 6, - ACTIONS(71), 1, + [89752] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5972), 1, - aux_sym_concatenation_token1, - ACTIONS(5974), 1, - sym__concat, - STATE(1878), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 25, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -152115,29 +154215,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87321] = 6, + sym_word, + [89803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(1753), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(5952), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(5950), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152147,8 +154249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152158,6 +154261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -152174,21 +154278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87378] = 6, + [89854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6179), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(6182), 1, sym__concat, - STATE(1757), 1, + STATE(1858), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1237), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1235), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152225,17 +154329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87435] = 3, + [89911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(4654), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(4652), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152246,6 +154349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152255,9 +154360,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152271,19 +154376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87486] = 3, + [89962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152293,6 +154396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152321,17 +154425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87537] = 3, + [90013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1233), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152342,6 +154445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152353,7 +154458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152369,16 +154473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87588] = 3, + [90064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(5956), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(5954), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152388,8 +154492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152399,9 +154504,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152415,19 +154520,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87639] = 3, + [90115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(5920), 1, sym__concat, + STATE(1947), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5648), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(5646), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152449,7 +154557,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152465,17 +154572,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87690] = 3, + [90172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(5920), 1, sym__concat, + STATE(1948), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5652), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(5650), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152497,7 +154608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152513,16 +154623,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87741] = 3, + [90229] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(6167), 1, + sym__regex_no_space, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3013), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152561,16 +154743,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87792] = 3, + [90379] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2885), 1, + sym__expression, + STATE(7139), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152591,6 +154845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -152607,19 +154862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87843] = 3, + [90529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, + ACTIONS(1256), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152639,6 +154893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -152655,19 +154910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87894] = 3, + [90580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152705,17 +154959,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87945] = 3, + [90631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(6173), 1, + aux_sym_concatenation_token1, + ACTIONS(6175), 1, sym__concat, + STATE(1953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(5439), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152737,7 +154996,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152751,19 +155009,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87996] = 3, + [90688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(6162), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(5699), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152773,6 +155033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152783,11 +155044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152799,19 +155059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88047] = 3, + [90743] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(6109), 1, + sym__special_character, + STATE(1895), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(5699), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152831,11 +155094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152847,66 +155109,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88098] = 22, + [90798] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(5976), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, sym_word, - ACTIONS(5979), 1, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5982), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5985), 1, - anon_sym_DOLLAR, - ACTIONS(5988), 1, - sym__special_character, - ACTIONS(5991), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(5997), 1, - aux_sym_number_token1, - ACTIONS(6000), 1, - aux_sym_number_token2, - ACTIONS(6003), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6006), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6009), 1, - anon_sym_BQUOTE, - ACTIONS(6012), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6018), 1, + ACTIONS(1125), 1, sym_test_operator, - ACTIONS(6021), 1, - sym__brace_start, - STATE(3442), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, aux_sym__literal_repeat1, - ACTIONS(5994), 2, + STATE(2995), 1, + sym__expression, + STATE(7191), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6015), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1865), 2, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2169), 8, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - STATE(3373), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152916,17 +155182,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [88187] = 3, + [90897] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(6162), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(5435), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152936,6 +155205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152946,11 +155216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152962,73 +155231,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88238] = 5, - ACTIONS(71), 1, + [90952] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1849), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(237), 15, + ACTIONS(6185), 1, + sym__special_character, + STATE(1876), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(276), 25, + [91007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88293] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [91058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(1237), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153038,6 +155349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153051,7 +155363,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153064,22 +155378,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88348] = 6, + [91109] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5972), 1, - aux_sym_concatenation_token1, - ACTIONS(6027), 1, - sym__concat, - STATE(1878), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, + STATE(3490), 1, + aux_sym__literal_repeat1, + STATE(1905), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3427), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -153087,23 +155406,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 25, + ACTIONS(2139), 21, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -153112,23 +155425,24 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88405] = 5, + [91166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6029), 1, + ACTIONS(6188), 1, sym__special_character, - STATE(1870), 1, + STATE(1880), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1320), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(1318), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153149,7 +155463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -153164,17 +155477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88460] = 3, + [91221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1312), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153185,8 +155500,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153196,6 +155509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -153213,16 +155527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88511] = 3, + [91272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5952), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(5950), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153232,8 +155546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153245,7 +155560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -153261,88 +155575,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [88562] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - ACTIONS(6032), 1, - sym__regex_no_space, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2870), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88661] = 3, + [91323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, + sym__concat, + STATE(1784), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(5435), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153352,9 +155599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153379,23 +155625,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88712] = 6, + [91380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1766), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(6191), 1, + sym__special_character, + STATE(1884), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153406,6 +155649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153418,7 +155663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153432,21 +155676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [88769] = 6, + [91435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1767), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 36, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153466,8 +155706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -153481,18 +155723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88826] = 3, + [91486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(6109), 1, + sym__special_character, + STATE(1895), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(5292), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153503,8 +155749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153514,11 +155758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153531,116 +155774,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88877] = 5, + [91541] = 27, ACTIONS(71), 1, sym_comment, - STATE(1878), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6034), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2949), 1, + sym__expression, + STATE(6726), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88932] = 5, - ACTIONS(71), 1, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91640] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1869), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1233), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1240), 25, + ACTIONS(1258), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1256), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88987] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [91691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(5956), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(5954), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153650,8 +155913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153663,7 +155927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -153679,16 +155942,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89038] = 3, + [91742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1284), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153698,7 +155962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153727,58 +155990,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89089] = 6, - ACTIONS(71), 1, + [91793] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, - anon_sym_LPAREN, - STATE(1869), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, + ACTIONS(6173), 1, aux_sym_concatenation_token1, - ACTIONS(1233), 15, + ACTIONS(6175), 1, + sym__concat, + STATE(1931), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1240), 24, + [91850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89146] = 27, + aux_sym__simple_variable_name_token1, + sym_word, + [91901] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -153791,17 +156102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -153813,15 +156124,15 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5897), 1, + ACTIONS(6167), 1, sym__regex_no_space, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(3243), 1, + STATE(3326), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -153833,14 +156144,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2564), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153850,92 +156161,164 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89245] = 27, - ACTIONS(71), 1, + [92000] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, + ACTIONS(1262), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(262), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92051] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6194), 1, + sym__special_character, + STATE(1895), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5897), 1, - sym__regex_no_space, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2910), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [92106] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5931), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4265), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(4251), 17, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89344] = 5, + sym_word, + ACTIONS(5929), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [92161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(1233), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 36, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153945,8 +156328,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153960,6 +156344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153972,15 +156357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89399] = 5, + [92212] = 6, ACTIONS(71), 1, sym_comment, - STATE(1849), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, + ACTIONS(6111), 1, aux_sym_concatenation_token1, - ACTIONS(1223), 15, + ACTIONS(6197), 1, + sym__concat, + STATE(1917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -153996,7 +156382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 25, + ACTIONS(1209), 25, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -154022,21 +156408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89454] = 6, + [92269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1766), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(2084), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(2082), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154047,6 +156428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154056,6 +156439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -154071,17 +156455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [89511] = 3, + [92320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1233), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1231), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154104,7 +156487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -154120,33 +156502,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [89562] = 6, + [92371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4370), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 35, + ACTIONS(1304), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154158,6 +156537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154172,32 +156552,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89619] = 6, + [92422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 35, + ACTIONS(1312), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154206,9 +156583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154223,16 +156600,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89676] = 3, + [92473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, sym__concat, + STATE(1843), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(5439), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154255,7 +156637,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154269,22 +156650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [89727] = 5, + [92530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 1, + ACTIONS(6162), 1, sym__special_character, - STATE(1892), 1, + STATE(1768), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5294), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(5292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154305,6 +156685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -154319,85 +156700,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [89782] = 6, - ACTIONS(3), 1, + [92585] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 35, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(6199), 1, + sym_word, + ACTIONS(6202), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6205), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6208), 1, anon_sym_DOLLAR, + ACTIONS(6211), 1, sym__special_character, + ACTIONS(6214), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6220), 1, aux_sym_number_token1, + ACTIONS(6223), 1, aux_sym_number_token2, + ACTIONS(6226), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6229), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6232), 1, anon_sym_BQUOTE, + ACTIONS(6235), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6241), 1, + sym_test_operator, + ACTIONS(6244), 1, + sym__brace_start, + STATE(3490), 1, + aux_sym__literal_repeat1, + ACTIONS(6217), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [89839] = 6, + STATE(1905), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2146), 8, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + STATE(3427), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5918), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5920), 1, sym__concat, - STATE(1779), 1, + STATE(1947), 1, aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + ACTIONS(1233), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 35, + ACTIONS(1231), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154406,7 +156802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -154422,23 +156817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [89896] = 6, + [92731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, - aux_sym_concatenation_token1, - ACTIONS(6040), 1, - sym__concat, - STATE(1715), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1237), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, + ACTIONS(1235), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154449,6 +156839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154460,6 +156852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154474,16 +156867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89953] = 3, + [92782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1264), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154493,7 +156887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -154504,6 +156897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -154520,71 +156914,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90004] = 27, + [92833] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, sym_word, - ACTIONS(363), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(1099), 1, anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1125), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(5969), 1, sym__special_character, - ACTIONS(6042), 1, - sym__regex_no_space, - STATE(2549), 1, + STATE(2625), 1, aux_sym__literal_repeat1, - STATE(3002), 1, + STATE(2938), 1, sym__expression, - ACTIONS(181), 2, + STATE(7255), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -154594,32 +156987,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90103] = 6, + [92932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(6162), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 35, + ACTIONS(4648), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154632,7 +157025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -154645,32 +157037,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90160] = 6, + [92987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 35, + ACTIONS(1312), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154682,6 +157070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154696,32 +157085,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90217] = 6, + [93038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1233), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 35, + ACTIONS(1231), 39, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154747,32 +157133,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90274] = 6, + [93089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(2139), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 35, + ACTIONS(2137), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154798,36 +157181,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90331] = 6, - ACTIONS(3), 1, + [93140] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(6111), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(6247), 1, sym__concat, - STATE(1778), 1, + STATE(1917), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1213), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1215), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -154835,46 +157224,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [90388] = 5, + [93197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6044), 1, - sym__special_character, - STATE(1721), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(6249), 1, + sym__concat, + STATE(1038), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, - anon_sym_SEMI, + ACTIONS(1207), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154887,6 +157270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -154899,16 +157283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90443] = 3, + [93254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154918,7 +157303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -154947,83 +157331,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [90494] = 5, - ACTIONS(3), 1, + [93305] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(1917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6251), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [90549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 5, + ACTIONS(1237), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -155031,99 +157373,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [90600] = 8, + [93360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1237), 6, sym_file_descriptor, - ACTIONS(6046), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90660] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6049), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155131,10 +157410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155148,34 +157427,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [90720] = 8, + [93411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(6254), 1, + sym__concat, + STATE(1038), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, - ACTIONS(6052), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155183,8 +157462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -155201,28 +157480,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90780] = 3, + [93468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, + STATE(1915), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4555), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, - anon_sym_SEMI, + ACTIONS(4553), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155231,9 +157514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155248,28 +157531,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90830] = 3, + [93525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 6, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4563), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, - anon_sym_SEMI, + ACTIONS(4561), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155278,6 +157565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -155293,18 +157581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90880] = 3, + [93582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(1268), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155314,7 +157602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -155341,306 +157628,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [90930] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2939), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91026] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4517), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4519), 24, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91080] = 26, + [93633] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(3013), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91176] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4303), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1071), 1, sym_word, - ACTIONS(4305), 24, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91230] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, + ACTIONS(1075), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1083), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1093), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6052), 1, + sym__special_character, + ACTIONS(6256), 1, + sym__regex_no_space, + STATE(2405), 1, aux_sym__literal_repeat1, - STATE(2961), 1, + STATE(2825), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1079), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2824), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155650,7 +157702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91326] = 26, + [93732] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -155671,25 +157723,27 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6167), 1, + sym__regex_no_space, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2995), 1, + STATE(2869), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -155697,90 +157751,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91422] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2963), 1, - sym__expression, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -155790,226 +157774,119 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91518] = 26, - ACTIONS(71), 1, + [93831] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(1298), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2955), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91614] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2964), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91710] = 26, + sym_word, + [93882] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + STATE(1898), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1233), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_LPAREN, - ACTIONS(1109), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2965), 1, - sym__expression, - ACTIONS(1125), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91806] = 3, + [93937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(6109), 1, + sym__special_character, + STATE(1895), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(5707), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156019,7 +157896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -156030,11 +157906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -156047,16 +157922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91856] = 3, + [93992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1276), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156066,7 +157942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -156093,352 +157968,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [91906] = 6, - ACTIONS(71), 1, + [94043] = 6, + ACTIONS(3), 1, sym_comment, - STATE(3451), 1, - aux_sym__literal_repeat1, - STATE(3516), 1, - sym_concatenation, - STATE(3374), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2277), 21, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1915), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4672), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4670), 35, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91962] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2966), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92058] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2967), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92154] = 26, - ACTIONS(71), 1, + sym_word, + [94100] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4692), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4690), 35, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2968), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92250] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(3005), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92346] = 6, + sym_word, + [94157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6173), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(6258), 1, sym__concat, - STATE(1991), 1, + STATE(1961), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1207), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156474,21 +158123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92402] = 6, + [94214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(5925), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(5927), 1, sym__concat, - STATE(1992), 1, + STATE(1792), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(5437), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 35, + ACTIONS(5435), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156508,6 +158157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -156524,87 +158174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92458] = 26, - ACTIONS(71), 1, + [94271] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, + ACTIONS(6109), 1, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, + STATE(1895), 1, aux_sym__literal_repeat1, - STATE(2970), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 6, + ACTIONS(4650), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 36, + ACTIONS(4648), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156624,11 +158208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -156641,157 +158224,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92604] = 6, - ACTIONS(71), 1, + [94326] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(5925), 1, aux_sym_concatenation_token1, - ACTIONS(6057), 1, + ACTIONS(5927), 1, sym__concat, - STATE(2044), 1, + STATE(1793), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 15, + ACTIONS(5441), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5439), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1229), 24, + [94383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92660] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2971), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92756] = 3, - ACTIONS(71), 1, + sym_word, + [94434] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 15, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1262), 27, + [94485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -156800,181 +158405,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92806] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2545), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92902] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2954), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92998] = 8, + sym_word, + [94536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1258), 5, sym_file_descriptor, - ACTIONS(6059), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156982,10 +158448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -156999,239 +158465,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93058] = 26, - ACTIONS(71), 1, + [94587] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1915), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3174), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93154] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4648), 35, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2636), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93250] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2637), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93346] = 3, + sym_word, + [94644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, sym__concat, + STATE(1919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, - anon_sym_SEMI, + ACTIONS(4652), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157240,9 +158552,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -157257,437 +158569,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93396] = 26, - ACTIONS(71), 1, + [94701] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1915), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2972), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93492] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4682), 35, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2973), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93588] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2638), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93684] = 26, - ACTIONS(71), 1, + sym_word, + [94758] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 35, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2974), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93780] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2639), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93876] = 26, - ACTIONS(71), 1, + sym_word, + [94815] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(5191), 1, + aux_sym_concatenation_token1, + ACTIONS(5193), 1, + sym__concat, + STATE(1915), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 35, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2640), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93972] = 3, + sym_word, + [94872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 36, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157723,18 +158768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [94022] = 3, + [94923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157744,6 +158789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157770,87 +158816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [94072] = 26, - ACTIONS(71), 1, + [94974] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(6260), 1, sym__special_character, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, + STATE(1876), 1, aux_sym__literal_repeat1, - STATE(2987), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 5, + ACTIONS(5437), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(5435), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157860,8 +158840,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157871,11 +158852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -157888,156 +158868,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94218] = 26, - ACTIONS(71), 1, + [95029] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(6262), 1, + sym__concat, + STATE(1604), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2988), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94314] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2641), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94410] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [95086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(6264), 1, sym__concat, + STATE(1604), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158047,7 +158943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -158060,7 +158955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158074,368 +158968,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [94460] = 26, - ACTIONS(71), 1, + [95143] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(6169), 1, sym__special_character, - STATE(2407), 1, + STATE(1880), 1, aux_sym__literal_repeat1, - STATE(2642), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94556] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, + ACTIONS(5445), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2643), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94652] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2646), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94748] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5443), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2647), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94844] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2648), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94940] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [95198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 6, + ACTIONS(1237), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 36, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158458,6 +159053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158472,207 +159068,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94990] = 26, - ACTIONS(71), 1, + [95249] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1314), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2649), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95086] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [95300] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(256), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(1071), 1, + ACTIONS(1095), 1, sym_word, - ACTIONS(1073), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1099), 1, anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2650), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95182] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, + ACTIONS(1105), 1, anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1125), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(5969), 1, sym__special_character, - STATE(2549), 1, + STATE(2625), 1, aux_sym__literal_repeat1, - STATE(2946), 1, + STATE(3052), 1, sym__expression, - ACTIONS(181), 2, + STATE(7355), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158682,85 +159188,60 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95278] = 26, - ACTIONS(71), 1, + [95399] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(6173), 1, + aux_sym_concatenation_token1, + ACTIONS(6266), 1, + sym__concat, + STATE(1961), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2750), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95374] = 26, + sym_word, + [95456] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -158769,50 +159250,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, aux_sym__literal_repeat1, - STATE(2911), 1, + STATE(2886), 1, sym__expression, - ACTIONS(101), 2, + STATE(6968), 1, + sym__test_command_binary_expression, + ACTIONS(1101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158822,20 +159311,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95470] = 5, + [95555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6062), 1, - sym__special_character, - STATE(2072), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 5, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 35, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158857,7 +159343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -158871,37 +159359,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [95524] = 3, - ACTIONS(71), 1, + [95606] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 27, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -158910,24 +159393,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95574] = 6, + sym_word, + [95657] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6055), 1, - aux_sym_concatenation_token1, - ACTIONS(6064), 1, - sym__concat, - STATE(2044), 1, + STATE(1898), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 15, + ACTIONS(6111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(237), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -158943,7 +159431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 24, + ACTIONS(276), 25, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -158951,6 +159439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, @@ -158968,17 +159457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95630] = 3, + [95712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 6, + ACTIONS(1266), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 36, + ACTIONS(1264), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159000,6 +159489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -159015,67 +159505,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [95680] = 26, + [95763] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, + ACTIONS(6128), 1, sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6130), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6136), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(6138), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(6142), 1, + aux_sym_number_token1, + ACTIONS(6144), 1, + aux_sym_number_token2, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6150), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6152), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6156), 1, + sym_test_operator, + ACTIONS(6158), 1, + sym__brace_start, + STATE(3490), 1, aux_sym__literal_repeat1, - STATE(3012), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(6140), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(6154), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, + STATE(1812), 2, sym_concatenation, - STATE(2344), 9, + aux_sym_for_statement_repeat1, + ACTIONS(1972), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1974), 8, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + STATE(3427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159085,17 +159572,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95776] = 3, + [95852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 6, + ACTIONS(1266), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 36, + ACTIONS(1264), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159105,6 +159591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -159118,6 +159605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -159132,86 +159620,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95826] = 26, - ACTIONS(71), 1, + [95903] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(6268), 1, + aux_sym_concatenation_token1, + ACTIONS(6271), 1, + sym__concat, + STATE(1961), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(262), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [95960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3015), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95922] = 3, + sym_word, + [96011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1233), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159221,7 +159739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -159232,9 +159749,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -159249,9 +159766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95972] = 26, + [96061] = 26, ACTIONS(71), 1, sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -159260,56 +159783,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2962), 1, + STATE(2868), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159319,67 +159836,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96068] = 26, + [96157] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, sym_word, - ACTIONS(363), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(1099), 1, anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1125), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(5969), 1, sym__special_character, - STATE(2549), 1, + STATE(2625), 1, aux_sym__literal_repeat1, - STATE(2873), 1, + STATE(2928), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159389,7 +159906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96164] = 26, + [96253] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -159410,25 +159927,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2912), 1, + STATE(2878), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -159436,20 +159953,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159459,56 +159976,155 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96260] = 3, - ACTIONS(3), 1, + [96349] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5707), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2879), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96445] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2882), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [96310] = 26, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96541] = 26, ACTIONS(71), 1, sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -159517,56 +160133,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2979), 1, + STATE(2883), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159576,101 +160186,357 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96406] = 3, + [96637] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2884), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96733] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, sym_word, - ACTIONS(1266), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1097), 1, anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2887), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96829] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2889), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96456] = 3, - ACTIONS(3), 1, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96925] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5707), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2891), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97021] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2901), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [96506] = 26, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97117] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -159691,25 +160557,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2914), 1, + STATE(2902), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -159717,20 +160583,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97213] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2903), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159740,57 +160676,65 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96602] = 3, - ACTIONS(3), 1, + [97309] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(6274), 1, + aux_sym_concatenation_token1, + ACTIONS(6276), 1, sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(1981), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1209), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [96652] = 3, + [97365] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 15, + STATE(1977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4670), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -159806,16 +160750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 27, + ACTIONS(4672), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, @@ -159825,7 +160767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -159834,79 +160775,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96702] = 3, - ACTIONS(3), 1, + [97419] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + STATE(1980), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, sym__concat, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + aux_sym_concatenation_token1, + ACTIONS(4690), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4692), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [96752] = 3, - ACTIONS(3), 1, + [97473] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4439), 6, + ACTIONS(6274), 1, + aux_sym_concatenation_token1, + ACTIONS(6278), 1, + sym__concat, + STATE(1981), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1215), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 36, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -159914,24 +160866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [96802] = 3, + [97529] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 15, + STATE(1981), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6280), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -159947,16 +160898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 27, + ACTIONS(1237), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, @@ -159966,7 +160915,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -159975,87 +160923,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96852] = 26, + [97583] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + STATE(1977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1233), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2870), 1, - sym__expression, - ACTIONS(1125), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96948] = 3, + [97637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(6283), 1, + sym__special_character, + STATE(2071), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 36, + ACTIONS(5435), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160066,6 +160995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160077,9 +161008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -160092,180 +161021,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96998] = 6, - ACTIONS(3), 1, + [97691] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(6066), 1, - sym__concat, - STATE(1759), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1256), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1258), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97054] = 6, - ACTIONS(3), 1, + [97741] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(6068), 1, - sym__concat, - STATE(1759), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1260), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1262), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [97791] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1235), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1237), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97110] = 26, + [97841] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, + ACTIONS(1312), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(282), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_LPAREN, - ACTIONS(1109), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2913), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97206] = 3, + [97891] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 15, + ACTIONS(1264), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -160281,7 +161228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 27, + ACTIONS(1266), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -160309,21 +161256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97256] = 6, + [97941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(1991), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1258), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(1256), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160345,6 +161288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -160359,17 +161303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97312] = 3, + [97991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 36, + ACTIONS(1260), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160406,26 +161350,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97362] = 3, - ACTIONS(71), 1, + [98041] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 15, + ACTIONS(1237), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1258), 27, + [98091] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1268), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -160453,103 +161444,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97412] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2915), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97508] = 8, + [98141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1314), 6, sym_file_descriptor, - ACTIONS(6070), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -160557,10 +161473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -160575,89 +161491,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97568] = 26, + [98191] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(1272), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1107), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_LPAREN, - ACTIONS(1109), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2990), 1, - sym__expression, - ACTIONS(1125), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + [98241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97664] = 5, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [98291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6073), 1, - sym__special_character, - STATE(2001), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(1268), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160667,7 +161605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -160678,10 +161615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -160694,7 +161632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97718] = 3, + [98341] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 6, @@ -160741,7 +161679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97768] = 3, + [98391] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1276), 15, @@ -160788,101 +161726,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97818] = 3, - ACTIONS(3), 1, + [98441] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1280), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97868] = 3, - ACTIONS(3), 1, + [98491] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1284), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97918] = 3, + [98541] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1288), 15, @@ -160929,63 +161867,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97968] = 3, - ACTIONS(3), 1, + [98591] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1292), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98018] = 3, + [98641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1276), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160995,7 +161934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -161023,63 +161961,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98068] = 3, - ACTIONS(3), 1, + [98691] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1296), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [98741] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98118] = 3, + [98791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(1280), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161089,7 +162075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -161117,17 +162102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98168] = 3, + [98841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 36, + ACTIONS(1284), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161164,86 +162149,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98218] = 26, + [98891] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(1248), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, + ACTIONS(1250), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2626), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98314] = 3, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [98941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(6285), 1, + sym__special_character, + STATE(2009), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1318), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161253,7 +162219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -161264,11 +162229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -161281,16 +162245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98364] = 3, + [98995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(1288), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161300,7 +162265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -161328,138 +162292,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98414] = 26, + [99045] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(1304), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2627), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98510] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + sym_word, + ACTIONS(1306), 27, sym_file_descriptor, - ACTIONS(6076), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98570] = 3, + [99095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161469,7 +162359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -161497,32 +162386,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98620] = 7, + [99145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1298), 6, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 10, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161530,10 +162415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -161548,32 +162433,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98678] = 7, + [99195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1302), 6, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 10, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161581,10 +162462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -161599,17 +162480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98736] = 3, + [99245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 6, + ACTIONS(1250), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 36, + ACTIONS(1248), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161629,9 +162510,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -161646,17 +162527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98786] = 3, + [99295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 36, + ACTIONS(1304), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161693,104 +162574,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98836] = 3, - ACTIONS(3), 1, + [99345] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1252), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98886] = 3, - ACTIONS(3), 1, + [99395] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1308), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 36, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98936] = 3, + [99445] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 15, + ACTIONS(1252), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -161806,7 +162687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 27, + ACTIONS(1254), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -161834,15 +162715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98986] = 26, + [99495] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -161851,50 +162726,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2957), 1, + STATE(3317), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1173), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2564), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161904,20 +162785,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99082] = 5, + [99591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6079), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1258), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(1256), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161927,6 +162804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -161937,10 +162815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -161953,20 +162832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99136] = 5, + [99641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(1262), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161976,6 +162851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -161986,10 +162862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -162002,17 +162879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99190] = 3, + [99691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 36, + ACTIONS(1235), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162022,6 +162898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162049,67 +162926,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99240] = 3, - ACTIONS(71), 1, + [99741] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 15, + ACTIONS(1254), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1298), 27, + [99791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99290] = 5, + sym_word, + [99841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(1254), 6, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162124,7 +163067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5856), 20, + [99891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162145,17 +163097,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [99344] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [99941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 6, + ACTIONS(1266), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 36, + ACTIONS(1264), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162165,6 +163133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162175,9 +163144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162192,157 +163161,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99394] = 26, - ACTIONS(71), 1, + [99991] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + ACTIONS(1270), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2545), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99490] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2958), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99586] = 3, + sym_word, + [100041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 6, + ACTIONS(1274), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 36, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162352,6 +163227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162362,9 +163238,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162379,69 +163255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99636] = 8, + [100091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6084), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(6288), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [99696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 6, + STATE(2031), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(1318), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162451,6 +163277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162465,7 +163292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -162478,16 +163304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99746] = 3, + [100145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1276), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162525,16 +163351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99796] = 3, + [100195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(1280), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162572,16 +163398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99846] = 3, + [100245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1284), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162619,205 +163445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99896] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2948), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99992] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2625), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100088] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2042), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6087), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1215), 25, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [100142] = 3, + [100295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(1290), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(1288), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162838,9 +163475,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162855,68 +163492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100192] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2044), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6090), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 24, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [100246] = 5, + [100345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - sym__special_character, - STATE(2087), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, + ACTIONS(1292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162939,7 +163524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -162951,88 +163538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [100300] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2545), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100396] = 3, + [100395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(1298), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 37, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163053,131 +163569,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100446] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2992), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100542] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6095), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163192,87 +163586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100602] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(2843), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100698] = 3, + [100445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 36, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163282,6 +163605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163309,17 +163633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100748] = 3, + [100495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 36, + ACTIONS(1248), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163329,6 +163652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163356,17 +163680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100798] = 3, + [100545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(1306), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163376,6 +163699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163388,6 +163712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163401,19 +163726,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [100848] = 3, + [100595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 36, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163423,6 +163746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163450,16 +163774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100898] = 3, + [100645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 37, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163480,9 +163804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163497,16 +163821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100948] = 3, + [100695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(1254), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163529,59 +163853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [100998] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6098), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163596,9 +163868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101058] = 26, + [100745] = 26, ACTIONS(71), 1, sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -163607,56 +163885,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(1155), 1, sym__special_character, - STATE(2451), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2952), 1, + STATE(2893), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163666,17 +163938,36 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101154] = 3, + [100841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4265), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(5931), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, + ACTIONS(4251), 17, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(5929), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163696,34 +163987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101204] = 3, + [100895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(5956), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 36, + ACTIONS(5954), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163743,9 +164017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163760,33 +164034,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101254] = 8, + [100945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5298), 6, sym_file_descriptor, - ACTIONS(6101), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163794,8 +164063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163811,162 +164079,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [101314] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [101364] = 3, + [100995] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1097), 1, anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [101414] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(1127), 1, sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(1129), 1, anon_sym_BANG, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(3016), 1, + STATE(3012), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163976,62 +164151,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101510] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [101560] = 26, + [101091] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -164040,50 +164162,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2916), 1, + STATE(3014), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164093,67 +164221,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101656] = 26, + [101187] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(3003), 1, + STATE(3016), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164163,218 +164291,487 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101752] = 8, - ACTIONS(3), 1, + [101283] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3024), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101379] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3025), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [101812] = 3, - ACTIONS(3), 1, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101475] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3027), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101571] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3028), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [101862] = 8, - ACTIONS(3), 1, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101667] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6107), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3030), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101763] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3031), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [101922] = 26, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101859] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2920), 1, + STATE(3035), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164384,82 +164781,169 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102018] = 5, - ACTIONS(3), 1, + [101955] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6110), 1, - sym__special_character, - STATE(2072), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, - sym_file_descriptor, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102051] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3037), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [102072] = 8, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1233), 4, sym_file_descriptor, - ACTIONS(6113), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164467,8 +164951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164485,85 +164968,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102132] = 8, - ACTIONS(3), 1, + [102197] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6116), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2998), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [102192] = 8, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5952), 6, sym_file_descriptor, - ACTIONS(6119), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5950), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164571,8 +165067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164588,16 +165083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [102252] = 3, + [102343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(5956), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(5954), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164608,8 +165106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164636,147 +165132,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [102302] = 8, - ACTIONS(3), 1, + [102393] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6122), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3041), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [102362] = 5, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102489] = 26, ACTIONS(71), 1, sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 24, - sym_file_descriptor, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(739), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2899), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102416] = 26, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102585] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(185), 1, anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(698), 1, sym_word, - ACTIONS(363), 1, + ACTIONS(705), 1, anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(707), 1, anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(737), 1, sym_test_operator, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(6061), 1, sym__special_character, - STATE(2549), 1, + STATE(2513), 1, aux_sym__literal_repeat1, - STATE(3001), 1, + STATE(2904), 1, sym__expression, ACTIONS(181), 2, anon_sym_PLUS_PLUS2, @@ -164784,20 +165319,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(721), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(3002), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2383), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164807,7 +165342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102512] = 26, + [102681] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -164820,17 +165355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1127), 1, sym_word, @@ -164838,17 +165373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1135), 1, anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, ACTIONS(1141), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2875), 1, + STATE(3038), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1131), 2, @@ -164860,14 +165395,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164877,68 +165412,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102608] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6125), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102668] = 3, + [102777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1233), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 37, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164948,8 +165430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164976,33 +165459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [102718] = 8, + [102827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(2139), 6, sym_file_descriptor, - ACTIONS(6128), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2137), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165010,8 +165488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165028,33 +165506,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102778] = 8, + [102877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(4688), 6, sym_file_descriptor, - ACTIONS(6131), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165062,8 +165535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165080,16 +165553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102838] = 3, + [102927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(6291), 1, + sym__special_character, + STATE(2071), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 37, + ACTIONS(1318), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165099,8 +165575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165113,7 +165590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -165125,35 +165601,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [102888] = 8, + [102981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5298), 6, sym_file_descriptor, - ACTIONS(6134), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165161,8 +165631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165179,19 +165649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102948] = 5, + [103031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, - sym__special_character, - STATE(2087), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1233), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(1231), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165201,8 +165667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165212,9 +165679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -165226,69 +165695,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [103002] = 8, - ACTIONS(3), 1, + [103081] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6140), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2863), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [103062] = 26, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103177] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -165297,50 +165777,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, aux_sym__literal_repeat1, - STATE(2918), 1, + STATE(3068), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165350,137 +165836,31 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103158] = 8, + [103273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6143), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(6294), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + STATE(2009), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 5, sym_file_descriptor, - ACTIONS(6146), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103278] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6149), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165488,12 +165868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -165506,30 +165885,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103338] = 8, + [103327] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6152), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165541,7 +165919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165558,30 +165936,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103398] = 8, + [103385] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6155), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165593,7 +165970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165610,223 +165987,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103458] = 8, - ACTIONS(3), 1, + [103443] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6158), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6296), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103518] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6161), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1237), 25, sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [103497] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103578] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6164), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103638] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6167), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(1125), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2572), 1, + sym__expression, + STATE(2625), 1, + aux_sym__literal_repeat1, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [103698] = 26, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103593] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -165835,50 +166117,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, aux_sym__literal_repeat1, - STATE(2804), 1, + STATE(3073), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2457), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165888,20 +166176,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103794] = 8, + [103689] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6170), 1, + ACTIONS(6299), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165911,7 +166199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165923,7 +166211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165940,778 +166228,697 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103854] = 8, - ACTIONS(3), 1, + [103749] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6173), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, sym_word, - [103914] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6176), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5555), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2823), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [103974] = 8, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103845] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6179), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2825), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104034] = 8, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103941] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6182), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2826), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104094] = 8, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104037] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6185), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2827), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104154] = 8, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104133] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6188), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2828), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104214] = 8, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104229] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6191), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2829), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104274] = 8, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104325] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6194), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [104334] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6197), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2830), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104394] = 5, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104421] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6200), 1, - sym__special_character, - STATE(2149), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [104448] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(739), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2831), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104498] = 5, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104517] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6202), 1, - sym__special_character, - STATE(2001), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [104552] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, sym_word, - ACTIONS(4282), 24, - sym_file_descriptor, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2835), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104606] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4439), 24, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [104660] = 26, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104613] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(6052), 1, sym__special_character, - STATE(2549), 1, + STATE(2405), 1, aux_sym__literal_repeat1, - STATE(2844), 1, + STATE(2841), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1079), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2824), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166721,165 +166928,207 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104756] = 5, + [104709] = 26, ACTIONS(71), 1, sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, sym_word, - ACTIONS(4309), 24, - sym_file_descriptor, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2845), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104810] = 5, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104805] = 26, ACTIONS(71), 1, sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, sym_word, - ACTIONS(4313), 24, - sym_file_descriptor, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2853), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104864] = 26, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104901] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(6052), 1, sym__special_character, - STATE(2549), 1, + STATE(2405), 1, aux_sym__literal_repeat1, - STATE(2894), 1, + STATE(2854), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1079), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2824), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166889,67 +167138,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104960] = 26, + [104997] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(6052), 1, sym__special_character, - STATE(2549), 1, + STATE(2405), 1, aux_sym__literal_repeat1, - STATE(2853), 1, + STATE(2809), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1079), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2824), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166959,67 +167208,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105056] = 26, + [105093] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2855), 1, + STATE(3013), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167029,18 +167278,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105152] = 5, + [105189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 3, + ACTIONS(5931), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4265), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5858), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4153), 17, + ACTIONS(4251), 17, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -167058,7 +167306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5856), 19, + ACTIONS(5929), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167068,6 +167316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -167078,17 +167327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [105206] = 3, + [105243] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6302), 1, + sym__concat, + STATE(1858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1207), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167108,7 +167361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167125,33 +167377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105256] = 8, + [105299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6304), 1, + sym__concat, + STATE(1858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, sym_file_descriptor, - ACTIONS(6204), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167159,8 +167410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167177,33 +167427,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105316] = 8, + [105355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, + sym__concat, + STATE(2099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, sym_file_descriptor, - ACTIONS(6207), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167211,8 +167460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167229,118 +167477,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105376] = 7, - ACTIONS(3), 1, + [105411] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(5867), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [105434] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1071), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1083), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1093), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5555), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, aux_sym__literal_repeat1, - STATE(2887), 1, + STATE(2757), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1079), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2824), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167350,67 +167547,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105530] = 3, - ACTIONS(3), 1, + [105507] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6052), 1, + sym__special_character, + STATE(2405), 1, + aux_sym__literal_repeat1, + STATE(2759), 1, + sym__expression, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105580] = 8, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2824), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2432), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105603] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6210), 1, + ACTIONS(6306), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167420,7 +167640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167432,7 +167652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167449,67 +167669,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105640] = 26, + [105663] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(5555), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(6052), 1, sym__special_character, - STATE(2549), 1, + STATE(2405), 1, aux_sym__literal_repeat1, - STATE(2900), 1, + STATE(2752), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1079), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2824), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167519,33 +167739,28 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105736] = 8, + [105759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1233), 6, sym_file_descriptor, - ACTIONS(6213), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167553,8 +167768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167570,10 +167784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [105796] = 26, + [105809] = 26, ACTIONS(71), 1, sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, ACTIONS(256), 1, anon_sym_DOLLAR, ACTIONS(262), 1, @@ -167582,56 +167803,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(1155), 1, sym__special_character, - STATE(2451), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2840), 1, + STATE(2572), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167641,7 +167856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105892] = 26, + [105905] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -167662,25 +167877,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2910), 1, + STATE(2948), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -167688,20 +167903,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167711,103 +167926,80 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105988] = 26, - ACTIONS(71), 1, + [106001] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6309), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2904), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106084] = 8, + sym_word, + [106061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5298), 5, sym_file_descriptor, - ACTIONS(6216), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167815,8 +168007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167832,8 +168023,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [106144] = 26, + [106111] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -167846,17 +168038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1127), 1, sym_word, @@ -167864,17 +168056,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1135), 1, anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, ACTIONS(1141), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2572), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106207] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, sym__special_character, - STATE(2451), 1, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(2883), 1, + STATE(3046), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1131), 2, @@ -167886,14 +168148,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2506), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167903,20 +168165,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106240] = 8, + [106303] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6219), 1, + ACTIONS(6312), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167926,7 +168188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167938,7 +168200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167955,137 +168217,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106300] = 3, - ACTIONS(71), 1, + [106363] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 15, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6315), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1286), 27, + [106423] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6318), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106350] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + [106483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6321), 1, + sym__special_character, + STATE(2246), 1, + aux_sym__literal_repeat1, + ACTIONS(5648), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5646), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3018), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106446] = 8, + aux_sym__simple_variable_name_token1, + sym_word, + [106537] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6222), 1, + ACTIONS(6323), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168095,7 +168393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168107,7 +168405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168124,33 +168422,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106506] = 8, + [106597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(2084), 5, sym_file_descriptor, - ACTIONS(6225), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168158,8 +168451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168176,20 +168469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106566] = 8, + [106647] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6228), 1, + ACTIONS(6326), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168199,7 +168492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168211,7 +168504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168228,69 +168521,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106626] = 5, - ACTIONS(71), 1, + [106707] = 8, + ACTIONS(3), 1, sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4368), 15, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6329), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4370), 24, + [106767] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6332), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106680] = 8, + sym_word, + [106827] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6231), 1, + ACTIONS(6335), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168300,7 +168648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168312,7 +168660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168329,137 +168677,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106740] = 3, - ACTIONS(71), 1, + [106887] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 15, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6338), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1215), 27, + [106947] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6341), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106790] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + [107007] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6344), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2922), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106886] = 8, + sym_word, + [107067] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6234), 1, + ACTIONS(6347), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168469,7 +168856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168481,7 +168868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168498,152 +168885,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106946] = 26, - ACTIONS(71), 1, + [107127] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6350), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1121), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2884), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107042] = 6, - ACTIONS(71), 1, + sym_word, + [107187] = 8, + ACTIONS(3), 1, sym_comment, - STATE(3427), 1, - aux_sym__literal_repeat1, - STATE(3692), 1, - sym_concatenation, - STATE(3361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 10, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6353), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(2273), 21, + [107247] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6356), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107098] = 5, + sym_word, + [107307] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6237), 1, - sym__special_character, - STATE(2149), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6359), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168651,10 +169075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -168667,10 +169093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107152] = 3, + [107367] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 15, + STATE(1980), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4561), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -168686,16 +169117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 27, + ACTIONS(4563), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, @@ -168705,7 +169134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -168714,20 +169142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107202] = 8, + [107421] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6240), 1, + ACTIONS(6362), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168737,7 +169165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168749,7 +169177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168766,90 +169194,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107262] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2895), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107358] = 8, + [107481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6243), 1, + ACTIONS(6365), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168859,7 +169217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168871,7 +169229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168888,160 +169246,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107418] = 26, - ACTIONS(71), 1, + [107541] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6368), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, + anon_sym_DOLLAR, sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2851), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107514] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2909), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107610] = 8, + sym_word, + [107601] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6246), 1, + ACTIONS(6371), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169051,7 +169321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169063,7 +169333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -169080,98 +169350,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107670] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2923), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107766] = 3, + [107661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6374), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 37, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169179,8 +169384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -169197,440 +169402,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107816] = 26, - ACTIONS(71), 1, + [107721] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6377), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3242), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107912] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3245), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108008] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3246), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108104] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3247), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108200] = 26, - ACTIONS(71), 1, + sym_word, + [107781] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6380), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3248), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108296] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3249), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108392] = 8, + sym_word, + [107841] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6249), 1, + ACTIONS(6383), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169640,7 +169529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169652,7 +169541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -169669,370 +169558,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108452] = 26, - ACTIONS(71), 1, + [107901] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6386), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3019), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108548] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3252), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108644] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3253), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108740] = 26, - ACTIONS(71), 1, + sym_word, + [107961] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6389), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3254), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108836] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3255), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108932] = 8, + sym_word, + [108021] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6252), 1, + ACTIONS(6392), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170042,7 +169685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170054,7 +169697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -170071,160 +169714,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108992] = 26, - ACTIONS(71), 1, + [108081] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6395), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2997), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109088] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3259), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109184] = 8, + sym_word, + [108141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6255), 1, + ACTIONS(6398), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170234,7 +169789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170246,7 +169801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -170263,90 +169818,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109244] = 26, - ACTIONS(71), 1, + [108201] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6401), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(3002), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109340] = 8, + sym_word, + [108261] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6258), 1, + ACTIONS(6404), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170356,7 +169893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170368,7 +169905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -170385,326 +169922,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109400] = 5, - ACTIONS(71), 1, + [108321] = 8, + ACTIONS(3), 1, sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4441), 15, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6407), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4443), 24, + [108381] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6410), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109454] = 26, - ACTIONS(71), 1, + sym_word, + [108441] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6413), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2854), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109550] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 15, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1310), 27, + [108501] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6416), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [109600] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2857), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109696] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + [108561] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6419), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(2862), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109792] = 8, + sym_word, + [108621] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6261), 1, + ACTIONS(6422), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170714,7 +170205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170726,7 +170217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -170743,20 +170234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109852] = 8, + [108681] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6264), 1, + ACTIONS(6425), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170766,7 +170257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170778,7 +170269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -170795,238 +170286,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109912] = 26, - ACTIONS(71), 1, + [108741] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6428), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2545), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110008] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3260), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110104] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3004), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110200] = 3, + sym_word, + [108801] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6431), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 37, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171034,8 +170372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171052,90 +170390,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110250] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2867), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110346] = 8, + [108861] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6267), 1, + ACTIONS(6434), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171145,7 +170413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171157,7 +170425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171174,160 +170442,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110406] = 26, - ACTIONS(71), 1, + [108921] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6437), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5797), 1, sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(2868), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2309), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110502] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2886), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110598] = 8, + sym_word, + [108981] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6270), 1, + ACTIONS(6440), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171337,7 +170517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171349,7 +170529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171366,20 +170546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110658] = 8, + [109041] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6273), 1, + ACTIONS(6443), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171389,7 +170569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171401,7 +170581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171418,20 +170598,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110718] = 8, + [109101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6276), 1, + ACTIONS(6446), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171441,7 +170621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171453,7 +170633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171470,28 +170650,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110778] = 3, + [109161] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6449), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171499,7 +170684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171515,22 +170701,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [110828] = 8, + [109221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6279), 1, + ACTIONS(6452), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171540,7 +170725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171552,7 +170737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171569,20 +170754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110888] = 8, + [109281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6282), 1, + ACTIONS(6455), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171592,7 +170777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171604,7 +170789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171621,20 +170806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110948] = 8, + [109341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6285), 1, + ACTIONS(6458), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171644,7 +170829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171656,7 +170841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171673,20 +170858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111008] = 8, + [109401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6288), 1, + ACTIONS(6461), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171696,7 +170881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171708,7 +170893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171725,20 +170910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111068] = 8, + [109461] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6291), 1, + ACTIONS(6464), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171748,7 +170933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171760,7 +170945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171777,20 +170962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111128] = 8, + [109521] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6294), 1, + ACTIONS(6467), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171800,7 +170985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171812,7 +170997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171829,20 +171014,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111188] = 8, + [109581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6297), 1, + ACTIONS(6470), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171852,7 +171037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171864,7 +171049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171881,20 +171066,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111248] = 8, + [109641] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6300), 1, + ACTIONS(6473), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171904,7 +171089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171916,7 +171101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171933,20 +171118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111308] = 8, + [109701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6303), 1, + ACTIONS(6476), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171956,7 +171141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171968,7 +171153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -171985,20 +171170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111368] = 8, + [109761] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6306), 1, + ACTIONS(6479), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172008,7 +171193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172020,7 +171205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172037,20 +171222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111428] = 8, + [109821] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6309), 1, + ACTIONS(6482), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172060,7 +171245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172072,7 +171257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172089,19 +171274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111488] = 7, + [109881] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(5867), 2, - ts_builtin_sym_end, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5872), 3, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6485), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172111,7 +171297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172123,7 +171309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172140,20 +171326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111546] = 8, + [109941] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6312), 1, + ACTIONS(6488), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172163,7 +171349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172175,7 +171361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172192,98 +171378,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111606] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2903), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111702] = 3, + [110001] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6491), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 37, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172291,8 +171412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172309,20 +171430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111752] = 8, + [110061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6315), 1, + ACTIONS(6494), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172332,7 +171453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172344,7 +171465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172361,168 +171482,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111812] = 26, - ACTIONS(71), 1, + [110121] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6497), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, + anon_sym_DOLLAR, sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2938), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111908] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_word, - ACTIONS(1169), 1, - anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3243), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112004] = 3, + sym_word, + [110181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6500), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172530,8 +171568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172548,20 +171586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112054] = 8, + [110241] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6318), 1, + ACTIONS(6503), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172571,7 +171609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172583,7 +171621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172600,20 +171638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112114] = 8, + [110301] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6033), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6035), 1, sym_file_descriptor, - ACTIONS(6321), 1, + ACTIONS(6506), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172623,7 +171661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172635,7 +171673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172652,31 +171690,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112174] = 5, + [110361] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6324), 1, - sym__special_character, - STATE(2217), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6509), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172684,10 +171724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -172700,640 +171742,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112227] = 3, - ACTIONS(71), 1, + [110421] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 15, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6512), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1302), 26, + [110481] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6515), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112276] = 3, - ACTIONS(71), 1, + sym_word, + [110541] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 14, - anon_sym_EQ, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6518), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1254), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112325] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112374] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1302), 26, + [110601] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6521), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112423] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1215), 26, + [110661] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6524), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112472] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1286), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112521] = 3, - ACTIONS(71), 1, + sym_word, + [110721] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1215), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6527), 1, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112570] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 27, - sym__concat, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112619] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112668] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112717] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(2158), 24, + [110781] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6530), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112770] = 3, - ACTIONS(71), 1, + sym_word, + [110841] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 27, - sym__concat, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6533), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112819] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112868] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 14, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4282), 24, + [110901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4654), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -173341,160 +172191,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112921] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112970] = 3, + sym_word, + [110951] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 27, - sym__concat, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113019] = 3, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2896), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111047] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 27, - sym__concat, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113068] = 3, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2950), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, + sym__concat, + STATE(2099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(5435), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173504,7 +172369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -173530,813 +172394,746 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [113117] = 3, - ACTIONS(71), 1, + [111199] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 27, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, sym__concat, + STATE(2100), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5439), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113166] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113215] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [111255] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, sym_word, - ACTIONS(4439), 24, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2987), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111351] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 1, + sym__special_character, + STATE(2196), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113268] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [111405] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113317] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113366] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113415] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113464] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113513] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [113562] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 26, - sym_file_descriptor, - sym__concat, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(739), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2873), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113611] = 5, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111501] = 26, ACTIONS(71), 1, sym_comment, - STATE(2417), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1085), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [113664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2926), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [113713] = 3, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111597] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 26, - sym_file_descriptor, - sym__concat, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(739), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2981), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113762] = 5, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111693] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6329), 1, - sym__special_character, - STATE(2249), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1318), 25, - sym_file_descriptor, + ACTIONS(280), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1097), 1, anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2982), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113815] = 5, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111789] = 26, ACTIONS(71), 1, sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(2162), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2996), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113868] = 3, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111885] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 26, - sym_file_descriptor, - sym__concat, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(739), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2990), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113917] = 5, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111981] = 26, ACTIONS(71), 1, sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4309), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, sym_test_operator, + ACTIONS(739), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2976), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112077] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2861), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113970] = 5, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 1, - sym__special_character, - STATE(2217), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(2139), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(2137), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -174357,9 +173154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -174372,29 +173171,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114023] = 6, + [112223] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2954), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112319] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2871), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(6334), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(5952), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(5950), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174404,7 +173341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -174420,30 +173356,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [114078] = 6, + [112465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(6336), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(4688), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(4686), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174470,29 +173405,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114133] = 6, - ACTIONS(3), 1, + [112515] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(6338), 1, - sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2877), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5298), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(5296), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174502,6 +173505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -174517,31 +173521,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [114188] = 6, + [112661] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2905), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(6340), 1, - sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(5956), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(5954), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -174568,130 +173639,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [114243] = 3, + [112807] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2908), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112903] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, sym_word, - ACTIONS(1274), 26, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(737), 1, + sym_test_operator, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + sym__special_character, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(3045), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6539), 1, + sym__special_character, + STATE(2196), 1, + aux_sym__literal_repeat1, + ACTIONS(5648), 5, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5646), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114292] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [113053] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - STATE(2317), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, sym__special_character, - ACTIONS(1225), 24, - sym__concat, + ACTIONS(1141), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [114345] = 3, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3055), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113149] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2909), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113245] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, sym_word, - ACTIONS(1258), 26, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2919), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2084), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -174699,90 +174071,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114394] = 3, + sym_word, + [113391] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2927), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113487] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, sym_word, - ACTIONS(1266), 26, - sym_file_descriptor, - sym__concat, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2869), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113583] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2929), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113679] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2930), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114443] = 8, - ACTIONS(3), 1, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113775] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6344), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(6348), 1, - sym_variable_name, - STATE(3422), 1, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2931), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(6346), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113871] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2933), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6541), 1, + sym__special_character, + STATE(2031), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(6342), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 25, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -174790,10 +174537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -174805,10 +174554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114502] = 3, + [114021] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 15, + STATE(1977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4648), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -174824,9 +174578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 26, + ACTIONS(4650), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -174842,7 +174595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -174851,39 +174603,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114551] = 5, + [114075] = 5, ACTIONS(71), 1, sym_comment, - STATE(2264), 1, + STATE(1980), 1, aux_sym_concatenation_repeat1, - ACTIONS(6350), 2, + ACTIONS(6274), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 14, + ACTIONS(4652), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 24, + ACTIONS(4654), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -174892,6 +174644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -174899,56 +174652,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114604] = 3, + [114129] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2934), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114653] = 3, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114225] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 15, + STATE(1977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4682), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -174964,9 +174746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 26, + ACTIONS(4684), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -174982,7 +174763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -174991,10 +174771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114702] = 3, + [114279] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 15, + STATE(1980), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4686), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -175010,9 +174795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(4688), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -175028,7 +174812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -175037,544 +174820,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114751] = 7, - ACTIONS(3), 1, + [114333] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - ACTIONS(5860), 15, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114808] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(1125), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5940), 1, anon_sym_BQUOTE, - ACTIONS(5860), 15, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(5969), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2935), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [114865] = 5, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114429] = 26, ACTIONS(71), 1, sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114918] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 26, - sym_file_descriptor, - sym__concat, + ACTIONS(1125), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2939), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114967] = 3, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114525] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2940), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115016] = 6, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114621] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6327), 1, - aux_sym_concatenation_token1, - ACTIONS(6353), 1, - sym__concat, - STATE(2264), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1209), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115071] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 26, - sym_file_descriptor, - sym__concat, + ACTIONS(1125), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2941), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115120] = 6, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114717] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6327), 1, - aux_sym_concatenation_token1, - ACTIONS(6355), 1, - sym__concat, - STATE(2264), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 4, - sym_file_descriptor, + ACTIONS(1125), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2942), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [115224] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2314), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1225), 24, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [115277] = 3, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114813] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2943), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115326] = 5, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 1, - sym__special_character, - STATE(2280), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(1233), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 34, + ACTIONS(1231), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175584,6 +175259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -175594,9 +175270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -175609,20 +175287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115379] = 5, + [114959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - sym__special_character, - STATE(2280), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4654), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 34, + ACTIONS(4652), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175642,9 +175317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -175657,27 +175334,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115432] = 3, + [115009] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6033), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6038), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(6028), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -175685,8 +175367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -175703,162 +175385,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115481] = 5, - ACTIONS(71), 1, + [115067] = 7, + ACTIONS(3), 1, sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5132), 24, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6033), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115534] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 14, - anon_sym_PIPE, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5136), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115587] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2396), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1225), 24, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - [115640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(4153), 16, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -175870,54 +175431,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5856), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [115693] = 6, + [115125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(5952), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 33, + ACTIONS(5950), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175944,29 +175483,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115748] = 6, + [115175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(1233), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 33, + ACTIONS(1231), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -175976,7 +175513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -175992,30 +175528,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [115803] = 6, + [115225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(2256), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, + ACTIONS(5956), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 33, + ACTIONS(5954), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176025,6 +175560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -176040,31 +175576,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [115858] = 6, + [115275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(2257), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + ACTIONS(6543), 1, + sym__special_character, + STATE(2246), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 33, + ACTIONS(1318), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176077,7 +175613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -176091,177 +175626,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [115913] = 6, - ACTIONS(3), 1, + [115329] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_BANG, + ACTIONS(1105), 1, + anon_sym_TILDE, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + sym__special_character, + STATE(2625), 1, + aux_sym__literal_repeat1, + STATE(2970), 1, + sym__expression, + ACTIONS(1101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1117), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2457), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115425] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(3500), 1, + aux_sym__literal_repeat1, + STATE(3743), 1, + sym_concatenation, + STATE(3430), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2379), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [115968] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(2381), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [116023] = 6, - ACTIONS(3), 1, + [115481] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + STATE(3501), 1, + aux_sym__literal_repeat1, + STATE(3656), 1, + sym_concatenation, + STATE(3428), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2385), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [116078] = 6, + [115537] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, sym_file_descriptor, + ACTIONS(6546), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 33, + ACTIONS(6028), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -176269,8 +175830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6026), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -176287,212 +175848,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116133] = 6, - ACTIONS(3), 1, + [115597] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [116188] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1127), 1, sym_word, - [116243] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2874), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [116298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [116353] = 3, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5952), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5950), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -176529,989 +175965,1229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116402] = 5, + [115743] = 26, ACTIONS(71), 1, sym_comment, - STATE(2421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116455] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(2256), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(698), 1, + sym_word, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(707), 1, + anon_sym_BANG, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(719), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(723), 1, aux_sym_number_token1, + ACTIONS(725), 1, aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [116510] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(2257), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(737), 1, sym_test_operator, + ACTIONS(739), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym__literal_repeat1, + STATE(2898), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(721), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [116565] = 3, + STATE(3002), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2383), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115839] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3325), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115935] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [116669] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(2256), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1167), 1, sym_word, - [116724] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6344), 1, - anon_sym_DQUOTE, - ACTIONS(6348), 1, - sym_variable_name, - STATE(3422), 1, - sym_string, - ACTIONS(6346), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(6342), 8, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1169), 1, anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 25, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3328), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [116783] = 5, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116031] = 26, ACTIONS(71), 1, sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4313), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3329), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116836] = 5, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116127] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6362), 1, - sym__special_character, - STATE(2249), 1, - aux_sym__literal_repeat1, - ACTIONS(237), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(276), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1097), 1, anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3330), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116889] = 6, - ACTIONS(3), 1, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116223] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(2310), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3331), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [116943] = 5, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116319] = 26, ACTIONS(71), 1, sym_comment, - STATE(2330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1085), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1235), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1332), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116995] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(6364), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, - sym_file_descriptor, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3332), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [117049] = 6, - ACTIONS(3), 1, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116415] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(6366), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, - sym_file_descriptor, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1167), 1, sym_word, - [117103] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6368), 1, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, sym__special_character, - STATE(2409), 1, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, aux_sym__literal_repeat1, - ACTIONS(239), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(358), 24, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [117155] = 3, + STATE(3334), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116511] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 26, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [117203] = 6, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3335), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116607] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6370), 1, - sym__concat, - STATE(2042), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1229), 23, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [117257] = 6, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3336), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116703] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6372), 1, - sym__concat, - STATE(2042), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1209), 23, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [117311] = 3, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3337), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116799] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3338), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116895] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, sym_word, - ACTIONS(1306), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1155), 1, + sym__special_character, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3015), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117359] = 6, + ACTIONS(1157), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116991] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6374), 1, - sym__concat, - STATE(2332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1229), 23, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [117413] = 3, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3340), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117087] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, sym_word, - ACTIONS(1278), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(2572), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117183] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3341), 1, + sym__expression, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117279] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1127), 1, + sym_word, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1135), 1, + anon_sym_TILDE, + ACTIONS(1137), 1, + sym__special_character, + ACTIONS(1141), 1, + sym_test_operator, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, + aux_sym__literal_repeat1, + STATE(3026), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117461] = 3, + ACTIONS(1131), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1139), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2456), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117375] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + STATE(1977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6274), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4553), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 26, + ACTIONS(4555), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -177520,7 +177196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -177528,65 +177204,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117509] = 26, - ACTIONS(3), 1, + [117429] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(6382), 1, - anon_sym_esac, - ACTIONS(6384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6386), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - STATE(6347), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + STATE(2434), 1, aux_sym__literal_repeat1, - STATE(7162), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(3326), 1, + sym__expression, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3320), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, + ACTIONS(1171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(6378), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, + STATE(2506), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177596,129 +177274,157 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117603] = 5, - ACTIONS(71), 1, + [117525] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5188), 14, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6549), 1, + anon_sym_RPAREN, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6026), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5190), 23, + [117585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, + sym__concat, + STATE(2311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5296), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117655] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [117640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, sym__special_character, - ACTIONS(6394), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6420), 1, - anon_sym_esac, - ACTIONS(6422), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6805), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3330), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6418), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117749] = 5, + [117689] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 14, + ACTIONS(1252), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -177732,9 +177438,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4282), 24, + ACTIONS(1254), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -177750,255 +177458,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117801] = 6, + [117738] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6426), 1, - sym__concat, - STATE(2332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, - anon_sym_EQ, + ACTIONS(1308), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1209), 23, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [117855] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6428), 1, - sym__special_character, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [117907] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(6394), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6433), 1, - anon_sym_esac, - ACTIONS(6435), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6807), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3331), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6431), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118001] = 7, + [117787] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1095), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6439), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, - anon_sym_EQ, + ACTIONS(1252), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(358), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [118057] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1254), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -178008,6 +177551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -178015,14 +177559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118105] = 5, + [117836] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 14, + ACTIONS(1268), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -178036,9 +177576,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4309), 24, + ACTIONS(1270), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -178054,206 +177596,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118157] = 6, - ACTIONS(71), 1, + [117885] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6441), 1, - sym__concat, - STATE(2332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, - anon_sym_EQ, + ACTIONS(6552), 1, + sym__special_character, + STATE(2302), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 34, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1209), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [118211] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6445), 1, - anon_sym_esac, - ACTIONS(6447), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7165), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3322), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6443), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118305] = 5, + [117938] = 3, ACTIONS(71), 1, sym_comment, - STATE(2332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6449), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 14, - anon_sym_EQ, + ACTIONS(1272), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1215), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [118357] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 26, + ACTIONS(1274), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -178263,6 +177691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -178270,264 +177699,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118405] = 26, + [117987] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, + ACTIONS(6556), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(6560), 1, + sym_variable_name, + STATE(3460), 1, + sym_string, + ACTIONS(6558), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6454), 1, - anon_sym_esac, - ACTIONS(6456), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7066), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3300), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6452), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118499] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 13, - anon_sym_PIPE, + ACTIONS(6554), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 25, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5136), 24, + [118046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118551] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6462), 1, - anon_sym_esac, - ACTIONS(6464), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7340), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3299), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6460), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118645] = 4, + [118095] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6470), 1, - sym_extglob_pattern, - ACTIONS(6466), 14, - anon_sym_EQ, + ACTIONS(6562), 1, + sym__special_character, + STATE(2283), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6468), 25, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [118695] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 26, + ACTIONS(1320), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -178536,43 +177836,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118743] = 3, + [118148] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1256), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(1258), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -178582,6 +177882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -178589,10 +177890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118791] = 3, + [118197] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178607,9 +177913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 26, + sym__special_character, + ACTIONS(1233), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -178629,68 +177935,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [118839] = 3, + [118250] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1256), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1258), 27, sym__concat, - sym_variable_name, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118887] = 7, + [118299] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6472), 1, - anon_sym_RBRACK, - ACTIONS(6474), 1, - sym__concat, - STATE(2324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1260), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178705,7 +178002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1262), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -178726,62 +178024,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [118943] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [118348] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1235), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1237), 27, sym__concat, - sym_variable_name, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118991] = 5, + [118397] = 5, ACTIONS(71), 1, sym_comment, - STATE(2315), 1, + STATE(2426), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1111), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1235), 14, + ACTIONS(1231), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178796,7 +178099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(1233), 24, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -178820,18 +178123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119043] = 7, + sym__special_character, + [118450] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6476), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1268), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178846,7 +178142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + ACTIONS(1270), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -178867,40 +178164,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119099] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(5268), 13, + [118499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6565), 1, + sym__special_character, + STATE(2291), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5270), 24, + [118552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -178908,43 +178250,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119151] = 3, + sym_word, + [118601] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1260), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(1262), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -178954,6 +178302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -178961,59 +178310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119199] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 26, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [119247] = 5, + [118650] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6478), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, + ACTIONS(1235), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -179027,9 +178327,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 24, + ACTIONS(1237), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -179045,46 +178347,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119299] = 5, + [118699] = 3, ACTIONS(71), 1, sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6481), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(1276), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 23, + ACTIONS(1278), 26, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -179093,6 +178393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -179100,125 +178402,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119351] = 3, - ACTIONS(3), 1, + [118748] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1280), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [119399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 4, + ACTIONS(1282), 26, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [119447] = 3, + [118797] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(1284), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 26, + ACTIONS(1286), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -179228,6 +178486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -179235,65 +178494,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119495] = 5, - ACTIONS(71), 1, + [118846] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1225), 23, + ACTIONS(1233), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119547] = 7, + aux_sym__simple_variable_name_token1, + sym_word, + [118895] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6483), 1, - anon_sym_RBRACK, - ACTIONS(6485), 1, - sym__concat, - STATE(2324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179308,7 +178558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1314), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179329,68 +178580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119603] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6458), 1, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(6487), 1, - sym__concat, - STATE(2368), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [119657] = 7, + [118944] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6491), 1, - sym__concat, - STATE(2324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1272), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179405,7 +178604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1274), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179426,65 +178626,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119713] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [118993] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1264), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1266), 27, sym__concat, - sym_variable_name, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6568), 1, + sym__special_character, + STATE(2302), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 34, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119761] = 7, + sym_word, + [119095] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6493), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1276), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179499,7 +178744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + ACTIONS(1278), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179520,37 +178766,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119817] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119144] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1288), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 26, + ACTIONS(1290), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -179560,6 +178810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -179567,15 +178818,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119865] = 5, + [119193] = 3, ACTIONS(71), 1, sym_comment, - STATE(2386), 1, + ACTIONS(1292), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [119242] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(6026), 15, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6033), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6035), 1, + sym_file_descriptor, + ACTIONS(6038), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6028), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6030), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(6026), 15, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(6571), 1, + sym__concat, + STATE(1484), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(6573), 1, + sym__concat, + STATE(1484), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(6575), 1, sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [119521] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5886), 1, aux_sym_concatenation_token1, - ACTIONS(1235), 14, + ACTIONS(6577), 1, + sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [119576] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179590,7 +179178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(1298), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179611,21 +179200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119917] = 7, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119625] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6497), 1, - sym__concat, - STATE(2324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179640,7 +179224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1302), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179661,20 +179246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119973] = 7, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119674] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1163), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6499), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179689,7 +179270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + ACTIONS(1282), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179710,69 +179292,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [120029] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6458), 1, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(6501), 1, - sym__concat, - STATE(2368), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1209), 24, + [119723] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6579), 1, + sym__special_character, + STATE(2291), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120083] = 5, + sym_word, + [119776] = 3, ACTIONS(71), 1, sym_comment, - STATE(2365), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6503), 2, + ACTIONS(1284), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1286), 27, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119825] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1248), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1250), 27, sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(1213), 14, + [119874] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -179781,12 +179456,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 23, + ACTIONS(1298), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179797,8 +179472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -179807,18 +179484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120135] = 7, + [119923] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1103), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6506), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + STATE(2384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179833,7 +179506,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + sym__special_character, + ACTIONS(1233), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179854,21 +179529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [120191] = 5, + [119976] = 3, ACTIONS(71), 1, sym_comment, - STATE(2398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5264), 14, + ACTIONS(1300), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -179877,12 +179550,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5266), 23, + ACTIONS(1302), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179893,8 +179566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -179903,15 +179578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120243] = 5, + [120025] = 5, ACTIONS(71), 1, sym_comment, - STATE(2368), 1, + STATE(2343), 1, aux_sym_concatenation_repeat1, - ACTIONS(6508), 2, + ACTIONS(6581), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 13, + ACTIONS(1231), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -179920,12 +179595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 24, + ACTIONS(1233), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -179934,6 +179610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -179942,7 +179619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -179950,15 +179626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120295] = 5, + [120078] = 5, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, + STATE(2345), 1, aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, + ACTIONS(6581), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 13, + ACTIONS(5439), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -179967,12 +179643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 24, + ACTIONS(5441), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -179981,6 +179658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -179989,43 +179667,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5931), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4265), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(4251), 16, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120347] = 3, + sym_word, + ACTIONS(5929), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [120184] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1312), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 26, + ACTIONS(1314), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -180035,6 +179760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -180042,82 +179768,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120395] = 5, + [120233] = 3, ACTIONS(71), 1, sym_comment, - STATE(2420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5268), 14, + ACTIONS(1288), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5270), 23, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1290), 27, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120447] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [120331] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 27, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120380] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1254), 27, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120429] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 27, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120478] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6583), 1, + sym__special_character, + STATE(2283), 1, + aux_sym__literal_repeat1, + ACTIONS(237), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 26, + ACTIONS(276), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -180126,26 +180038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120495] = 7, + [120531] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1099), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6511), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -180160,7 +180064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + ACTIONS(1254), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -180181,177 +180086,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [120551] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6515), 1, - anon_sym_esac, - ACTIONS(6517), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6789), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3327), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6513), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120645] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6521), 1, - anon_sym_esac, - ACTIONS(6523), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7000), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3302), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6519), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120739] = 6, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120580] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6481), 1, - aux_sym_concatenation_token1, - ACTIONS(6525), 1, - sym__concat, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(1248), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 23, + ACTIONS(1250), 26, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -180360,6 +180129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -180367,219 +180138,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120793] = 26, - ACTIONS(3), 1, + [120629] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + STATE(2345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6581), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2082), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6392), 1, sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + sym_word, + ACTIONS(2084), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6529), 1, - anon_sym_esac, - ACTIONS(6531), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7003), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3303), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6527), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120887] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6535), 1, - anon_sym_esac, - ACTIONS(6537), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6792), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3328), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6533), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120981] = 26, - ACTIONS(3), 1, + [120682] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + STATE(2343), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6581), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4648), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6392), 1, sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + sym_word, + ACTIONS(4650), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6541), 1, - anon_sym_esac, - ACTIONS(6543), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7366), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3336), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(6539), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121075] = 5, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120735] = 5, ACTIONS(71), 1, sym_comment, - STATE(2376), 1, + STATE(2345), 1, aux_sym_concatenation_repeat1, - ACTIONS(6481), 2, + ACTIONS(6581), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5130), 14, + ACTIONS(4652), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -180594,8 +180257,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 23, + ACTIONS(4654), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -180618,15 +180282,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121127] = 5, + [120788] = 5, ACTIONS(71), 1, sym_comment, - STATE(2400), 1, + STATE(2431), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1085), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1235), 14, + ACTIONS(1231), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1233), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120841] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -180641,7 +180348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(1294), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -180662,18 +180370,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [121179] = 5, + aux_sym_concatenation_token1, + [120890] = 5, ACTIONS(71), 1, sym_comment, - STATE(2384), 1, + STATE(2345), 1, aux_sym_concatenation_repeat1, - ACTIONS(6481), 2, + ACTIONS(6581), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5134), 14, + ACTIONS(2137), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -180688,8 +180399,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 23, + ACTIONS(2139), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -180712,84 +180424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121231] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6547), 1, - anon_sym_esac, - ACTIONS(6549), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3304), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6545), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121325] = 6, + [120943] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6481), 1, - aux_sym_concatenation_token1, - ACTIONS(6551), 1, - sym__concat, - STATE(2406), 1, + STATE(2343), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(6581), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4682), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -180804,8 +180447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 23, + ACTIONS(4684), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -180828,135 +180472,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121379] = 26, - ACTIONS(3), 1, + [120996] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + STATE(2345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6581), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4686), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6392), 1, sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + sym_word, + ACTIONS(4688), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6555), 1, - anon_sym_esac, - ACTIONS(6557), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7019), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3306), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(6553), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121473] = 6, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [121049] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6559), 1, - sym__concat, - STATE(2042), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, - anon_sym_EQ, + ACTIONS(1304), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1209), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [121527] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5264), 13, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -180966,10 +180539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5266), 24, + ACTIONS(1306), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -180983,6 +180557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -180991,19 +180566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121579] = 5, + [121098] = 3, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 13, + ACTIONS(1264), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -181013,10 +180585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4282), 24, + ACTIONS(1266), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -181030,6 +180603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -181038,78 +180612,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121631] = 26, - ACTIONS(3), 1, + [121147] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + ACTIONS(6581), 1, + aux_sym_concatenation_token1, + ACTIONS(6585), 1, + sym__concat, + STATE(2358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6392), 1, sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + sym_word, + ACTIONS(1209), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6563), 1, - anon_sym_esac, - ACTIONS(6565), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6763), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3319), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(6561), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121725] = 3, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [121202] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + STATE(2464), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -181124,9 +180684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 26, + ACTIONS(1233), 24, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -181146,20 +180705,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [121773] = 5, + sym__special_character, + [121255] = 6, ACTIONS(71), 1, sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, + ACTIONS(6581), 1, aux_sym_concatenation_token1, - ACTIONS(4437), 13, + ACTIONS(6587), 1, + sym__concat, + STATE(2358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181168,12 +180727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4439), 24, + ACTIONS(1215), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -181182,6 +180742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -181190,7 +180751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -181198,21 +180758,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121825] = 6, + [121310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5874), 1, + ACTIONS(5819), 1, sym__concat, - STATE(2310), 1, + STATE(2308), 1, aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(5437), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 33, + ACTIONS(5435), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -181229,6 +180790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -181244,23 +180806,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [121879] = 6, + [121365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(5874), 1, + ACTIONS(5819), 1, sym__concat, - STATE(2311), 1, + STATE(2309), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(5441), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 33, + ACTIONS(5439), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -181277,6 +180839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -181292,201 +180855,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [121933] = 26, + [121420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, + sym__concat, + STATE(2310), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5445), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6569), 1, - anon_sym_esac, - ACTIONS(6571), 1, aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7175), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3323), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6567), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122027] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5184), 14, + ACTIONS(5443), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5186), 23, + [121475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, + sym__concat, + STATE(2311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5449), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5447), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122079] = 6, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [121530] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(6573), 1, + ACTIONS(5819), 1, sym__concat, - STATE(2042), 1, + STATE(2309), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1229), 23, + ACTIONS(2084), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122133] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1262), 26, - sym_file_descriptor, + [121585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(2308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4648), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181494,94 +181038,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122181] = 6, - ACTIONS(71), 1, + sym_word, + [121640] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6416), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(6575), 1, + ACTIONS(5819), 1, sym__concat, - STATE(2365), 1, + STATE(2309), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(4654), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1229), 23, + [121695] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(2309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2137), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122235] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4368), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4370), 24, + [121750] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(2308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4682), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181589,92 +181185,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122287] = 6, - ACTIONS(71), 1, + sym_word, + [121805] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(5817), 1, aux_sym_concatenation_token1, - ACTIONS(6577), 1, + ACTIONS(5819), 1, sym__concat, - STATE(2042), 1, + STATE(2309), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1209), 23, + ACTIONS(4688), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122341] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1266), 26, - sym_file_descriptor, + [121860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, sym__concat, + STATE(2308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5292), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181682,43 +181283,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122389] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1225), 26, + [121915] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(2309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5296), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181726,66 +181332,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122437] = 5, + sym_word, + [121970] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - STATE(2324), 1, + STATE(2358), 1, aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1332), 24, + ACTIONS(6589), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [122489] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 14, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181800,9 +181369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 26, + ACTIONS(1237), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -181819,7 +181387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -181827,86 +181394,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122537] = 5, - ACTIONS(71), 1, + [122023] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4519), 24, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, + sym__concat, + STATE(2310), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5292), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122589] = 5, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [122078] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6579), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 14, - anon_sym_PIPE, + ACTIONS(6556), 1, + anon_sym_DQUOTE, + ACTIONS(6560), 1, + sym_variable_name, + STATE(3460), 1, + sym_string, + ACTIONS(6558), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(6554), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 25, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1215), 23, + [122137] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + aux_sym_concatenation_token1, + ACTIONS(5819), 1, + sym__concat, + STATE(2308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181914,69 +181529,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122641] = 5, - ACTIONS(71), 1, + sym_word, + [122192] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, - sym__special_character, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, - anon_sym_EQ, + ACTIONS(5886), 1, + aux_sym_concatenation_token1, + ACTIONS(5888), 1, + sym__concat, + STATE(2310), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(358), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [122693] = 5, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [122247] = 5, ACTIONS(71), 1, sym_comment, - STATE(2364), 1, + STATE(2343), 1, aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, + ACTIONS(6581), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2156), 13, + ACTIONS(5435), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181985,12 +181609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2158), 24, + ACTIONS(5437), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -181999,6 +181624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182007,7 +181633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -182015,62 +181640,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122745] = 5, + [122300] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6582), 1, - sym__special_character, - STATE(2409), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, - anon_sym_EQ, + STATE(2439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6592), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 24, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1233), 23, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122797] = 5, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122352] = 3, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 13, + ACTIONS(1284), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182079,13 +181699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4309), 24, + ACTIONS(1286), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -182093,6 +181715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182101,7 +181724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -182109,21 +181732,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122849] = 6, + [122400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5918), 1, aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(6594), 1, sym__concat, - STATE(2416), 1, + STATE(1604), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 33, + ACTIONS(1207), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -182140,7 +181763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182156,67 +181778,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [122903] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1233), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1240), 26, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122951] = 6, + [122454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5918), 1, aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(6596), 1, sym__concat, - STATE(2424), 1, + STATE(1604), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 33, + ACTIONS(1213), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -182233,7 +181811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182249,11 +181826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [123005] = 3, + [122508] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1268), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182268,7 +181846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1270), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -182295,10 +181873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123053] = 3, + [122556] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(6598), 1, + anon_sym_RBRACK, + ACTIONS(6600), 1, + sym__concat, + STATE(2392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182313,9 +181899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 26, + ACTIONS(1325), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -182335,69 +181920,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [123101] = 6, + [122612] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(6585), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6608), 1, + anon_sym_esac, + ACTIONS(6610), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(6612), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6618), 1, sym__special_character, + ACTIONS(6620), 1, anon_sym_DQUOTE, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7031), 1, + sym_last_case_item, + ACTIONS(6634), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3382), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, sym_raw_string, sym_ansi_c_string, + sym_word, + ACTIONS(6604), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122706] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6626), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, + ACTIONS(6632), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6644), 1, + anon_sym_esac, + ACTIONS(6646), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7035), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(3383), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [123155] = 6, + ACTIONS(6642), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122800] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, + ACTIONS(1077), 1, + anon_sym_RBRACK, + ACTIONS(6648), 1, + sym__special_character, + ACTIONS(6650), 1, sym__concat, - STATE(2332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182412,7 +182084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1229), 23, + ACTIONS(700), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -182433,67 +182105,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [123209] = 7, + [122856] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6654), 1, + anon_sym_esac, + ACTIONS(6656), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7048), 1, + sym_last_case_item, + ACTIONS(6634), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3384), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6652), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122950] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6660), 1, + anon_sym_esac, + ACTIONS(6662), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7050), 1, + sym_last_case_item, + ACTIONS(6634), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3385), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6658), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123044] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6589), 1, - anon_sym_RBRACK, - ACTIONS(6591), 1, - sym__concat, - STATE(2324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, - anon_sym_EQ, + ACTIONS(1272), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1332), 22, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123092] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1231), 14, + anon_sym_PIPE, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123265] = 5, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1233), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123140] = 5, ACTIONS(71), 1, sym_comment, - STATE(2364), 1, + STATE(2390), 1, aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, + ACTIONS(6664), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2160), 13, + ACTIONS(2082), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182507,7 +182355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2162), 24, + ACTIONS(2084), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -182532,16 +182380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123317] = 6, + [123192] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6416), 1, - aux_sym_concatenation_token1, - ACTIONS(6593), 1, - sym__concat, - STATE(2365), 1, + STATE(2390), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2137), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182554,9 +182401,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1209), 23, + ACTIONS(2139), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -182570,26 +182416,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123244] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6668), 1, + anon_sym_esac, + ACTIONS(6670), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6818), 1, + sym_last_case_item, + ACTIONS(6634), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3371), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6666), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123338] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6674), 1, + anon_sym_esac, + ACTIONS(6676), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6821), 1, + sym_last_case_item, + ACTIONS(6634), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3372), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6672), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123371] = 6, + sym_word, + [123480] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6595), 1, - sym__concat, - STATE(2042), 1, + ACTIONS(6678), 1, + sym__special_character, + STATE(2382), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1320), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123532] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2437), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(1085), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182604,7 +182678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1229), 23, + ACTIONS(1325), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -182625,18 +182699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [123425] = 5, + [123584] = 6, ACTIONS(71), 1, sym_comment, - STATE(2528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, + ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(6681), 1, + sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182651,7 +182726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1225), 23, + ACTIONS(1209), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -182672,41 +182747,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - [123477] = 5, - ACTIONS(71), 1, + [123638] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, + ACTIONS(5925), 1, aux_sym_concatenation_token1, - ACTIONS(4311), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4313), 24, + ACTIONS(6683), 1, + sym__concat, + STATE(1639), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -182714,29 +182784,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123529] = 6, + sym_word, + [123692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5925), 1, aux_sym_concatenation_token1, - ACTIONS(6597), 1, + ACTIONS(6685), 1, sym__concat, - STATE(1600), 1, + STATE(1639), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(1213), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -182770,21 +182846,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123583] = 6, + [123746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5925), 1, aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(5927), 1, sym__concat, - STATE(2416), 1, + STATE(2385), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1233), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(1231), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -182818,15 +182894,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123637] = 5, + [123800] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6664), 1, + aux_sym_concatenation_token1, + ACTIONS(6687), 1, + sym__concat, + STATE(2408), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1209), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123854] = 5, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, + STATE(2388), 1, aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, + ACTIONS(6664), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5130), 13, + ACTIONS(5292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182840,7 +182964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 24, + ACTIONS(5294), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -182865,10 +182989,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123689] = 3, + [123906] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(6664), 1, + aux_sym_concatenation_token1, + ACTIONS(6689), 1, + sym__concat, + STATE(2408), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1215), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123960] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6691), 1, + sym__special_character, + STATE(2382), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4650), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124012] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(6693), 1, + sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182883,9 +183108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 26, + ACTIONS(1215), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -182905,15 +183129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [123737] = 3, + [124066] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(6695), 1, + sym__special_character, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182928,9 +183154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 26, + ACTIONS(1320), 24, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -182950,136 +183176,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [123785] = 3, + [124118] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + STATE(2394), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6698), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 26, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1237), 23, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [123833] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, sym__special_character, - ACTIONS(6394), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6601), 1, - anon_sym_esac, - ACTIONS(6603), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7177), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3324), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6599), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123927] = 7, + [124170] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(6605), 1, + ACTIONS(6701), 1, anon_sym_RBRACK, - ACTIONS(6607), 1, + ACTIONS(6703), 1, sym__concat, - STATE(2324), 1, + STATE(2392), 1, aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183094,7 +183252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1325), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -183117,10 +183275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [123983] = 3, + [124226] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1163), 1, + anon_sym_RBRACK, + ACTIONS(6648), 1, + sym__special_character, + ACTIONS(6705), 1, + sym__concat, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183135,10 +183301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, - sym__concat, + ACTIONS(700), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183158,17 +183322,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [124030] = 3, + [124282] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(6691), 1, + sym__special_character, + STATE(2382), 1, + aux_sym__literal_repeat1, + ACTIONS(4682), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183176,13 +183345,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 26, + ACTIONS(4684), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -183196,241 +183363,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124077] = 3, - ACTIONS(71), 1, + [124334] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6709), 1, + anon_sym_esac, + ACTIONS(6711), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7189), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124124] = 3, - ACTIONS(71), 1, + STATE(3400), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6707), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124428] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6618), 1, sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6715), 1, + anon_sym_esac, + ACTIONS(6717), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7570), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124171] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + STATE(3373), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(4282), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(6713), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124522] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, + ACTIONS(6632), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6721), 1, + anon_sym_esac, + ACTIONS(6723), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7201), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124222] = 3, + STATE(3347), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6719), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124616] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6725), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1237), 23, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124668] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, sym__special_character, + ACTIONS(6620), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124269] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1258), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6730), 1, + anon_sym_esac, + ACTIONS(6732), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7203), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124316] = 3, + STATE(3348), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6728), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124762] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6734), 1, + sym__special_character, + STATE(2403), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183445,8 +183712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, - sym__concat, + ACTIONS(1320), 24, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -183467,14 +183733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [124363] = 3, + anon_sym_COLON, + [124814] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(1288), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183483,13 +183749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1270), 25, + ACTIONS(1290), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -183499,15 +183765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183515,10 +183782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124410] = 3, + [124862] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(6648), 1, + sym__special_character, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183533,7 +183804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 25, + ACTIONS(700), 24, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -183558,11 +183829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [124457] = 3, + [124914] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(6737), 1, + anon_sym_RBRACK, + ACTIONS(6739), 1, + sym__concat, + STATE(2392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183577,7 +183855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6613), 25, + ACTIONS(1325), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -183598,59 +183876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [124504] = 3, + [124970] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1147), 1, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [124551] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, + ACTIONS(6648), 1, + sym__special_character, + ACTIONS(6741), 1, + sym__concat, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183665,10 +183904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 25, - sym__concat, + ACTIONS(700), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183688,13 +183925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [124598] = 3, + [125026] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + STATE(2408), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6743), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183707,11 +183948,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1237), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -183724,9 +183963,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -183735,10 +183974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124645] = 3, + [125078] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183751,11 +183995,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 25, + ACTIONS(1233), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -183768,9 +184010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -183779,10 +184021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124692] = 3, + [125130] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + STATE(2439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6592), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5435), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183791,21 +184038,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(5437), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183814,8 +184061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183823,10 +184068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124739] = 3, + [125182] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + STATE(2461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6592), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5439), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183841,9 +184091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 25, + ACTIONS(5441), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -183859,7 +184108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183867,16 +184115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124786] = 3, + [125234] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4441), 14, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4648), 13, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183884,11 +184135,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4443), 25, + ACTIONS(4650), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -183907,14 +184159,18 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124833] = 3, + [125286] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + STATE(2390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4652), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183928,9 +184184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(4654), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -183946,7 +184201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -183955,60 +184209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124880] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6615), 1, - sym__special_character, - STATE(2533), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(358), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [124931] = 5, + [125338] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6617), 1, - sym__special_character, - STATE(2452), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(6746), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + sym__concat, + STATE(2392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184023,7 +184235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 23, + ACTIONS(1325), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -184044,13 +184256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [124982] = 3, + [125394] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4682), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184064,9 +184280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 26, + ACTIONS(4684), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -184082,7 +184297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -184091,10 +184305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125029] = 3, + [125446] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + STATE(2390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4686), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184103,22 +184322,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 25, + ACTIONS(4688), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184127,7 +184344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184135,54 +184352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125076] = 3, + [125498] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 25, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, aux_sym_concatenation_token1, - [125123] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 13, + ACTIONS(5435), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184196,9 +184374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 26, + ACTIONS(5437), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -184214,7 +184391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -184223,58 +184399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125170] = 3, + [125550] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 25, - sym_file_descriptor, + STATE(2390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6664), 2, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125217] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 12, + ACTIONS(5439), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184286,8 +184419,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5689), 25, + ACTIONS(5441), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -184296,7 +184430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184305,18 +184438,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125268] = 3, + [125602] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1159), 1, + anon_sym_RBRACK, + ACTIONS(6648), 1, + sym__special_character, + ACTIONS(6750), 1, + sym__concat, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184331,8 +184472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 25, - sym__concat, + ACTIONS(700), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -184353,106 +184493,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [125315] = 3, - ACTIONS(71), 1, + [125658] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6618), 1, sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6754), 1, + anon_sym_esac, + ACTIONS(6756), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6711), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125362] = 3, - ACTIONS(71), 1, + STATE(3370), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6752), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125752] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1278), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(6760), 1, + anon_sym_esac, + ACTIONS(6762), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7077), 1, + sym_last_case_item, + ACTIONS(6634), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3394), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6758), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125846] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, sym__special_character, + ACTIONS(6620), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6766), 1, + anon_sym_esac, + ACTIONS(6768), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7176), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125409] = 3, + STATE(3390), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6764), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125940] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(6691), 1, + sym__special_character, + STATE(2382), 1, + aux_sym__literal_repeat1, + ACTIONS(4670), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -184460,14 +184720,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 25, + ACTIONS(4672), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -184478,45 +184735,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125456] = 3, + [125992] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1219), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 25, + ACTIONS(1226), 26, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184525,152 +184782,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125503] = 3, - ACTIONS(71), 1, + [126040] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6618), 1, sym__special_character, + ACTIONS(6620), 1, + anon_sym_DQUOTE, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6632), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6772), 1, + anon_sym_esac, + ACTIONS(6774), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7504), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125550] = 5, + STATE(3356), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6770), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126134] = 6, ACTIONS(71), 1, sym_comment, - STATE(2474), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, - sym__concat, + ACTIONS(1111), 1, aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(6776), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1225), 22, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1209), 23, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125601] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126188] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1111), 1, + aux_sym_concatenation_token1, + ACTIONS(6778), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1215), 23, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125648] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126242] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184685,8 +184973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 25, - sym__concat, + ACTIONS(1254), 26, sym_test_operator, sym_extglob_pattern, anon_sym_PLUS_PLUS, @@ -184708,13 +184995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [125695] = 3, + anon_sym_COLON, + [126290] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 13, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184723,12 +185012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 26, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -184738,6 +185028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184747,7 +185038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184755,192 +185045,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125742] = 3, + [126338] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(6780), 1, + anon_sym_RBRACK, + ACTIONS(6782), 1, + sym__concat, + STATE(2392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 25, - sym_file_descriptor, - sym__concat, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1325), 22, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125789] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126394] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(6784), 1, + sym__concat, + STATE(2401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1209), 23, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125836] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126448] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + STATE(2392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1290), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1325), 24, sym__concat, - sym_variable_name, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126500] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, sym__special_character, + ACTIONS(6620), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6788), 1, + anon_sym_esac, + ACTIONS(6790), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6834), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125883] = 3, + STATE(3346), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6786), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126594] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(6792), 1, + sym__special_character, + STATE(2403), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(700), 24, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125930] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [126646] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6622), 1, - aux_sym_concatenation_token1, - ACTIONS(6624), 1, - sym__concat, - STATE(2476), 1, + STATE(2453), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5443), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184949,21 +185321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1229), 22, + ACTIONS(5445), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184971,6 +185343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184978,16 +185351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125983] = 6, + [126698] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6620), 1, - aux_sym_concatenation_token1, - ACTIONS(6626), 1, - sym__concat, - STATE(2479), 1, + STATE(2390), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(6664), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185000,10 +185372,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1229), 22, + ACTIONS(5298), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -185015,6 +185387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -185025,62 +185398,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126036] = 6, + [126750] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6622), 1, + ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(6628), 1, + ACTIONS(6796), 1, sym__concat, - STATE(2476), 1, + STATE(2401), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(1213), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1209), 22, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1215), 23, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126804] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + anon_sym_LPAREN, + ACTIONS(6612), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6614), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6618), 1, + sym__special_character, + ACTIONS(6620), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6626), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6800), 1, + anon_sym_esac, + ACTIONS(6802), 1, + aux_sym_heredoc_redirect_token1, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6837), 1, + sym_last_case_item, + ACTIONS(6634), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126089] = 5, + STATE(3403), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6602), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6798), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126898] = 6, ACTIONS(71), 1, sym_comment, - STATE(2476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6630), 2, - sym__concat, + ACTIONS(6592), 1, aux_sym_concatenation_token1, - ACTIONS(1213), 14, + ACTIONS(6804), 1, + sym__concat, + STATE(2469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185095,7 +185538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 22, + ACTIONS(1209), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -185109,6 +185552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -185118,10 +185562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126140] = 3, + [126952] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(1292), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185130,12 +185574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 26, + ACTIONS(1294), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185145,6 +185590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185154,7 +185600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -185162,59 +185607,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126187] = 3, + [127000] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1280), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1282), 26, sym_test_operator, - sym__brace_start, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126234] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [127048] = 5, ACTIONS(71), 1, sym_comment, - STATE(2479), 1, + STATE(2454), 1, aux_sym_concatenation_repeat1, - ACTIONS(6633), 2, + ACTIONS(6794), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 14, + ACTIONS(5447), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185229,8 +185675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 22, + ACTIONS(5449), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -185252,100 +185699,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126285] = 3, + [127100] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4303), 14, + ACTIONS(1248), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4305), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126332] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6636), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1318), 25, - sym_file_descriptor, - sym_variable_name, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1250), 26, sym_test_operator, - sym__brace_start, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126383] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [127148] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185360,9 +185762,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 25, - sym__concat, + ACTIONS(1290), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185382,58 +185784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [126430] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126477] = 3, + anon_sym_COLON, + [127196] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185448,9 +185807,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 25, - sym__concat, + ACTIONS(1306), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185470,14 +185829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [126524] = 3, + anon_sym_COLON, + [127244] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + STATE(2453), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5292), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185490,10 +185855,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1258), 26, + ACTIONS(5294), 23, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -185506,10 +185871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -185518,10 +185881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126571] = 3, + [127296] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + STATE(2454), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185536,9 +185904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(5298), 23, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -185553,7 +185920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -185562,12 +185928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126618] = 4, + [127348] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6643), 1, + ACTIONS(1143), 1, + anon_sym_RBRACK, + ACTIONS(6648), 1, + sym__special_character, + ACTIONS(6806), 1, sym__concat, - ACTIONS(6641), 14, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185582,9 +185954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6639), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(700), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185606,55 +185977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [126667] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5397), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5399), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126714] = 3, + [127404] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6812), 1, + sym_extglob_pattern, + ACTIONS(6808), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185669,8 +185997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, - sym__concat, + ACTIONS(6810), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -185691,62 +186018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [126761] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 22, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126812] = 4, + anon_sym_COLON, + [127454] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6649), 1, - anon_sym_LBRACK, - ACTIONS(6647), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185761,9 +186041,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6645), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1294), 26, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185783,13 +186063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [126861] = 3, + [127502] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1256), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185798,12 +186080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 26, + ACTIONS(1258), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185813,6 +186096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185822,7 +186106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -185830,147 +186113,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126908] = 3, - ACTIONS(71), 1, + [127550] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1298), 25, + ACTIONS(1233), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126955] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127002] = 4, + sym_word, + [127598] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6655), 1, + ACTIONS(6794), 1, + aux_sym_concatenation_token1, + ACTIONS(6814), 1, sym__concat, - ACTIONS(6653), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6651), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [127051] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + STATE(2394), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185982,8 +186179,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5132), 25, + ACTIONS(1209), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -185992,33 +186191,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127102] = 3, + [127652] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 14, + ACTIONS(6794), 1, + aux_sym_concatenation_token1, + ACTIONS(6816), 1, + sym__concat, + STATE(2394), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -186026,11 +186227,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4439), 25, + ACTIONS(1215), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -186041,7 +186244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -186049,14 +186251,13 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127149] = 3, + [127706] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186071,9 +186272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 25, + ACTIONS(1298), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -186097,54 +186299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127196] = 3, + [127754] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 25, + STATE(2465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1111), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, aux_sym_concatenation_token1, - [127243] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 14, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186159,8 +186322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1254), 25, - sym__concat, + ACTIONS(1325), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -186181,14 +186343,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [127290] = 3, + anon_sym_COLON, + [127806] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + STATE(2471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186203,10 +186369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 25, - sym__concat, + ACTIONS(1325), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186226,13 +186390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [127337] = 3, + [127858] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 15, + ACTIONS(1111), 1, + aux_sym_concatenation_token1, + ACTIONS(6818), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186247,9 +186417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 24, - sym__concat, + ACTIONS(1209), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -186270,19 +186438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [127384] = 6, + [127912] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6620), 1, - aux_sym_concatenation_token1, - ACTIONS(6657), 1, - sym__concat, - STATE(2479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186291,28 +186453,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1209), 22, + ACTIONS(1254), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186320,15 +186486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127437] = 5, + [127960] = 3, ACTIONS(71), 1, sym_comment, - STATE(2514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 13, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186337,19 +186498,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 23, + ACTIONS(1310), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186358,7 +186523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186366,10 +186531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127488] = 3, + [128008] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(6592), 1, + aux_sym_concatenation_token1, + ACTIONS(6820), 1, + sym__concat, + STATE(2469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186378,31 +186549,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1250), 25, + ACTIONS(1215), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186410,98 +186579,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127535] = 3, - ACTIONS(71), 1, + [128062] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1294), 25, - sym_file_descriptor, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(5920), 1, sym__concat, - sym_variable_name, + STATE(2366), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5648), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5646), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [127582] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 25, - sym_file_descriptor, + [128116] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5918), 1, + aux_sym_concatenation_token1, + ACTIONS(5920), 1, sym__concat, - sym_variable_name, + STATE(2367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5652), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5650), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127629] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [128170] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(1111), 1, + aux_sym_concatenation_token1, + ACTIONS(6822), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186516,7 +186699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6663), 25, + ACTIONS(1209), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -186537,59 +186720,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [127676] = 3, + [128224] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 14, + ACTIONS(1111), 1, + aux_sym_concatenation_token1, + ACTIONS(6824), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4313), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1215), 23, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [127723] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [128278] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186598,12 +186783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 26, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -186613,6 +186799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186622,7 +186809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186630,10 +186816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127770] = 3, + [128326] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1260), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186642,13 +186828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1282), 25, + ACTIONS(1262), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -186658,15 +186844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186674,59 +186861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127817] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6665), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6667), 25, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [127864] = 5, + [128374] = 3, ACTIONS(71), 1, sym_comment, - STATE(2503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5289), 14, + ACTIONS(1235), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186735,28 +186873,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5291), 22, + ACTIONS(1237), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186764,16 +186906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127915] = 6, + [128422] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6659), 1, - aux_sym_concatenation_token1, - ACTIONS(6669), 1, - sym__concat, - STATE(2527), 1, + STATE(2469), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(6826), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186782,12 +186923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 23, + ACTIONS(1237), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -186795,6 +186937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186803,7 +186946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186811,10 +186953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127968] = 3, + [128474] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186829,9 +186971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 25, + ACTIONS(1254), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -186855,10 +186998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128015] = 3, + [128522] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1111), 1, + aux_sym_concatenation_token1, + ACTIONS(6829), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186873,8 +187022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1286), 25, - sym__concat, + ACTIONS(1215), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -186895,14 +187043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [128062] = 3, + [128576] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186917,9 +187064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1215), 25, - sym__concat, + ACTIONS(1254), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186939,14 +187086,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [128109] = 3, + anon_sym_COLON, + [128624] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(6831), 1, + anon_sym_RBRACK, + ACTIONS(6833), 1, + sym__concat, + STATE(2392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186961,7 +187117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 25, + ACTIONS(1325), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -186982,21 +187138,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [128156] = 6, - ACTIONS(71), 1, + [128680] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 1, + ACTIONS(5925), 1, aux_sym_concatenation_token1, - ACTIONS(6671), 1, + ACTIONS(5927), 1, sym__concat, - STATE(2527), 1, + STATE(2385), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 13, + ACTIONS(5437), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [128734] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187005,20 +187200,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 23, + ACTIONS(1302), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128782] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128830] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5925), 1, + aux_sym_concatenation_token1, + ACTIONS(5927), 1, + sym__concat, + STATE(2386), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5439), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -187026,20 +187312,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128209] = 4, + sym_word, + [128884] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6677), 1, + ACTIONS(1151), 1, + anon_sym_RBRACK, + ACTIONS(6648), 1, + sym__special_character, + ACTIONS(6835), 1, sym__concat, - ACTIONS(6675), 14, + STATE(2393), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187054,9 +187352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6673), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(700), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187078,11 +187375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [128258] = 3, + [128940] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(1248), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187097,9 +187393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 25, + ACTIONS(1250), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -187123,54 +187420,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128305] = 3, + [128988] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 14, - anon_sym_EQ, + ACTIONS(1264), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1225), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1266), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - [128352] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129036] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187185,9 +187483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 25, - sym__concat, + ACTIONS(1310), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187207,58 +187505,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [128399] = 3, + anon_sym_COLON, + [129084] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, + ACTIONS(1280), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 26, + sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5918), 1, aux_sym_concatenation_token1, - [128446] = 3, + ACTIONS(5920), 1, + sym__concat, + STATE(2366), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [129186] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + STATE(2568), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187273,8 +187626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1282), 25, - sym__concat, + ACTIONS(1233), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -187295,19 +187647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [128493] = 5, + sym__special_character, + [129238] = 5, ACTIONS(71), 1, sym_comment, - STATE(2474), 1, + STATE(2453), 1, aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, + ACTIONS(6794), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5387), 14, + ACTIONS(1231), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187322,8 +187673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5389), 22, + ACTIONS(1233), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -187345,19 +187697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128544] = 5, + [129290] = 5, ACTIONS(71), 1, sym_comment, - STATE(2527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6679), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 13, + ACTIONS(6691), 1, + sym__special_character, + STATE(2382), 1, + aux_sym__literal_repeat1, + ACTIONS(4553), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -187365,11 +187718,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 23, + ACTIONS(4555), 24, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -187383,24 +187736,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128595] = 6, + [129342] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6682), 1, - sym__concat, - STATE(2042), 1, + STATE(2427), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(1111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187415,7 +187767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1229), 22, + ACTIONS(1325), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -187436,12 +187788,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128648] = 3, + [129394] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1292), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1294), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129441] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6837), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187456,8 +187853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 25, - sym__concat, + ACTIONS(6839), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -187478,20 +187874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [128695] = 6, + anon_sym_COLON, + [129488] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6684), 1, - sym__concat, - STATE(2042), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(6841), 1, + sym__special_character, + STATE(2490), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187506,7 +187901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1209), 22, + ACTIONS(1320), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -187527,21 +187922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128748] = 5, + [129539] = 3, ACTIONS(71), 1, sym_comment, - STATE(2514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 13, + ACTIONS(4690), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -187549,11 +187942,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 23, + ACTIONS(4692), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -187572,13 +187965,14 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128799] = 3, + [129586] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1256), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187587,22 +187981,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 25, + ACTIONS(1258), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -187612,6 +188005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187619,100 +188013,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128846] = 5, + [129633] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6686), 1, - sym__special_character, - STATE(2533), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, - anon_sym_EQ, + ACTIONS(1288), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1290), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [128897] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129680] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1262), 26, + sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [128944] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129727] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1235), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187725,9 +188117,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1237), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -187742,6 +188133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -187753,15 +188145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128991] = 5, + [129774] = 3, ACTIONS(71), 1, sym_comment, - STATE(2473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 14, + ACTIONS(1312), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187770,28 +188157,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 22, + ACTIONS(1314), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187799,59 +188189,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129042] = 3, + [129821] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, + ACTIONS(1264), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1266), 26, + sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129089] = 5, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129868] = 6, ACTIONS(71), 1, sym_comment, - STATE(2475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, + ACTIONS(6844), 1, aux_sym_concatenation_token1, - ACTIONS(5134), 14, + ACTIONS(6846), 1, + sym__concat, + STATE(2500), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187866,7 +188257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 22, + ACTIONS(1209), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -187889,62 +188280,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129140] = 6, - ACTIONS(3), 1, + [129921] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6844), 1, aux_sym_concatenation_token1, - ACTIONS(6689), 1, + ACTIONS(6848), 1, sym__concat, - STATE(1759), 1, + STATE(2500), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1213), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1215), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [129193] = 5, + [129974] = 5, ACTIONS(71), 1, sym_comment, - STATE(2519), 1, + STATE(2500), 1, aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, + ACTIONS(6850), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5134), 13, + ACTIONS(1235), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187953,12 +188344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 23, + ACTIONS(1237), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -187966,15 +188358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187982,54 +188373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129244] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6611), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6613), 25, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [129291] = 3, + [130025] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1268), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188042,9 +188389,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 25, + ACTIONS(1270), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188059,6 +188405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -188070,59 +188417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129338] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6691), 1, - sym_extglob_pattern, - ACTIONS(6466), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6468), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129387] = 5, + [130072] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 12, + ACTIONS(1272), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188134,9 +188432,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5563), 25, + ACTIONS(1274), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -188144,7 +188444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -188153,63 +188452,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129438] = 4, + [130119] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6693), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6697), 23, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [129487] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, + ACTIONS(6853), 1, + sym__special_character, + STATE(2503), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188218,15 +188477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 25, + ACTIONS(1320), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -188242,65 +188499,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129534] = 6, - ACTIONS(3), 1, + [130170] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(6699), 1, - sym__concat, - STATE(1759), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1314), 25, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [129587] = 3, + [130217] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(1256), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188315,7 +188569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1262), 25, + ACTIONS(1258), 25, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188341,14 +188595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129634] = 5, + [130264] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6701), 1, - sym__special_character, - STATE(2452), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188363,7 +188613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 23, + ACTIONS(1325), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188384,13 +188634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129685] = 3, + anon_sym_COLON, + [130311] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + STATE(2498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6844), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188405,9 +188662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 25, + ACTIONS(1233), 22, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -188420,10 +188676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188431,10 +188685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129732] = 3, + [130362] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188447,8 +188701,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 26, + ACTIONS(1298), 25, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188463,7 +188718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -188475,10 +188729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129779] = 3, + [130409] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1256), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188493,7 +188747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 25, + ACTIONS(1258), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -188519,10 +188773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129826] = 3, + [130456] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188535,8 +188789,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 26, + ACTIONS(1302), 25, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188551,7 +188806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -188563,10 +188817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129873] = 3, + [130503] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1260), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188575,31 +188829,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 25, + ACTIONS(1262), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188607,150 +188861,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129920] = 6, - ACTIONS(3), 1, + [130550] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(2539), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 32, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1235), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [129973] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(2547), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1237), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [130026] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2530), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1235), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1332), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130077] = 3, + [130597] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(6856), 1, + sym__special_character, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188765,10 +188927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 25, - sym__concat, + ACTIONS(700), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188791,109 +188951,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130124] = 3, - ACTIONS(71), 1, + [130648] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 25, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6858), 1, sym__concat, + STATE(1858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130171] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1310), 25, - sym_file_descriptor, + [130701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6860), 1, sym__concat, - sym_variable_name, + STATE(1858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130218] = 6, + sym_word, + [130754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6102), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(6104), 1, sym__concat, - STATE(2539), 1, + STATE(2514), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1233), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 32, + ACTIONS(1231), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -188926,10 +189092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [130271] = 3, + [130807] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1248), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188938,31 +189104,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 25, + ACTIONS(1250), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188970,143 +189136,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130318] = 3, + [130854] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, + ACTIONS(1312), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 25, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [130365] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130901] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, - anon_sym_EQ, + ACTIONS(1264), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1266), 25, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [130412] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6707), 1, - sym__concat, - ACTIONS(6705), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6703), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [130461] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130948] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6709), 14, + ACTIONS(1231), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189121,7 +189242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6711), 25, + ACTIONS(1233), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189143,14 +189264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [130508] = 3, + sym__special_character, + [130995] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1268), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189159,21 +189280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1270), 25, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189183,7 +189305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189191,16 +189312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130555] = 3, + [131042] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 14, + ACTIONS(1304), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -189208,11 +189327,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 25, + ACTIONS(1306), 25, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -189223,26 +189345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130602] = 5, + [131089] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 12, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189251,13 +189368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4309), 25, + ACTIONS(1274), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189273,18 +189392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130653] = 3, + [131136] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189293,22 +189412,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 25, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189318,6 +189436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189325,54 +189444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130700] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [130747] = 3, + [131183] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1280), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189381,22 +189456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 25, + ACTIONS(1282), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189406,6 +189480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189413,10 +189488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130794] = 3, + [131230] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1284), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189425,30 +189500,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 24, + ACTIONS(1286), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189456,10 +189532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130840] = 3, + [131277] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1288), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189468,30 +189544,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 24, + ACTIONS(1290), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189499,16 +189576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130886] = 6, + [131324] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6713), 1, - aux_sym_concatenation_token1, - ACTIONS(6715), 1, - sym__concat, - STATE(2577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189522,8 +189593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 22, + ACTIONS(1294), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189535,8 +189608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -189545,16 +189620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130938] = 6, + [131371] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6713), 1, - aux_sym_concatenation_token1, - ACTIONS(6717), 1, - sym__concat, - STATE(2577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 13, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189568,8 +189637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 22, + ACTIONS(1298), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189581,8 +189652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -189591,15 +189664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130990] = 5, + [131418] = 3, ACTIONS(71), 1, sym_comment, - STATE(2577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6719), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189613,8 +189681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 22, + ACTIONS(1302), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189626,8 +189696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -189636,15 +189708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131040] = 5, + [131465] = 3, ACTIONS(71), 1, sym_comment, - STATE(2575), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6713), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 13, + ACTIONS(1248), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189658,8 +189725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 22, + ACTIONS(1250), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189671,8 +189740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -189681,10 +189752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131090] = 3, + [131512] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189698,9 +189769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 25, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189724,10 +189796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131136] = 3, + [131559] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 13, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189741,9 +189813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 25, + ACTIONS(1254), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189767,10 +189840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131182] = 3, + [131606] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 13, + ACTIONS(1308), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189784,9 +189857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 25, + ACTIONS(1310), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189810,10 +189884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131228] = 3, + [131653] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189827,9 +189901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 25, + ACTIONS(1254), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189853,10 +189928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131274] = 3, + [131700] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189865,12 +189940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 25, + ACTIONS(1278), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -189879,6 +189955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189888,7 +189965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189896,53 +189972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131320] = 3, + [131747] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131366] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 13, + ACTIONS(1280), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189951,12 +189984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 25, + ACTIONS(1282), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -189965,6 +189999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189974,7 +190009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189982,10 +190016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131412] = 3, + [131794] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1284), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189994,12 +190028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 25, + ACTIONS(1286), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -190008,6 +190043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190017,7 +190053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190025,570 +190060,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131458] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6653), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6651), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131504] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6641), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6639), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131550] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131596] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131642] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131688] = 3, + [131841] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, - anon_sym_EQ, + ACTIONS(1288), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 24, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1290), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131734] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131780] = 4, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131888] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6722), 1, - sym_extglob_pattern, - ACTIONS(6466), 14, - anon_sym_EQ, + ACTIONS(1292), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6468), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131828] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6726), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6724), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131874] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6730), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6728), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131920] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131966] = 3, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131935] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, + ACTIONS(6862), 1, + sym__special_character, + STATE(2503), 1, + aux_sym__literal_repeat1, + ACTIONS(5435), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 24, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5437), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132012] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132058] = 3, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131986] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190597,12 +190206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 25, + ACTIONS(1298), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -190611,6 +190221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190620,7 +190231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190628,10 +190238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132104] = 3, + [132033] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190640,12 +190250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 25, + ACTIONS(1302), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -190654,6 +190265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190663,7 +190275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190671,152 +190282,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6734), 1, - anon_sym_EQ, - ACTIONS(6736), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6732), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [132198] = 7, + [132080] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(1248), 14, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5864), 5, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5867), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(5860), 6, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5869), 7, + ACTIONS(1250), 25, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5872), 13, - sym_variable_name, - sym_test_operator, - sym__brace_start, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132252] = 7, + [132127] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(1304), 14, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5864), 5, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5867), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(5860), 6, anon_sym_DOLLAR, sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5869), 7, + ACTIONS(1306), 25, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5872), 13, - sym_variable_name, - sym_test_operator, - sym__brace_start, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132306] = 5, + [132174] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6738), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 13, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190825,39 +190382,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5266), 23, + ACTIONS(1254), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132356] = 3, + [132221] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190866,12 +190426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 25, + ACTIONS(1310), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -190880,6 +190441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190889,7 +190451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190897,10 +190458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132402] = 3, + [132268] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190909,12 +190470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 25, + ACTIONS(1254), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -190923,6 +190485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190932,7 +190495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190940,57 +190502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132448] = 3, + [132315] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1332), 24, + ACTIONS(6864), 1, + aux_sym_concatenation_token1, + ACTIONS(6866), 1, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132494] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 12, + STATE(2551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191002,10 +190523,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5689), 24, + ACTIONS(1209), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191020,22 +190541,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132544] = 5, + [132368] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6738), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(5184), 13, + ACTIONS(6864), 1, + aux_sym_concatenation_token1, + ACTIONS(6868), 1, + sym__concat, + STATE(2551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191047,11 +190570,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5186), 23, + ACTIONS(1215), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191063,24 +190585,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132594] = 5, + [132421] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 12, + STATE(2551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6870), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191092,10 +190616,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5563), 24, + ACTIONS(1237), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191110,18 +190634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132644] = 3, + [132472] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + STATE(2549), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6864), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191135,9 +190664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 25, + ACTIONS(1233), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191152,7 +190680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -191161,10 +190688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132690] = 3, + [132523] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1264), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191177,10 +190704,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 25, + ACTIONS(1266), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191192,7 +190721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -191204,10 +190732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132736] = 3, + [132570] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(6862), 1, + sym__special_character, + STATE(2503), 1, + aux_sym__literal_repeat1, + ACTIONS(5699), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191219,17 +190751,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 25, + ACTIONS(5701), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191238,19 +190770,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132782] = 3, + [132621] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(6862), 1, + sym__special_character, + STATE(2503), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191262,17 +190797,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 25, + ACTIONS(4650), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191281,19 +190816,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132828] = 3, + [132672] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(6862), 1, + sym__special_character, + STATE(2503), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191305,17 +190843,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 25, + ACTIONS(5709), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191324,71 +190862,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132874] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [132930] = 5, + [132723] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(6862), 1, sym__special_character, - STATE(2786), 1, + STATE(2503), 1, aux_sym__literal_repeat1, - ACTIONS(5264), 12, + ACTIONS(4682), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191401,7 +190890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5266), 24, + ACTIONS(4684), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -191410,6 +190899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191426,54 +190916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132980] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6744), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6742), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133028] = 3, + [132774] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191486,10 +190932,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1254), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191501,7 +190949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -191513,10 +190960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133074] = 3, + [132821] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191529,10 +190976,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 25, + ACTIONS(1310), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191544,7 +190993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -191556,10 +191004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133120] = 3, + [132868] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191572,10 +191020,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1254), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191587,7 +191037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -191599,391 +191048,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133166] = 8, + [132915] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133222] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133280] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 22, + ACTIONS(6873), 1, + aux_sym_concatenation_token1, + ACTIONS(6875), 1, sym__concat, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133336] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6693), 14, - anon_sym_EQ, + STATE(2573), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6697), 22, - sym__concat, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1209), 22, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133384] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 22, - sym__concat, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133440] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132968] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6711), 24, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, sym__concat, + STATE(2514), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133486] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6770), 1, - anon_sym_EQ, - ACTIONS(6772), 1, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 32, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6768), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133558] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6788), 1, - sym__special_character, - STATE(2793), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5132), 24, + [133021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6102), 1, + aux_sym_concatenation_token1, + ACTIONS(6104), 1, + sym__concat, + STATE(2515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5439), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133608] = 3, + sym_word, + [133074] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6792), 14, + STATE(2569), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191998,9 +191212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6790), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1325), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -192022,15 +191235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [133654] = 5, + [133125] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 12, + ACTIONS(1235), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192042,9 +191250,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4282), 24, + ACTIONS(1237), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -192057,25 +191268,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133704] = 5, + [133172] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 12, + ACTIONS(6873), 1, + aux_sym_concatenation_token1, + ACTIONS(6877), 1, + sym__concat, + STATE(2573), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192087,10 +191300,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4309), 24, + ACTIONS(1215), 22, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -192102,29 +191316,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133754] = 5, + [133225] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(1231), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -192133,10 +191344,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5132), 24, + ACTIONS(1233), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -192150,6 +191361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -192158,10 +191370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133804] = 3, + [133272] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6665), 14, + ACTIONS(1111), 1, + aux_sym_concatenation_token1, + ACTIONS(6879), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192176,8 +191394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6667), 24, - sym__concat, + ACTIONS(1209), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192198,37 +191415,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133850] = 8, + [133325] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(1111), 1, + aux_sym_concatenation_token1, + ACTIONS(6881), 1, + sym__concat, + STATE(2079), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 22, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(1215), 22, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192246,54 +191462,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133906] = 18, + [133378] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(1280), 14, anon_sym_EQ, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP_AMP, - ACTIONS(6798), 1, anon_sym_PIPE, - ACTIONS(6800), 1, anon_sym_CARET, - ACTIONS(6802), 1, anon_sym_AMP, - ACTIONS(6810), 1, - anon_sym_QMARK, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6804), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6806), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6808), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 14, + anon_sym_STAR_STAR, + ACTIONS(1282), 25, sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192305,55 +191499,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, - [133982] = 19, + anon_sym_QMARK, + [133425] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP_AMP, - ACTIONS(6798), 1, + ACTIONS(1248), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6800), 1, anon_sym_CARET, - ACTIONS(6802), 1, anon_sym_AMP, - ACTIONS(6810), 1, - anon_sym_QMARK, - ACTIONS(6812), 1, - anon_sym_EQ, - ACTIONS(6814), 1, - anon_sym_EQ_TILDE, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6804), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6806), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6808), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + anon_sym_STAR_STAR, + ACTIONS(1250), 25, sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192365,48 +191543,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - [134060] = 16, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133472] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6883), 14, anon_sym_EQ, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6796), 1, - anon_sym_AMP_AMP, - ACTIONS(6798), 1, anon_sym_PIPE, - ACTIONS(6800), 1, anon_sym_CARET, - ACTIONS(6802), 1, anon_sym_AMP, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6804), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6806), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6808), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(6887), 23, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192419,48 +191587,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134132] = 15, + anon_sym_COLON, + [133521] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, + STATE(2573), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6889), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1237), 22, + sym_file_descriptor, sym_test_operator, - ACTIONS(6798), 1, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133572] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1288), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6800), 1, anon_sym_CARET, - ACTIONS(6802), 1, anon_sym_AMP, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6804), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6806), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6808), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 17, + anon_sym_STAR_STAR, + ACTIONS(1290), 25, sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192474,47 +191680,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134202] = 14, + [133619] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6800), 1, - anon_sym_CARET, - ACTIONS(6802), 1, - anon_sym_AMP, - ACTIONS(6611), 2, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6804), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6806), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6808), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 17, + anon_sym_STAR_STAR, + ACTIONS(1306), 25, sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192528,46 +191724,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134270] = 13, + [133666] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6802), 1, + ACTIONS(6892), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6804), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6894), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6611), 3, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [133713] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(6762), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 17, + anon_sym_STAR_STAR, + ACTIONS(1294), 25, sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192581,45 +191812,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134336] = 12, + [133760] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(1268), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1270), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133807] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4652), 14, + anon_sym_PIPE, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 4, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4654), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133854] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1256), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 17, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1258), 25, sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192633,42 +191943,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134400] = 11, + aux_sym_concatenation_token1, + [133901] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(1252), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6806), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6808), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 19, + anon_sym_STAR_STAR, + ACTIONS(1254), 25, sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192684,13 +191990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134462] = 3, + [133948] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(1231), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192705,7 +192013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6613), 24, + sym__special_character, + ACTIONS(1233), 24, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -192730,35 +192039,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134508] = 9, + [133995] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(1308), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6762), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 21, + anon_sym_STAR_STAR, + ACTIONS(1310), 25, sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192779,22 +192083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134566] = 7, + [134042] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192803,9 +192095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 22, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1254), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192826,19 +192127,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134620] = 6, + [134089] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(4686), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4688), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134136] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192849,9 +192185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 22, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1262), 25, sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192872,15 +192214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134672] = 5, + aux_sym_concatenation_token1, + [134183] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192894,9 +192232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 22, + anon_sym_STAR_STAR, + ACTIONS(1237), 25, sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192917,15 +192258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134722] = 5, + aux_sym_concatenation_token1, + [134230] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192939,9 +192276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 22, + anon_sym_STAR_STAR, + ACTIONS(1314), 25, sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192962,10 +192302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134772] = 3, + aux_sym_concatenation_token1, + [134277] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(1264), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192980,7 +192321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6613), 24, + ACTIONS(1266), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -193005,111 +192346,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134818] = 8, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [134324] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(2932), 1, - anon_sym_DQUOTE, - ACTIONS(6820), 1, - sym_variable_name, - STATE(4240), 1, - sym_string, - ACTIONS(6818), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6816), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 24, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6844), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5435), 14, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [134874] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(2932), 1, - anon_sym_DQUOTE, - ACTIONS(6820), 1, - sym_variable_name, - STATE(4240), 1, - sym_string, - ACTIONS(6818), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6816), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 24, - anon_sym_SEMI, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5437), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [134930] = 5, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134375] = 5, ACTIONS(71), 1, sym_comment, - STATE(2575), 1, + STATE(2499), 1, aux_sym_concatenation_repeat1, - ACTIONS(6713), 2, + ACTIONS(6844), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5130), 13, + ACTIONS(5439), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193118,12 +192410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 22, + ACTIONS(5441), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -193131,6 +192424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193138,7 +192432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -193146,15 +192439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134980] = 5, + [134426] = 3, ACTIONS(71), 1, sym_comment, - STATE(2576), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6713), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 13, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193167,9 +192455,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5136), 22, + ACTIONS(1274), 25, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -193183,6 +192474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -193191,75 +192483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135030] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6822), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - STATE(6494), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [135112] = 5, + [134473] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6472), 1, - anon_sym_RBRACK, - ACTIONS(6834), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(6896), 1, + sym_extglob_pattern, + ACTIONS(6808), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193274,7 +192503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(6810), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193295,12 +192525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135162] = 3, + [134522] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 15, + ACTIONS(6902), 1, + sym__concat, + ACTIONS(6900), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193315,9 +192548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 23, - sym_test_operator, + ACTIONS(6898), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -193337,59 +192570,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135208] = 21, + anon_sym_COLON, + [134571] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6908), 1, + sym__concat, + ACTIONS(6906), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6836), 1, - anon_sym_RPAREN_RPAREN, - STATE(6531), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6904), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193401,14 +192609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135290] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [134620] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_RBRACK, - ACTIONS(6838), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(1268), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193423,7 +192636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1270), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193444,102 +192658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135340] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2156), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135386] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135432] = 5, + [134667] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6840), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(1272), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193554,7 +192680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1274), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193575,12 +192702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135482] = 3, + aux_sym_concatenation_token1, + [134714] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1276), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193595,9 +192724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1278), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -193617,13 +192746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [135528] = 3, + aux_sym_concatenation_token1, + [134761] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 13, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193632,56 +192762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4439), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135574] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 25, + ACTIONS(1278), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -193689,73 +192778,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135620] = 21, + [134808] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1280), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6842), 1, - anon_sym_RPAREN_RPAREN, - STATE(6581), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1282), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193767,14 +192828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135702] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [134855] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym_RBRACK, - ACTIONS(6844), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(1284), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193789,7 +192856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1286), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193810,58 +192878,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135752] = 21, + aux_sym_concatenation_token1, + [134902] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6910), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6846), 1, - anon_sym_RPAREN_RPAREN, - STATE(6600), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6912), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193873,14 +192915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135834] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [134949] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6483), 1, - anon_sym_RBRACK, - ACTIONS(6848), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193895,7 +192944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1290), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193916,58 +192966,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135884] = 21, + aux_sym_concatenation_token1, + [134996] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6914), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6850), 1, - anon_sym_RPAREN_RPAREN, - STATE(6612), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6916), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193979,56 +193003,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135966] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135043] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6852), 1, - anon_sym_RPAREN_RPAREN, - STATE(6505), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1294), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194040,56 +193048,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136048] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135090] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6854), 1, - anon_sym_RPAREN_RPAREN, - STATE(6544), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6916), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194101,56 +193091,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136130] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135137] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6922), 1, + sym__concat, + ACTIONS(6920), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6856), 1, - anon_sym_RPAREN_RPAREN, - STATE(6566), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6918), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194162,56 +193138,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136212] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135186] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6928), 1, + sym__concat, + ACTIONS(6926), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6858), 1, - anon_sym_RPAREN_RPAREN, - STATE(6540), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6924), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194223,56 +193183,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136294] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135235] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6860), 1, - anon_sym_RPAREN_RPAREN, - STATE(6601), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1298), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194284,99 +193226,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136376] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2160), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2162), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [136422] = 21, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135282] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6862), 1, - anon_sym_RPAREN_RPAREN, - STATE(6606), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1302), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194388,56 +193270,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136504] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135329] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1248), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6864), 1, - anon_sym_RPAREN_RPAREN, - STATE(6450), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1250), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194449,56 +193314,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136586] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135376] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6866), 1, - anon_sym_RPAREN_RPAREN, - STATE(6560), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1306), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194510,56 +193358,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136668] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135423] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6868), 1, - anon_sym_RPAREN_RPAREN, - STATE(6616), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1254), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194571,56 +193402,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136750] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135470] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6870), 1, - anon_sym_RPAREN_RPAREN, - STATE(6548), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194632,56 +193446,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136832] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135517] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6872), 1, - anon_sym_RPAREN_RPAREN, - STATE(6459), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1254), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194693,56 +193490,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136914] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [135564] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6934), 1, + anon_sym_LBRACK, + ACTIONS(6932), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6874), 1, - anon_sym_RPAREN_RPAREN, - STATE(6508), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6930), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194754,56 +193536,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136996] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, anon_sym_QMARK, - ACTIONS(6876), 1, - anon_sym_RPAREN_RPAREN, - STATE(6530), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_COLON, + [135613] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2549), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6864), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5435), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5437), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135664] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2550), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6864), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5439), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5441), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135715] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2561), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6873), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5646), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5648), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135766] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2566), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6873), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5650), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5652), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135817] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6936), 1, + sym__special_character, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1320), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194815,10 +193766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137078] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135868] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 13, + ACTIONS(1280), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194827,13 +193787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4313), 25, + ACTIONS(1282), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -194841,73 +193803,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135915] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1284), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1286), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137124] = 21, + [135962] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2561), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6873), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1233), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136013] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6939), 1, + sym__special_character, + STATE(2490), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6878), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(700), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194919,56 +193946,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137206] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136064] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(4561), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4563), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136111] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5658), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5660), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136158] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1262), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136205] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6943), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6880), 1, - anon_sym_RPAREN_RPAREN, - STATE(6572), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6941), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194980,56 +194121,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137288] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [136251] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1276), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136297] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6945), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6882), 1, - anon_sym_RPAREN_RPAREN, - STATE(6603), 1, + STATE(6460), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195041,56 +194234,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137370] = 21, + [136379] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1235), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1237), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136425] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6985), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6884), 1, - anon_sym_RPAREN_RPAREN, - STATE(6626), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6983), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195102,56 +194312,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137452] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [136473] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1280), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136519] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6886), 1, + ACTIONS(6987), 1, anon_sym_RPAREN_RPAREN, - STATE(6526), 1, + STATE(6475), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195163,56 +194425,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137534] = 21, + [136601] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1284), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136647] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6888), 1, + ACTIONS(6989), 1, anon_sym_RPAREN_RPAREN, - STATE(6554), 1, + STATE(6568), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195224,56 +194529,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137616] = 21, + [136729] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6890), 1, + ACTIONS(6991), 1, anon_sym_RPAREN_RPAREN, - STATE(6596), 1, + STATE(6540), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195285,56 +194590,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137698] = 21, + [136811] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1288), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1290), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136857] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6892), 1, + ACTIONS(6993), 1, anon_sym_RPAREN_RPAREN, - STATE(6452), 1, + STATE(6534), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195346,56 +194694,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137780] = 21, + [136939] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6894), 1, + ACTIONS(6995), 1, anon_sym_RPAREN_RPAREN, - STATE(6467), 1, + STATE(6542), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195407,56 +194755,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137862] = 21, + [137021] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6896), 1, + ACTIONS(6997), 1, anon_sym_RPAREN_RPAREN, - STATE(6497), 1, + STATE(6619), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195468,56 +194816,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137944] = 21, + [137103] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1292), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137149] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6898), 1, + ACTIONS(6999), 1, anon_sym_RPAREN_RPAREN, - STATE(6507), 1, + STATE(6501), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195529,56 +194920,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138026] = 21, + [137231] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6900), 1, + ACTIONS(7001), 1, anon_sym_RPAREN_RPAREN, - STATE(6517), 1, + STATE(6485), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195590,117 +194981,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138108] = 21, + [137313] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1296), 14, anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6902), 1, - anon_sym_RPAREN_RPAREN, - STATE(6523), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [138190] = 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137359] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6904), 1, + ACTIONS(7003), 1, anon_sym_RPAREN_RPAREN, - STATE(6627), 1, + STATE(6458), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195712,56 +195085,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138272] = 21, + [137441] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1300), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137487] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6906), 1, + ACTIONS(7005), 1, anon_sym_RPAREN_RPAREN, - STATE(6550), 1, + STATE(6498), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195773,56 +195189,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138354] = 21, + [137569] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1248), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1250), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137615] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6908), 1, + ACTIONS(7007), 1, anon_sym_RPAREN_RPAREN, - STATE(6558), 1, + STATE(6557), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195834,56 +195293,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138436] = 21, + [137697] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137743] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6910), 1, + ACTIONS(7009), 1, anon_sym_RPAREN_RPAREN, - STATE(6564), 1, + STATE(6599), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195895,56 +195397,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138518] = 21, + [137825] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137871] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6912), 1, + ACTIONS(7011), 1, anon_sym_RPAREN_RPAREN, - STATE(6568), 1, + STATE(6625), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195956,56 +195501,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138600] = 21, + [137953] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6914), 1, + ACTIONS(7013), 1, anon_sym_RPAREN_RPAREN, - STATE(6586), 1, + STATE(6469), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196017,56 +195562,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138682] = 21, + [138035] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6916), 1, + ACTIONS(7015), 1, anon_sym_RPAREN_RPAREN, - STATE(6597), 1, + STATE(6573), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196078,56 +195623,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138764] = 21, + [138117] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6918), 1, + ACTIONS(7017), 1, anon_sym_RPAREN_RPAREN, - STATE(6613), 1, + STATE(6558), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196139,56 +195684,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138846] = 21, + [138199] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6920), 1, + ACTIONS(7019), 1, anon_sym_RPAREN_RPAREN, - STATE(6625), 1, + STATE(6482), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196200,56 +195745,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138928] = 21, + [138281] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7023), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6922), 1, - anon_sym_RPAREN_RPAREN, - STATE(6514), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(7021), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196261,56 +195779,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139010] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [138327] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6924), 1, + ACTIONS(7025), 1, anon_sym_RPAREN_RPAREN, - STATE(6483), 1, + STATE(6519), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196322,56 +195849,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139092] = 21, + [138409] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1264), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1266), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138455] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6926), 1, + ACTIONS(7027), 1, anon_sym_RPAREN_RPAREN, - STATE(6527), 1, + STATE(6571), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196383,99 +195953,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139174] = 3, + [138537] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, - anon_sym_EQ, + ACTIONS(1252), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6928), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [139220] = 21, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138583] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6932), 1, + ACTIONS(7029), 1, anon_sym_RPAREN_RPAREN, - STATE(6547), 1, + STATE(6455), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196487,56 +196057,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139302] = 21, + [138665] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138711] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6934), 1, + ACTIONS(7031), 1, anon_sym_RPAREN_RPAREN, - STATE(6557), 1, + STATE(6473), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196548,99 +196161,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139384] = 3, + [138793] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6938), 14, - anon_sym_EQ, + ACTIONS(1252), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6936), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [139430] = 21, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138839] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6940), 1, + ACTIONS(7033), 1, anon_sym_RPAREN_RPAREN, - STATE(6582), 1, + STATE(6493), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196652,56 +196265,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139512] = 21, + [138921] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6942), 1, + ACTIONS(7035), 1, anon_sym_RPAREN_RPAREN, - STATE(6598), 1, + STATE(6502), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196713,56 +196326,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139594] = 21, + [139003] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6944), 1, + ACTIONS(7037), 1, anon_sym_RPAREN_RPAREN, - STATE(6451), 1, + STATE(6513), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196774,56 +196387,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139676] = 21, + [139085] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6946), 1, + ACTIONS(7039), 1, anon_sym_RPAREN_RPAREN, - STATE(6454), 1, + STATE(6548), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196835,56 +196448,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139758] = 21, + [139167] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6948), 1, + ACTIONS(7041), 1, anon_sym_RPAREN_RPAREN, - STATE(6461), 1, + STATE(6563), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196896,56 +196509,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139840] = 21, + [139249] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6950), 1, + ACTIONS(7043), 1, anon_sym_RPAREN_RPAREN, - STATE(6471), 1, + STATE(6590), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196957,56 +196570,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139922] = 21, + [139331] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1292), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1294), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139377] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7045), 1, anon_sym_RPAREN_RPAREN, - STATE(6487), 1, + STATE(6608), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197018,56 +196674,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140004] = 21, + [139459] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7047), 1, + sym__special_character, + STATE(2677), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 12, anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1320), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139509] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(6826), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6954), 1, + ACTIONS(7050), 1, anon_sym_RPAREN_RPAREN, - STATE(6503), 1, + STATE(6623), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197079,56 +196780,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140086] = 21, + [139591] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7052), 1, + aux_sym_concatenation_token1, + ACTIONS(7054), 1, + sym__concat, + STATE(2685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1209), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139643] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6956), 1, + ACTIONS(7056), 1, anon_sym_RPAREN_RPAREN, - STATE(6506), 1, + STATE(6483), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197140,56 +196887,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140168] = 21, + [139725] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7052), 1, + aux_sym_concatenation_token1, + ACTIONS(7058), 1, + sym__concat, + STATE(2685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1215), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139777] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6958), 1, + ACTIONS(7060), 1, anon_sym_RPAREN_RPAREN, - STATE(6509), 1, + STATE(6587), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197201,56 +196994,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140250] = 21, + [139859] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6960), 1, + ACTIONS(7062), 1, anon_sym_RPAREN_RPAREN, - STATE(6516), 1, + STATE(6481), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197262,29 +197055,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140332] = 3, + [139941] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7064), 1, + anon_sym_RPAREN_RPAREN, + STATE(6550), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197296,99 +197116,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [140023] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2685), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7066), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1237), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [140378] = 21, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140073] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6966), 1, + ACTIONS(7069), 1, anon_sym_RPAREN_RPAREN, - STATE(6519), 1, + STATE(6491), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [140460] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6964), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197400,65 +197222,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [140506] = 21, + [140155] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6968), 1, + ACTIONS(7071), 1, anon_sym_RPAREN_RPAREN, - STATE(6522), 1, + STATE(6470), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197470,56 +197283,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140588] = 21, + [140237] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6970), 1, + ACTIONS(7073), 1, anon_sym_RPAREN_RPAREN, - STATE(6529), 1, + STATE(6545), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197531,56 +197344,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140670] = 21, + [140319] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6972), 1, + ACTIONS(7075), 1, anon_sym_RPAREN_RPAREN, - STATE(6536), 1, + STATE(6618), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197592,56 +197405,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140752] = 21, + [140401] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1268), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140447] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6974), 1, + ACTIONS(7077), 1, anon_sym_RPAREN_RPAREN, - STATE(6542), 1, + STATE(6477), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197653,56 +197509,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140834] = 21, + [140529] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7081), 10, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6976), 1, - anon_sym_RPAREN_RPAREN, - STATE(6549), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7079), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197714,56 +197546,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140916] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [140581] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6978), 1, + ACTIONS(7083), 1, anon_sym_RPAREN_RPAREN, - STATE(6552), 1, + STATE(6484), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197775,10 +197616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140998] = 3, + [140663] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197793,7 +197634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1254), 24, + ACTIONS(1298), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197818,74 +197659,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141044] = 5, + [140709] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6980), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 13, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7085), 1, + anon_sym_RPAREN_RPAREN, + STATE(6500), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1318), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141094] = 3, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [140791] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7087), 1, + anon_sym_RPAREN_RPAREN, + STATE(6527), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197897,62 +197781,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [140873] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_RPAREN_RPAREN, + STATE(6543), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [141140] = 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [140955] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7091), 1, + anon_sym_RPAREN_RPAREN, + STATE(6560), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1286), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141186] = 3, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [141037] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + STATE(2679), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7052), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197965,11 +197924,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 24, + ACTIONS(1233), 22, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -197983,7 +197940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -197992,29 +197948,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141232] = 3, + [141087] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7093), 1, + anon_sym_RPAREN_RPAREN, + STATE(6597), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [141169] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(1290), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7081), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7079), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198028,36 +198058,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [141278] = 3, + [141233] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7095), 1, + anon_sym_RPAREN_RPAREN, + STATE(6453), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198069,62 +198122,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [141315] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, + ACTIONS(6981), 1, anon_sym_QMARK, - anon_sym_COLON, - [141324] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_PIPE, + ACTIONS(7097), 1, + anon_sym_RPAREN_RPAREN, + STATE(6464), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1314), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141370] = 3, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [141397] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198139,7 +198201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 24, + ACTIONS(1302), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198164,72 +198226,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141416] = 3, + [141443] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(1282), 24, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7099), 1, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + STATE(6471), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [141462] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198241,19 +198287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [141508] = 3, + [141525] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(1260), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198266,9 +198303,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1262), 24, + ACTIONS(1262), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198282,6 +198318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -198293,10 +198330,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141554] = 3, + [141571] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7101), 1, + anon_sym_RPAREN_RPAREN, + STATE(6479), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [141653] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1235), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198309,9 +198407,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1270), 24, + ACTIONS(1237), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198325,6 +198422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -198336,29 +198434,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141600] = 3, + [141699] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7103), 1, + anon_sym_RPAREN_RPAREN, + STATE(6492), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6663), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198370,58 +198495,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [141646] = 17, + [141781] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6794), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6798), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6800), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6802), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6983), 1, - anon_sym_EQ, - ACTIONS(6756), 2, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7105), 1, + anon_sym_RPAREN_RPAREN, + STATE(6495), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6762), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 15, - sym__concat, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198433,32 +198556,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [141720] = 3, + [141863] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7107), 1, + anon_sym_RPAREN_RPAREN, + STATE(6499), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6987), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198470,59 +198617,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [141766] = 17, + [141945] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6832), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(6993), 1, - anon_sym_EQ, - ACTIONS(6746), 2, + ACTIONS(7109), 1, + anon_sym_RPAREN_RPAREN, + STATE(6507), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198534,12 +198678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [141840] = 3, + [142027] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1256), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198552,9 +198694,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1274), 24, + ACTIONS(1258), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198568,6 +198709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -198579,10 +198721,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141886] = 3, + [142073] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7111), 1, + anon_sym_RPAREN_RPAREN, + STATE(6512), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142155] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198595,9 +198798,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 24, + ACTIONS(1314), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198611,6 +198813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -198622,10 +198825,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141932] = 3, + [142201] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7113), 1, + anon_sym_RPAREN_RPAREN, + STATE(6523), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142283] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1264), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198638,9 +198902,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1282), 24, + ACTIONS(1266), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198654,6 +198917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -198665,53 +198929,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141978] = 3, + [142329] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7115), 1, + anon_sym_RPAREN_RPAREN, + STATE(6544), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1250), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142411] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7117), 1, + anon_sym_RPAREN_RPAREN, + STATE(6517), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [142024] = 3, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142493] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7119), 1, + anon_sym_RPAREN_RPAREN, + STATE(6555), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142575] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7081), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7079), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [142625] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7121), 1, + anon_sym_RPAREN_RPAREN, + STATE(6559), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142707] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198720,13 +199230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1258), 24, + ACTIONS(1274), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198735,6 +199245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -198743,7 +199254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -198751,10 +199261,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142070] = 3, + [142753] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7123), 1, + anon_sym_RPAREN_RPAREN, + STATE(6566), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142835] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1268), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198767,9 +199338,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 24, + ACTIONS(1270), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198783,6 +199353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -198794,10 +199365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142116] = 3, + [142881] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1272), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198810,9 +199381,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 24, + ACTIONS(1274), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198826,6 +199396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -198837,10 +199408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142162] = 3, + [142927] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(2082), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198849,41 +199420,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 24, + ACTIONS(2084), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142208] = 3, + [142973] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(7125), 1, + sym__special_character, + STATE(2677), 1, + aux_sym__literal_repeat1, + ACTIONS(5292), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198895,12 +199470,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1298), 24, + ACTIONS(5294), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198912,21 +199485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142254] = 3, + [143023] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1248), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198941,7 +199514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 24, + ACTIONS(1250), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198966,10 +199539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142300] = 3, + [143069] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1268), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198984,7 +199557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 24, + ACTIONS(1270), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199009,10 +199582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142346] = 3, + [143115] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(4652), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199021,83 +199594,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 24, + ACTIONS(4654), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142392] = 18, + [143161] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6831), 1, + anon_sym_RBRACK, + ACTIONS(7127), 1, + sym__concat, + ACTIONS(1221), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 14, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1325), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199109,47 +199662,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_COLON, - [142468] = 15, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143211] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1296), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6993), 1, - anon_sym_EQ, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 17, + anon_sym_STAR_STAR, + ACTIONS(1298), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199162,47 +199705,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142538] = 14, + [143257] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6776), 1, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6993), 1, - anon_sym_EQ, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 18, + anon_sym_STAR_STAR, + ACTIONS(1302), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199216,46 +199749,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142606] = 13, + [143303] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6778), 1, + ACTIONS(1280), 14, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6993), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 18, + anon_sym_STAR_STAR, + ACTIONS(1282), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199269,45 +199792,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142672] = 12, + [143349] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6780), 1, + ACTIONS(1280), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6991), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1282), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199321,44 +199835,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142736] = 11, + [143395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(7131), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6991), 18, + anon_sym_STAR_STAR, + ACTIONS(7129), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199372,41 +199878,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142798] = 10, + [143441] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(1284), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6991), 20, + anon_sym_STAR_STAR, + ACTIONS(1286), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199422,37 +199923,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142858] = 8, + [143487] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(1248), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6991), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1250), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199470,25 +199968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142914] = 7, + [143533] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 8, + ACTIONS(1248), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199497,9 +199983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6991), 22, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1250), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199520,19 +200014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142968] = 6, + [143579] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 10, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199543,9 +200028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6991), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1290), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199563,18 +200054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143020] = 5, + [143625] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 13, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199588,9 +200074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1306), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199608,16 +200097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143070] = 4, + [143671] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(7081), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199632,7 +200121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6991), 22, + ACTIONS(7079), 22, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -199655,10 +200144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [143118] = 3, + [143719] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(2137), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199671,11 +200160,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 24, + ACTIONS(2139), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199688,20 +200176,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143164] = 3, + [143765] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199716,9 +200205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1294), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199738,13 +200227,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143210] = 3, + [143811] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7143), 1, + sym_test_operator, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 21, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143869] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7145), 1, + sym__special_character, + STATE(2767), 1, + aux_sym__literal_repeat1, + ACTIONS(5292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199753,22 +200295,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 24, + ACTIONS(5294), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -199776,18 +200316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143256] = 3, + [143919] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199796,13 +200336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 24, + ACTIONS(1306), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199811,7 +200351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -199820,6 +200359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -199827,10 +200367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143302] = 3, + [143965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(4686), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199843,11 +200383,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 24, + ACTIONS(4688), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199860,20 +200399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143348] = 3, + [144011] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199882,13 +200422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 24, + ACTIONS(1278), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199897,7 +200437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -199906,6 +200445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -199913,29 +200453,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143394] = 3, + [144057] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, - anon_sym_EQ, + ACTIONS(1272), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1274), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [144103] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7135), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199953,32 +200541,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143440] = 3, + [144159] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7147), 1, + anon_sym_RPAREN_RPAREN, + STATE(6626), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199990,19 +200605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [143486] = 3, + [144241] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200017,9 +200623,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1310), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200039,144 +200645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143532] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6995), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1318), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [143582] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [143628] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [143674] = 3, + [144287] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(7151), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200191,7 +200666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 24, + ACTIONS(7149), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -200216,14 +200691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [143720] = 5, + [144333] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6998), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200238,8 +200709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1254), 24, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200259,58 +200731,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143770] = 21, + [144379] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6883), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7000), 1, - anon_sym_RPAREN_RPAREN, - STATE(6515), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6887), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200322,10 +200769,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143852] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144427] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 15, + ACTIONS(6598), 1, + anon_sym_RBRACK, + ACTIONS(7153), 1, + sym__concat, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200340,8 +200800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 23, + ACTIONS(1325), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -200362,17 +200821,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143898] = 5, + [144477] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7002), 1, - sym__special_character, - STATE(2793), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 22, + sym__concat, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144533] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1256), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200384,36 +200886,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 24, + ACTIONS(1258), 24, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143948] = 3, + [144579] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200422,13 +200926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 24, + ACTIONS(1278), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200437,15 +200940,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200453,10 +200957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143994] = 3, + [144625] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200465,13 +200969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 24, + ACTIONS(1254), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200480,7 +200984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200489,6 +200992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200496,10 +201000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144040] = 3, + [144671] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1284), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200508,13 +201012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 24, + ACTIONS(1286), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200523,15 +201026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200539,10 +201043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144086] = 3, + [144717] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200551,13 +201055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1250), 24, + ACTIONS(1310), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200566,7 +201070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200575,6 +201078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200582,10 +201086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144132] = 3, + [144763] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200594,13 +201098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1258), 24, + ACTIONS(1254), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200609,7 +201113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200618,6 +201121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200625,10 +201129,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144178] = 3, + [144809] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7081), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7079), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [144871] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7155), 1, + sym__special_character, + STATE(2767), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200637,22 +201196,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 24, + ACTIONS(1320), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200660,18 +201217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144224] = 3, + [144921] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1260), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200680,13 +201237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 24, + ACTIONS(1262), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200695,7 +201252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200704,6 +201260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200711,10 +201268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144270] = 3, + [144967] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1235), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200723,13 +201280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 24, + ACTIONS(1237), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200738,7 +201295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200747,6 +201303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200754,10 +201311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144316] = 3, + [145013] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200766,13 +201323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 24, + ACTIONS(1298), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200781,15 +201337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200797,284 +201354,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144362] = 21, + [145059] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1300), 13, anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7005), 1, - anon_sym_RPAREN_RPAREN, - STATE(6563), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144444] = 7, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145105] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 8, - anon_sym_EQ, + ACTIONS(7125), 1, + sym__special_character, + STATE(2677), 1, + aux_sym__literal_repeat1, + ACTIONS(5699), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6613), 21, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5701), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [144497] = 20, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145155] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7125), 1, + sym__special_character, + STATE(2677), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 12, anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_CARET, - ACTIONS(7027), 1, - anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7043), 1, - anon_sym_RBRACK, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7035), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5709), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(7037), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7017), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144576] = 20, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145205] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7043), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(1231), 13, anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144655] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7093), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1233), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [144714] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145251] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(1280), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201087,8 +201546,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1250), 24, + ACTIONS(1282), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -201113,54 +201573,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144759] = 20, + [145297] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6943), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7103), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6941), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201172,113 +201607,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144838] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(839), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144917] = 20, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145343] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(6892), 14, anon_sym_EQ, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - anon_sym_AMP_AMP, - ACTIONS(7023), 1, anon_sym_PIPE, - ACTIONS(7025), 1, anon_sym_CARET, - ACTIONS(7027), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7107), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7035), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + anon_sym_STAR_STAR, + ACTIONS(6894), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201290,69 +201650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144996] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7107), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7065), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145075] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [145389] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1284), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201365,8 +201675,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1298), 24, + ACTIONS(1286), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -201391,10 +201702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [145120] = 3, + [145435] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201407,8 +201718,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 24, + ACTIONS(1314), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -201433,10 +201745,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [145165] = 3, + [145481] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6985), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6983), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145537] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6709), 14, + ACTIONS(1231), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201451,7 +201811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6711), 23, + sym__special_character, + ACTIONS(1233), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -201472,57 +201833,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [145210] = 20, + [145583] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7109), 1, + ACTIONS(7158), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + STATE(6564), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201534,54 +201897,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145289] = 20, + [145665] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(849), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6985), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6983), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201593,54 +201936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145368] = 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145721] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(1288), 14, anon_sym_EQ, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - anon_sym_AMP_AMP, - ACTIONS(7023), 1, anon_sym_PIPE, - ACTIONS(7025), 1, anon_sym_CARET, - ACTIONS(7027), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7111), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7035), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + anon_sym_STAR_STAR, + ACTIONS(1290), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201652,93 +201979,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145447] = 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145767] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(1304), 14, anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, anon_sym_PIPE, - ACTIONS(7061), 1, anon_sym_CARET, - ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7111), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145526] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(1306), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 22, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201751,62 +202023,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [145583] = 20, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145813] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1252), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7113), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1254), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201818,12 +202065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145662] = 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145859] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7115), 1, - anon_sym_LBRACK, - ACTIONS(6647), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201838,7 +202092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6645), 22, + ACTIONS(1310), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -201858,57 +202114,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [145709] = 20, + anon_sym_COLON, + [145905] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(857), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6701), 1, + anon_sym_RBRACK, + ACTIONS(7160), 1, + sym__concat, + ACTIONS(1221), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1325), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201920,147 +202154,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145788] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7019), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_CARET, - ACTIONS(7027), 1, - anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7117), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7033), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7037), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7017), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145867] = 20, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [145955] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(1252), 14, anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, anon_sym_PIPE, - ACTIONS(7061), 1, anon_sym_CARET, - ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7117), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145946] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(1254), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 26, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202073,125 +202197,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [146001] = 20, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [146001] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7119), 1, + ACTIONS(7162), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + STATE(6541), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [146080] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(865), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202203,119 +202266,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146159] = 7, - ACTIONS(3), 1, + [146083] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(1280), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - [146212] = 20, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146129] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1288), 14, anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7121), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [146291] = 5, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1290), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146175] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7123), 1, + ACTIONS(7164), 1, sym__special_character, - STATE(2921), 1, + STATE(2836), 1, aux_sym__literal_repeat1, - ACTIONS(5387), 13, + ACTIONS(5435), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202327,9 +202371,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5389), 22, + ACTIONS(5437), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -202337,11 +202380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -202352,10 +202397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146340] = 3, + [146225] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(1248), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202369,7 +202414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 24, + ACTIONS(1250), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -202383,6 +202428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -202394,10 +202440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146385] = 3, + [146271] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 12, + ACTIONS(1288), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202409,10 +202455,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(2162), 25, + ACTIONS(1290), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -202427,7 +202474,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146317] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7125), 1, sym__special_character, + STATE(2677), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4650), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -202436,10 +202528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146430] = 3, + [146367] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 13, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202453,7 +202545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 24, + ACTIONS(1306), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -202467,6 +202559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -202478,22 +202571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146475] = 6, - ACTIONS(3), 1, + [146413] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7125), 1, + sym__special_character, + STATE(2677), 1, + aux_sym__literal_repeat1, + ACTIONS(4682), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4684), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146463] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7097), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 30, - anon_sym_SEMI, + ACTIONS(7081), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7079), 22, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -202507,79 +202656,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - [146526] = 5, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [146519] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7085), 33, - anon_sym_SEMI, + ACTIONS(6947), 1, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7166), 1, + anon_sym_RPAREN_RPAREN, + STATE(6593), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [146575] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7085), 33, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202591,19 +202725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + [146601] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -202611,13 +202742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [146624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7127), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7125), 36, - anon_sym_SEMI, + anon_sym_STAR_STAR, + ACTIONS(1294), 24, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -202633,30 +202760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [146669] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [146647] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 13, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202668,11 +202783,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5888), 24, + ACTIONS(1294), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -202684,44 +202799,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146714] = 8, + [146693] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7071), 2, + ACTIONS(6837), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 21, + anon_sym_STAR_STAR, + ACTIONS(6839), 24, + sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202739,13 +202851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146769] = 3, + [146739] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(7125), 1, + sym__special_character, + STATE(2677), 1, + aux_sym__literal_repeat1, + ACTIONS(5435), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202757,9 +202873,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5707), 24, + ACTIONS(5437), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -202773,9 +202888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -202784,10 +202899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146814] = 3, + [146789] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(6920), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -202802,8 +202917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6613), 23, - sym_test_operator, + ACTIONS(6918), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -202823,37 +202939,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146859] = 9, + anon_sym_COLON, + [146835] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(7081), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7079), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202871,25 +202986,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146916] = 7, + anon_sym_COLON, + [146889] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7037), 2, + ACTIONS(6737), 1, + anon_sym_RBRACK, + ACTIONS(7168), 1, + sym__concat, + ACTIONS(1221), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 8, + anon_sym_STAR_STAR, + ACTIONS(1325), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [146939] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6926), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -202898,8 +203046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 21, - sym_test_operator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6924), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202917,57 +203074,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146969] = 20, + anon_sym_COLON, + [146985] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7143), 1, + sym_test_operator, + ACTIONS(7170), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7174), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7176), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7178), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7180), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7182), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7129), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7186), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7188), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7037), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(7172), 15, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202979,10 +203131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147048] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147059] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202996,7 +203151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 24, + ACTIONS(1254), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -203010,6 +203165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -203021,10 +203177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147093] = 3, + [147105] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 14, + ACTIONS(7190), 1, + sym_extglob_pattern, + ACTIONS(6808), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203039,7 +203197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(6810), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -203063,10 +203221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147138] = 3, + [147153] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1308), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203080,7 +203238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 24, + ACTIONS(1310), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -203094,6 +203252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -203105,10 +203264,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147183] = 3, + [147199] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(7194), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7192), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [147245] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7196), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [147291] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203122,7 +203367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 24, + ACTIONS(1254), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -203136,6 +203381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -203147,40 +203393,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147228] = 5, + [147337] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7131), 1, - sym__special_character, - STATE(2850), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(6028), 2, anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6030), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(6033), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6026), 6, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1318), 23, + ACTIONS(6035), 7, sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6038), 13, + sym_variable_name, sym_test_operator, sym__brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [147391] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6028), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6030), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6033), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6026), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6035), 7, + sym_file_descriptor, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6038), 13, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -203191,43 +203487,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147277] = 14, + [147445] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7061), 1, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6611), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7200), 1, + anon_sym_RPAREN_RPAREN, + STATE(6613), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203239,15 +203548,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [147527] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(7204), 1, + anon_sym_EQ, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7202), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147344] = 3, + anon_sym_COLON, + [147599] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 12, + STATE(2679), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7052), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5435), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203259,10 +203624,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5270), 25, + ACTIONS(5437), 22, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -203274,7 +203639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -203282,23 +203646,58 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147389] = 6, + [147649] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, + STATE(2681), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7052), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5439), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5441), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [147699] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6910), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203309,8 +203708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 21, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6912), 24, + sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203331,42 +203737,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147440] = 13, + [147745] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7135), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7075), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6914), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203380,18 +203778,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147505] = 5, + [147801] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203405,8 +203802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, + anon_sym_STAR_STAR, + ACTIONS(1325), 24, + sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203427,83 +203828,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147554] = 3, + [147847] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 24, - sym_file_descriptor, - sym__concat, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7143), 1, sym_test_operator, - sym__brace_start, + ACTIONS(7174), 1, anon_sym_PIPE_PIPE, + ACTIONS(7176), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147599] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7178), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_CARET, + ACTIONS(7182), 1, + anon_sym_AMP, + ACTIONS(7206), 1, + anon_sym_QMARK, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(7186), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(7188), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 16, + ACTIONS(6916), 14, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203515,35 +203884,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147662] = 4, + [147923] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7134), 1, - anon_sym_EQ, - ACTIONS(6732), 13, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7143), 1, + sym_test_operator, + ACTIONS(7174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7176), 1, + anon_sym_AMP_AMP, + ACTIONS(7178), 1, anon_sym_PIPE, + ACTIONS(7180), 1, anon_sym_CARET, + ACTIONS(7182), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7206), 1, + anon_sym_QMARK, + ACTIONS(7208), 1, + anon_sym_EQ, + ACTIONS(7210), 1, + anon_sym_EQ_TILDE, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7135), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7186), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7188), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6736), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6916), 13, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203555,132 +203944,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [147709] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7136), 1, - sym__special_character, - STATE(2999), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5132), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147758] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147803] = 11, + [148001] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(7143), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7176), 1, + anon_sym_AMP_AMP, + ACTIONS(7178), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_CARET, + ACTIONS(7182), 1, + anon_sym_AMP, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7135), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7186), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7188), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 18, + ACTIONS(6916), 16, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203693,48 +203998,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147864] = 13, + [148073] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7027), 1, - anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(7143), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7178), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_CARET, + ACTIONS(7182), 1, + anon_sym_AMP, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7186), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7188), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7037), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7039), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6916), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203751,54 +204056,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147929] = 20, + [148143] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(799), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7143), 1, + sym_test_operator, + ACTIONS(7180), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7182), 1, anon_sym_AMP, - ACTIONS(6826), 1, + ACTIONS(6914), 2, anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + anon_sym_PIPE, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(7135), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7186), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7188), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6916), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203810,100 +204105,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148008] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148053] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148211] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 24, - sym_file_descriptor, - sym__concat, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7143), 1, sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7140), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7138), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7182), 1, + anon_sym_AMP, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7186), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7188), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6914), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203916,54 +204159,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148277] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7143), 1, + sym_test_operator, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7186), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7188), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [148143] = 9, + ACTIONS(6914), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6916), 17, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148341] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(7143), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 2, + ACTIONS(7135), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7186), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7188), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(6914), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 20, + ACTIONS(6916), 19, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203979,20 +204263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148200] = 5, + [148403] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(6914), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204006,8 +204283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, + anon_sym_STAR_STAR, + ACTIONS(6916), 24, + sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204028,10 +204309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148249] = 3, + [148449] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1256), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204040,12 +204321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 24, + ACTIONS(1258), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -204054,6 +204336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -204062,7 +204345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -204070,50 +204352,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148294] = 18, + [148495] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, + ACTIONS(7143), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7135), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(6914), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204125,12 +204392,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - [148369] = 3, + anon_sym_QMARK, + [148553] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 12, + ACTIONS(7212), 1, + sym__special_character, + STATE(2836), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204143,15 +204421,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4439), 25, + ACTIONS(1320), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -204160,7 +204438,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148603] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7145), 1, sym__special_character, + STATE(2767), 1, + aux_sym__literal_repeat1, + ACTIONS(5443), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5445), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -204169,10 +204491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148414] = 3, + [148653] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(6746), 1, + anon_sym_RBRACK, + ACTIONS(7215), 1, + sym__concat, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204187,7 +204513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6663), 23, + ACTIONS(1325), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -204208,51 +204534,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148459] = 17, + [148703] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(1231), 15, anon_sym_EQ, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - anon_sym_AMP_AMP, - ACTIONS(7023), 1, anon_sym_PIPE, - ACTIONS(7025), 1, anon_sym_CARET, - ACTIONS(7027), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7035), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1233), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204264,13 +204570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148532] = 3, + [148749] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 12, + ACTIONS(1264), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204282,10 +204594,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4313), 25, + ACTIONS(1266), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -204297,60 +204611,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148577] = 17, + [148795] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + ACTIONS(6914), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6916), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204362,57 +204660,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148650] = 3, - ACTIONS(71), 1, + [148849] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 12, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(2776), 1, + anon_sym_DQUOTE, + ACTIONS(7221), 1, + sym_variable_name, + STATE(4294), 1, + sym_string, + ACTIONS(7219), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7217), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5888), 25, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [148905] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, sym_file_descriptor, + ACTIONS(2776), 1, + anon_sym_DQUOTE, + ACTIONS(7221), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + STATE(4294), 1, + sym_string, + ACTIONS(7219), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7217), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 24, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148695] = 4, + [148961] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7142), 1, + ACTIONS(6780), 1, + anon_sym_RBRACK, + ACTIONS(7223), 1, sym__concat, - ACTIONS(6675), 14, + ACTIONS(1221), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204427,7 +204787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6673), 22, + ACTIONS(1325), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204447,15 +204808,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148742] = 4, + [149011] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7144), 1, - sym__concat, - ACTIONS(6705), 14, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204466,13 +204833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6703), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6916), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204493,52 +204856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [148834] = 3, + [149063] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(7227), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204553,8 +204874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6613), 23, - sym_test_operator, + ACTIONS(7225), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204574,57 +204896,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148879] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [149109] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7081), 1, + anon_sym_EQ, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [148924] = 3, + ACTIONS(7079), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [149183] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1262), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 1, + ACTIONS(7231), 1, + anon_sym_EQ, + ACTIONS(7233), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 36, + ACTIONS(7229), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -204661,52 +205043,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [148969] = 19, + [149277] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7146), 1, - anon_sym_EQ, - ACTIONS(6695), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(7081), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7079), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204718,47 +205086,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - [149046] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149337] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(1276), 14, anon_sym_EQ, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, anon_sym_PIPE, - ACTIONS(7061), 1, anon_sym_CARET, - ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + anon_sym_STAR_STAR, + ACTIONS(1278), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204771,57 +205128,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149117] = 20, + anon_sym_COLON, + [149383] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7081), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7129), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(7079), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204833,22 +205193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149196] = 7, + anon_sym_COLON, + [149459] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(7141), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7133), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(6914), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204857,7 +205211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 22, + sym__concat, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -204876,57 +205236,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149249] = 20, + [149509] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7133), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6914), 13, anon_sym_EQ, - ACTIONS(7152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, - anon_sym_AMP_AMP, - ACTIONS(7156), 1, anon_sym_PIPE, - ACTIONS(7158), 1, anon_sym_CARET, - ACTIONS(7160), 1, anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7176), 1, - anon_sym_EQ_TILDE, - ACTIONS(7178), 1, - anon_sym_QMARK, - ACTIONS(7180), 1, - anon_sym_COLON, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, - anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 22, + sym__concat, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149559] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(7081), 1, + anon_sym_EQ, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(7079), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204938,16 +205335,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149328] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149629] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 36, - anon_sym_SEMI, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(7081), 1, + anon_sym_EQ, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7079), 18, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149697] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7081), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7079), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204960,73 +205442,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149763] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6916), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149809] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1254), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149855] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(847), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [149373] = 19, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [149934] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7237), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7241), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7243), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7245), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6914), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7251), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149999] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 6, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150056] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7267), 1, anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, + anon_sym_PIPE, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_AMP, + ACTIONS(7287), 1, + anon_sym_RPAREN, + ACTIONS(7289), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7291), 1, anon_sym_QMARK, - ACTIONS(6746), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(7259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7184), 2, - anon_sym_RPAREN_RPAREN, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7269), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [150135] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 26, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(6752), 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150190] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7307), 1, + sym__concat, + ACTIONS(6906), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6904), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205038,10 +205831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149450] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150237] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(1280), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205055,7 +205857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 24, + ACTIONS(1282), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -205080,10 +205882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149495] = 3, + [150282] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(1248), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205097,7 +205899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 24, + ACTIONS(1250), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -205122,7 +205924,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149540] = 3, + [150327] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150382] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, + anon_sym_PIPE, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_AMP, + ACTIONS(7291), 1, + anon_sym_QMARK, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7283), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7285), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [150457] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1288), 13, @@ -205164,10 +206070,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149585] = 3, + [150502] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7237), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150559] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205181,7 +206135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 24, + ACTIONS(1306), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -205206,44 +206160,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149630] = 15, + [150604] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(6914), 1, anon_sym_EQ, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7239), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7311), 1, + anon_sym_AMP_AMP, + ACTIONS(7313), 1, + anon_sym_PIPE, + ACTIONS(7315), 1, + anon_sym_CARET, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6916), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205255,49 +206215,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149699] = 15, + [150679] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7319), 1, anon_sym_EQ, - ACTIONS(7059), 1, + ACTIONS(7323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7325), 1, + anon_sym_AMP_AMP, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(7347), 1, + anon_sym_EQ_TILDE, + ACTIONS(7349), 1, + anon_sym_QMARK, + ACTIONS(7351), 1, + anon_sym_COLON, + ACTIONS(7353), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(7321), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205309,109 +206276,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149768] = 8, - ACTIONS(3), 1, + [150758] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(7190), 1, - sym_variable_name, - STATE(4397), 1, - sym_string, - ACTIONS(7188), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7186), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 23, - anon_sym_SEMI, + ACTIONS(815), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [149823] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(7190), 1, - sym_variable_name, - STATE(4397), 1, - sym_string, - ACTIONS(7188), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7186), 8, + ACTIONS(6973), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [149878] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [150837] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 13, + ACTIONS(5954), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205423,9 +206350,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 24, + ACTIONS(5956), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -205439,6 +206365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -205450,16 +206377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149923] = 3, - ACTIONS(3), 1, + [150882] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205472,63 +206415,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150935] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7267), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, anon_sym_PIPE, + ACTIONS(7277), 1, anon_sym_CARET, + ACTIONS(7279), 1, anon_sym_AMP, + ACTIONS(7289), 1, + anon_sym_EQ_TILDE, + ACTIONS(7291), 1, + anon_sym_QMARK, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + [151012] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, + anon_sym_PIPE, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_AMP, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7259), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7283), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7285), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [149968] = 14, + ACTIONS(6916), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151083] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7025), 1, - anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7239), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(6611), 2, - anon_sym_EQ, + ACTIONS(7309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7311), 1, + anon_sym_AMP_AMP, + ACTIONS(7313), 1, anon_sym_PIPE, - ACTIONS(7015), 2, + ACTIONS(7315), 1, + anon_sym_CARET, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7355), 1, + anon_sym_EQ, + ACTIONS(7359), 1, + anon_sym_RBRACK, + ACTIONS(7361), 1, + anon_sym_EQ_TILDE, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(7357), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205540,15 +206595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150035] = 3, + [151162] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205560,11 +206610,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5270), 24, + ACTIONS(1294), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -205578,59 +206628,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [150080] = 16, - ACTIONS(3), 1, + [151207] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(7200), 1, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7275), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(7277), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(7279), 1, anon_sym_AMP, - ACTIONS(7206), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7192), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(7196), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7198), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7091), 4, + ACTIONS(7281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7194), 11, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205642,31 +206686,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150151] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151276] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_AMP, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(6914), 2, anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7283), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7285), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205680,61 +206741,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150202] = 20, + [151343] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_EQ, - ACTIONS(7152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, - anon_sym_AMP_AMP, - ACTIONS(7156), 1, - anon_sym_PIPE, - ACTIONS(7158), 1, - anon_sym_CARET, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, - anon_sym_EQ_TILDE, - ACTIONS(7178), 1, - anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(7265), 1, sym_test_operator, - ACTIONS(7208), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(7279), 1, + anon_sym_AMP, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6914), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205746,58 +206791,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150281] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151408] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7127), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7125), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7359), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7363), 1, + anon_sym_EQ, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7371), 1, anon_sym_PIPE, + ACTIONS(7373), 1, anon_sym_CARET, + ACTIONS(7375), 1, anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7391), 1, + anon_sym_EQ_TILDE, + ACTIONS(7393), 1, + anon_sym_QMARK, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [150326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7212), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7210), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205809,37 +206855,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151487] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7363), 1, + anon_sym_EQ, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7371), 1, anon_sym_PIPE, + ACTIONS(7373), 1, anon_sym_CARET, + ACTIONS(7375), 1, anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7391), 1, + anon_sym_EQ_TILDE, + ACTIONS(7393), 1, + anon_sym_QMARK, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(7397), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [150371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7216), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7214), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205851,50 +206914,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + [151566] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [150416] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7218), 1, - anon_sym_LBRACK, - ACTIONS(6647), 14, + ACTIONS(6914), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6645), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205908,40 +206962,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150463] = 8, + [151629] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7283), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7285), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(6914), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(6916), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205957,114 +207012,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150518] = 18, + [151690] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7011), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, - anon_sym_AMP_AMP, - ACTIONS(7226), 1, - anon_sym_PIPE, - ACTIONS(7228), 1, - anon_sym_CARET, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(7265), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [150593] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, - anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(6914), 6, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7228), 1, anon_sym_CARET, - ACTIONS(7230), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_QMARK, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7242), 1, - anon_sym_EQ, - ACTIONS(7244), 1, - anon_sym_EQ_TILDE, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(6916), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206076,100 +207054,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [150670] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7224), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7226), 1, - anon_sym_PIPE, - ACTIONS(7228), 1, - anon_sym_CARET, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7236), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150741] = 15, + [151747] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7399), 1, anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7226), 1, + ACTIONS(7229), 13, anon_sym_PIPE, - ACTIONS(7228), 1, anon_sym_CARET, - ACTIONS(7230), 1, anon_sym_AMP, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7009), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + anon_sym_STAR_STAR, + ACTIONS(7233), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206182,47 +207099,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150810] = 14, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151794] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(7228), 1, - anon_sym_CARET, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6611), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, + ACTIONS(7259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6914), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206236,45 +207145,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150877] = 13, + [151847] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7240), 1, + ACTIONS(1284), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 24, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6695), 2, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [151892] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7009), 3, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206288,44 +207234,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150942] = 12, + [151947] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(1268), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [151992] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(6883), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206339,41 +207324,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151005] = 11, + [152049] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7265), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7267), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, + anon_sym_PIPE, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_AMP, + ACTIONS(7289), 1, + anon_sym_EQ_TILDE, + ACTIONS(7291), 1, + anon_sym_QMARK, + ACTIONS(7401), 1, + anon_sym_RPAREN, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 18, + ACTIONS(7269), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206385,41 +207390,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152128] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5950), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5952), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151066] = 9, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152173] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(6883), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 20, + ACTIONS(6887), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206437,85 +207476,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151123] = 11, - ACTIONS(3), 1, + [152228] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7204), 1, - anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6883), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - [151184] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7035), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, + anon_sym_STAR_STAR, + ACTIONS(6887), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -206537,14 +207522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151239] = 5, + [152275] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(7403), 1, sym__special_character, - STATE(2921), 1, + STATE(3071), 1, aux_sym__literal_repeat1, - ACTIONS(1316), 13, + ACTIONS(5435), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -206556,9 +207541,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 22, + ACTIONS(5437), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -206566,6 +207550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -206581,15 +207566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [151288] = 5, + [152324] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(7261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206600,10 +207589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 21, + ACTIONS(6916), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -206625,15 +207611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151337] = 5, + [152375] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(6914), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206647,7 +207633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, + ACTIONS(6916), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -206669,16 +207655,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151386] = 3, - ACTIONS(3), 1, + [152424] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6914), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206691,36 +207691,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152473] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7237), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206733,36 +207738,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152528] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7237), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7251), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 10, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206775,74 +207783,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152579] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7405), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151521] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5705), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5707), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151566] = 4, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [152658] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7249), 1, - sym__concat, - ACTIONS(6653), 14, + ACTIONS(7407), 1, + anon_sym_LBRACK, + ACTIONS(6932), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206857,7 +207870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6651), 22, + ACTIONS(6930), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -206880,109 +207893,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151613] = 7, + [152705] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7237), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6914), 13, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5867), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5860), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5864), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5869), 7, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5872), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151666] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_PIPE, anon_sym_LT_LT, - ACTIONS(5867), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5860), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5864), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5869), 7, - sym_file_descriptor, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5872), 14, - sym_variable_name, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 21, sym_test_operator, - sym__brace_start, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151719] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7253), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7251), 34, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206995,36 +207929,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152754] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7267), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, anon_sym_PIPE, + ACTIONS(7277), 1, anon_sym_CARET, + ACTIONS(7279), 1, anon_sym_AMP, + ACTIONS(7289), 1, + anon_sym_EQ_TILDE, + ACTIONS(7291), 1, + anon_sym_QMARK, + ACTIONS(7409), 1, + anon_sym_RPAREN, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7255), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7269), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207036,33 +207996,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152833] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7411), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151811] = 4, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [152912] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7259), 1, + ACTIONS(7413), 1, sym__concat, - ACTIONS(6641), 14, + ACTIONS(6900), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207077,7 +208075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6639), 22, + ACTIONS(6898), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207100,16 +208098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151858] = 3, + [152959] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7295), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 28, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207136,35 +208144,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + [153012] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151903] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7261), 1, - anon_sym_EQ, - ACTIONS(6732), 13, + ACTIONS(7293), 30, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + [153063] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, anon_sym_STAR_STAR, - ACTIONS(6736), 23, - anon_sym_COMMA, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7293), 33, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207180,129 +208217,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [151950] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(7265), 1, - anon_sym_DQUOTE, - ACTIONS(7269), 1, - sym_variable_name, - STATE(4167), 1, - sym_string, - ACTIONS(7267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7263), 8, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 23, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + [153112] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7309), 1, anon_sym_PIPE_PIPE, + ACTIONS(7311), 1, anon_sym_AMP_AMP, + ACTIONS(7313), 1, anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7315), 1, + anon_sym_CARET, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7355), 1, + anon_sym_EQ, + ACTIONS(7361), 1, + anon_sym_EQ_TILDE, + ACTIONS(7415), 1, + anon_sym_RBRACK, + ACTIONS(7237), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7241), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7245), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7357), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [153191] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [152005] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(7265), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7269), 1, - sym_variable_name, - STATE(4167), 1, - sym_string, - ACTIONS(7267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7263), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153236] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4652), 12, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4654), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [152060] = 5, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153281] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(887), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207314,39 +208435,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152109] = 5, + [153360] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(7319), 1, anon_sym_EQ, + ACTIONS(7323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7325), 1, + anon_sym_AMP_AMP, + ACTIONS(7327), 1, anon_sym_PIPE, + ACTIONS(7329), 1, anon_sym_CARET, + ACTIONS(7331), 1, anon_sym_AMP, + ACTIONS(7345), 1, + anon_sym_STAR_STAR, + ACTIONS(7347), 1, + anon_sym_EQ_TILDE, + ACTIONS(7349), 1, + anon_sym_QMARK, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(7417), 1, + anon_sym_COLON, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7333), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7337), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7321), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207358,157 +208494,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [153439] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(827), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152158] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3348), 1, - anon_sym_DQUOTE, - ACTIONS(7275), 1, - sym_variable_name, - STATE(4355), 1, - sym_string, - ACTIONS(7273), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7271), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [152213] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3348), 1, - anon_sym_DQUOTE, - ACTIONS(7275), 1, - sym_variable_name, - STATE(4355), 1, - sym_string, - ACTIONS(7273), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7271), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [152268] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(807), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7105), 1, + ACTIONS(7235), 1, anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207520,54 +208553,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152347] = 20, + [153518] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7277), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7419), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207579,75 +208611,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152426] = 20, + [153595] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(5296), 12, anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7277), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5298), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [152505] = 5, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153640] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4153), 5, + ACTIONS(1252), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5856), 7, + ACTIONS(1254), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153685] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -207655,8 +208706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5858), 10, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 24, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -207666,10 +208726,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4161), 15, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153730] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4686), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4688), 25, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -207682,41 +208779,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152554] = 12, + [153775] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7311), 1, + anon_sym_AMP_AMP, + ACTIONS(7313), 1, + anon_sym_PIPE, + ACTIONS(7315), 1, + anon_sym_CARET, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7355), 1, + anon_sym_EQ, + ACTIONS(7361), 1, + anon_sym_EQ_TILDE, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + [153852] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(6914), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207730,57 +208877,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152617] = 20, + [153907] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7279), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7383), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6916), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207792,54 +208939,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152696] = 20, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [153982] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7391), 1, + anon_sym_EQ_TILDE, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(7395), 1, sym_test_operator, - ACTIONS(7242), 1, + ACTIONS(7421), 1, anon_sym_EQ, - ACTIONS(7244), 1, - anon_sym_EQ_TILDE, - ACTIONS(7283), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7383), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(6916), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207851,16 +208998,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152775] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK_RBRACK, + [154059] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7369), 1, + anon_sym_AMP_AMP, + ACTIONS(7371), 1, + anon_sym_PIPE, + ACTIONS(7373), 1, + anon_sym_CARET, + ACTIONS(7375), 1, + anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7377), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7381), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7383), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207873,36 +209051,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154130] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7371), 1, anon_sym_PIPE, + ACTIONS(7373), 1, anon_sym_CARET, + ACTIONS(7375), 1, anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [152820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207915,18 +209104,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154199] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6892), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -207935,34 +209126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [152865] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(6894), 23, sym_test_operator, - ACTIONS(6695), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207980,36 +209147,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152922] = 8, + [154244] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(7373), 1, + anon_sym_CARET, + ACTIONS(7375), 1, + anon_sym_AMP, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 2, + ACTIONS(6914), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7377), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7381), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, - sym_test_operator, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208023,23 +209200,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152977] = 3, - ACTIONS(3), 1, + [154311] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7375), 1, + anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7377), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7381), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7383), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6914), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208052,53 +209251,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154376] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [153022] = 8, + ACTIONS(6914), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6916), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154439] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 2, + ACTIONS(7379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7381), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(6914), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, - sym_test_operator, + ACTIONS(6916), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208114,59 +209353,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153077] = 20, + [154500] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7311), 1, + anon_sym_AMP_AMP, + ACTIONS(7313), 1, + anon_sym_PIPE, + ACTIONS(7315), 1, + anon_sym_CARET, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7355), 1, + anon_sym_EQ, + ACTIONS(7361), 1, + anon_sym_EQ_TILDE, + ACTIONS(7423), 1, + anon_sym_RBRACK, + ACTIONS(7237), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7241), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7243), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7245), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7357), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [154579] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7363), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(7391), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(7395), 1, sym_test_operator, - ACTIONS(7285), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(7423), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208178,34 +209474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [153156] = 9, + [154658] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7395), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(7385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(6914), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, + ACTIONS(6916), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208223,35 +209519,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153213] = 8, + [154715] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(6914), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6916), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -208270,35 +209565,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153268] = 8, + [154768] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(6914), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6916), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -208317,15 +209610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153323] = 4, + [154819] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7287), 1, - sym__concat, - ACTIONS(6675), 14, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6914), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208339,10 +209635,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6916), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154868] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(6673), 22, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6914), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208360,15 +209698,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153370] = 4, + [154917] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7289), 1, + ACTIONS(5296), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5298), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [154962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [155007] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7425), 1, sym__concat, - ACTIONS(6705), 14, + ACTIONS(6920), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208383,7 +209805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6703), 22, + ACTIONS(6918), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208403,35 +209825,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153417] = 8, + [155054] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(1252), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [155099] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(6883), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 21, + ACTIONS(6887), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -208450,53 +209914,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [153472] = 18, + [155154] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7363), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7178), 1, + ACTIONS(7391), 1, + anon_sym_EQ_TILDE, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(7395), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7415), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208508,54 +209976,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [153547] = 19, + [155233] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7319), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7323), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(7347), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(7349), 1, anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(7353), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7427), 1, + anon_sym_COLON, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(7321), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208567,47 +210035,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_COLON, - [153624] = 16, + [155312] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7429), 1, + sym__concat, + ACTIONS(6926), 14, anon_sym_EQ, - ACTIONS(7154), 1, - anon_sym_AMP_AMP, - ACTIONS(7156), 1, anon_sym_PIPE, - ACTIONS(7158), 1, anon_sym_CARET, - ACTIONS(7160), 1, anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7164), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + anon_sym_STAR_STAR, + ACTIONS(6924), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208620,47 +210070,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [153695] = 15, + [155359] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1231), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1233), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [155404] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7156), 1, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7431), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208672,48 +210179,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153764] = 14, + [155483] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7158), 1, - anon_sym_CARET, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(6611), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(6914), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208727,45 +210227,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [153831] = 13, - ACTIONS(71), 1, + [155546] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3418), 1, + anon_sym_DQUOTE, + ACTIONS(7437), 1, + sym_variable_name, + STATE(4497), 1, + sym_string, + ACTIONS(7435), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7433), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7164), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 16, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [155601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7293), 33, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208778,45 +210302,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153896] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 16, + [155650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208829,42 +210343,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153959] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7164), 2, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 18, + anon_sym_STAR_STAR, + [155695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208877,40 +210385,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154020] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7168), 2, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + anon_sym_STAR_STAR, + [155740] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7439), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 20, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208922,31 +210464,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [155819] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7441), 1, + sym__special_character, + STATE(2960), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1320), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154077] = 7, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [155868] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(6910), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208955,8 +210520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6912), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208974,34 +210547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154130] = 6, - ACTIONS(71), 1, + [155913] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(1290), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6613), 21, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209014,38 +210572,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154181] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [155958] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(837), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209057,39 +210651,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [156037] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1256), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1258), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154230] = 5, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [156082] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7444), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209101,23 +210752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154279] = 5, + [156161] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7291), 1, - sym__special_character, - STATE(2850), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(1312), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -209129,9 +210767,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 23, + ACTIONS(1314), 24, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -209143,38 +210783,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [154328] = 4, + [156206] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7293), 1, - sym__concat, - ACTIONS(6653), 14, + ACTIONS(857), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6651), 22, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [156285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -209189,20 +210875,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [154375] = 4, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [156330] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7295), 1, - sym__concat, - ACTIONS(6641), 14, + ACTIONS(6837), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209217,7 +210913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6639), 22, + ACTIONS(6839), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -209237,52 +210934,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154422] = 15, - ACTIONS(3), 1, + [156375] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + ACTIONS(7170), 1, + anon_sym_EQ, + ACTIONS(7367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7369), 1, + anon_sym_AMP_AMP, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7389), 1, + anon_sym_STAR_STAR, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7379), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7381), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7198), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7097), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 13, + ACTIONS(7172), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 36, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209294,48 +211014,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154491] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6983), 1, - anon_sym_EQ, - ACTIONS(7152), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7158), 1, anon_sym_CARET, - ACTIONS(7160), 1, anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + anon_sym_STAR_STAR, + [156493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209347,57 +211056,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154564] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(815), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + [156538] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1264), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1266), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [156583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209409,113 +211140,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154643] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7297), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [154722] = 20, + anon_sym_STAR_STAR, + [156628] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7309), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7311), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7313), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7315), 1, anon_sym_CARET, - ACTIONS(7027), 1, - anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(7317), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7299), 1, + ACTIONS(7355), 1, + anon_sym_EQ, + ACTIONS(7361), 1, + anon_sym_EQ_TILDE, + ACTIONS(7446), 1, anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(7357), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209527,54 +211220,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154801] = 20, + [156707] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(7239), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(7299), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(7315), 1, + anon_sym_CARET, + ACTIONS(6914), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209586,46 +211268,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154880] = 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, + ACTIONS(7450), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, - anon_sym_PIPE, - ACTIONS(7202), 1, - anon_sym_CARET, - ACTIONS(7204), 1, - anon_sym_AMP, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7198), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 15, + ACTIONS(7448), 36, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209639,43 +211296,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_DASHo, - [154947] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7202), 1, anon_sym_CARET, - ACTIONS(7204), 1, anon_sym_AMP, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7089), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 17, + anon_sym_STAR_STAR, + [156819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 36, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209691,113 +211340,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - [155012] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7301), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [155091] = 20, + anon_sym_STAR_STAR, + [156864] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7309), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(7311), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(7313), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(7315), 1, anon_sym_CARET, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7317), 1, anon_sym_QMARK, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7242), 1, + ACTIONS(7355), 1, anon_sym_EQ, - ACTIONS(7244), 1, + ACTIONS(7361), 1, anon_sym_EQ_TILDE, - ACTIONS(7303), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(7452), 1, + anon_sym_RBRACK, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(7357), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209809,54 +211416,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155170] = 20, + [156943] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7363), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(7391), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(7395), 1, sym_test_operator, - ACTIONS(7305), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(7452), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209868,34 +211475,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155249] = 9, + [157022] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7311), 1, + anon_sym_AMP_AMP, + ACTIONS(7313), 1, + anon_sym_PIPE, + ACTIONS(7315), 1, + anon_sym_CARET, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7241), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7243), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7245), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 20, + ACTIONS(6916), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209908,41 +211527,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [155306] = 8, + [157093] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(7263), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7267), 1, + anon_sym_EQ, + ACTIONS(7271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, + anon_sym_PIPE, + ACTIONS(7277), 1, + anon_sym_CARET, + ACTIONS(7279), 1, + anon_sym_AMP, + ACTIONS(7289), 1, + anon_sym_EQ_TILDE, + ACTIONS(7291), 1, + anon_sym_QMARK, + ACTIONS(7454), 1, + anon_sym_RPAREN, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7259), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7283), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7285), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, - sym_test_operator, + ACTIONS(7269), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209954,46 +211589,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [155361] = 3, + [157172] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 12, + ACTIONS(6028), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6033), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6026), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1225), 25, + ACTIONS(6030), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6035), 7, sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6038), 14, sym_variable_name, sym_test_operator, sym__brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157225] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6028), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6033), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6026), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6030), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6035), 7, + sym_file_descriptor, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6038), 14, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -210005,33 +211681,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155406] = 8, + [157278] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7456), 1, + anon_sym_LBRACK, + ACTIONS(6932), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(6930), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210049,57 +211721,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [155461] = 20, + [157325] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(823), 1, + ACTIONS(865), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7105), 1, + ACTIONS(7235), 1, anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6971), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210111,34 +211783,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155540] = 9, + [157404] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(6914), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210159,54 +211830,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [155597] = 20, + [157459] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, - anon_sym_AMP_AMP, - ACTIONS(7226), 1, - anon_sym_PIPE, - ACTIONS(7228), 1, - anon_sym_CARET, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(7242), 1, - anon_sym_EQ, - ACTIONS(7244), 1, - anon_sym_EQ_TILDE, - ACTIONS(7307), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(6914), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6916), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210218,41 +211873,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155676] = 12, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [157520] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7469), 1, + anon_sym_LT_LT_LT, + ACTIONS(7474), 1, + sym_file_descriptor, + ACTIONS(7477), 1, + sym_variable_name, + STATE(6628), 1, + sym_subscript, + ACTIONS(7466), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(7463), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3682), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(7458), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7460), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(7472), 13, + sym_test_operator, + sym__brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157583] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7202), 1, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7313), 1, + anon_sym_PIPE, + ACTIONS(7315), 1, anon_sym_CARET, - ACTIONS(7204), 1, - anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7243), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7245), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 18, + ACTIONS(6916), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [157652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 36, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210269,48 +212011,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASHa, anon_sym_PIPE, - [155739] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6983), 1, - anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, - anon_sym_AMP_AMP, - ACTIONS(7226), 1, - anon_sym_PIPE, - ACTIONS(7228), 1, anon_sym_CARET, - ACTIONS(7230), 1, anon_sym_AMP, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + anon_sym_STAR_STAR, + [157697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210322,57 +212048,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [155812] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7019), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7025), 1, anon_sym_CARET, - ACTIONS(7027), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7309), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + anon_sym_STAR_STAR, + [157742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210384,42 +212090,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155891] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7311), 1, - sym__special_character, - STATE(2999), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [157787] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4251), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1318), 23, + ACTIONS(5929), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5931), 10, sym_file_descriptor, - sym_test_operator, - sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4265), 15, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -210428,139 +212155,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155940] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6665), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6667), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [155985] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7035), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7037), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 21, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156040] = 18, + [157836] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7363), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7047), 1, + ACTIONS(7391), 1, + anon_sym_EQ_TILDE, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(7395), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7446), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210572,54 +212214,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [156115] = 19, + [157915] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(7319), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7323), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, + ACTIONS(7347), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(7349), 1, anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(7353), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(7321), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210631,169 +212273,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [156192] = 20, + [157994] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_EQ, - ACTIONS(7152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, - anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7482), 1, + sym__special_character, + STATE(2997), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 12, anon_sym_PIPE, - ACTIONS(7158), 1, - anon_sym_CARET, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7176), 1, - anon_sym_EQ_TILDE, - ACTIONS(7178), 1, - anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(7314), 1, - anon_sym_COLON, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7164), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1320), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7150), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [156271] = 16, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [158043] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7170), 1, anon_sym_EQ, - ACTIONS(7021), 1, - anon_sym_AMP_AMP, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7239), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(7255), 1, sym_test_operator, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7031), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7035), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7037), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156342] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(7309), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(7311), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(7313), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(7315), 1, anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7309), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(7172), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210805,52 +212370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156421] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [156466] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158116] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 12, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -210862,10 +212388,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(2158), 25, + ACTIONS(1298), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -210877,22 +212404,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156511] = 3, + [158161] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -210906,7 +212432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 24, + ACTIONS(1302), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -210931,54 +212457,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156556] = 20, + [158206] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7309), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7311), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7313), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7315), 1, anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6826), 1, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7355), 1, anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7361), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7316), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(7485), 1, + anon_sym_RBRACK, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7357), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210990,38 +212516,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156635] = 11, + [158285] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7031), 2, + ACTIONS(1221), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7035), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 18, + anon_sym_STAR_STAR, + ACTIONS(1325), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211037,57 +212553,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156696] = 20, + [158330] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7309), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(7311), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(7313), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(7315), 1, anon_sym_CARET, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7317), 1, anon_sym_QMARK, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7242), 1, + ACTIONS(7355), 1, anon_sym_EQ, - ACTIONS(7244), 1, + ACTIONS(7361), 1, anon_sym_EQ_TILDE, - ACTIONS(7318), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(7397), 1, + anon_sym_RBRACK, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(7357), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211099,33 +212617,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156775] = 8, + [158409] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7487), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, - sym_test_operator, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211137,19 +212676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156830] = 3, + [158488] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1260), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -211163,7 +212693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 24, + ACTIONS(1262), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -211188,54 +212718,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156875] = 20, - ACTIONS(71), 1, + [158533] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7491), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7489), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7158), 1, anon_sym_CARET, - ACTIONS(7160), 1, anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7176), 1, - anon_sym_EQ_TILDE, - ACTIONS(7178), 1, - anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(7320), 1, - anon_sym_COLON, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + anon_sym_STAR_STAR, + [158578] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7497), 1, + anon_sym_PIPE, + ACTIONS(7499), 1, + anon_sym_CARET, + ACTIONS(7501), 1, + anon_sym_AMP, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7493), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7495), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7301), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7505), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7293), 13, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211247,29 +212814,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156954] = 4, + [158647] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7015), 2, + ACTIONS(7345), 1, + anon_sym_STAR_STAR, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6693), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6697), 21, - sym_test_operator, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211287,57 +212859,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157001] = 20, + anon_sym_COLON, + [158704] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1231), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1233), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [158749] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7507), 1, + sym__concat, + ACTIONS(6900), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(6898), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211349,19 +212938,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157080] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158796] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(7509), 1, + sym__concat, + ACTIONS(6906), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -211372,8 +212963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 21, - sym_test_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6904), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211394,34 +212990,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157131] = 9, + [158843] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(6914), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 19, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211441,52 +213036,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157187] = 19, + anon_sym_COLON, + [158898] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6914), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7323), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7349), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6916), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211498,44 +213092,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157263] = 15, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [158973] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7319), 1, anon_sym_EQ, - ACTIONS(7368), 1, + ACTIONS(7323), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7347), 1, + anon_sym_EQ_TILDE, + ACTIONS(7349), 1, + anon_sym_QMARK, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 15, + ACTIONS(6916), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211547,46 +213151,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157331] = 14, + anon_sym_COLON, + [159050] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7170), 1, anon_sym_EQ, - ACTIONS(7370), 1, + ACTIONS(7263), 1, + anon_sym_STAR_STAR, + ACTIONS(7265), 1, + sym_test_operator, + ACTIONS(7271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7273), 1, + anon_sym_AMP_AMP, + ACTIONS(7275), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7277), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7279), 1, anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7257), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7259), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7283), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7285), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7261), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(7172), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211598,57 +213205,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157397] = 19, + [159123] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6856), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6914), 1, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6916), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211660,82 +213259,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157473] = 3, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [159194] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, - anon_sym_EQ, + ACTIONS(1231), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6928), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1233), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157517] = 13, - ACTIONS(71), 1, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159239] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7303), 1, anon_sym_STAR_STAR, - ACTIONS(6993), 2, - anon_sym_EQ, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7497), 1, anon_sym_PIPE, - ACTIONS(7366), 2, + ACTIONS(7499), 1, + anon_sym_CARET, + ACTIONS(7501), 1, + anon_sym_AMP, + ACTIONS(7295), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7378), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7380), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7495), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(7505), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7293), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211748,56 +213357,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157581] = 19, + anon_sym_DASHo, + [159306] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6858), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7511), 1, + sym__special_character, + STATE(2997), 1, + aux_sym__literal_repeat1, + ACTIONS(5435), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5437), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159355] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7513), 1, + anon_sym_EQ, + ACTIONS(7229), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(7233), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211809,27 +213436,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157657] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [159402] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6938), 14, - anon_sym_EQ, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7497), 1, anon_sym_PIPE, + ACTIONS(7499), 1, anon_sym_CARET, + ACTIONS(7501), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7297), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7299), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6936), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7505), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7293), 17, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211842,60 +213494,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, + anon_sym_DASHa, + [159467] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3418), 1, + anon_sym_DQUOTE, + ACTIONS(7437), 1, + sym_variable_name, + STATE(4497), 1, + sym_string, + ACTIONS(7435), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7433), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - [157701] = 19, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [159522] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7515), 1, + sym__special_character, + STATE(2960), 1, + aux_sym__literal_repeat1, + ACTIONS(5646), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5648), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159571] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211907,40 +213637,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157777] = 12, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [159640] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7374), 1, + ACTIONS(7329), 1, + anon_sym_CARET, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(6914), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6993), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7386), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211954,55 +213692,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157839] = 19, + anon_sym_COLON, + [159707] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6862), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7319), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7323), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7347), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7349), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(7517), 1, + anon_sym_COLON, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7321), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212014,27 +213754,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157915] = 3, + [159786] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7331), 1, anon_sym_AMP, + ACTIONS(7345), 1, + anon_sym_STAR_STAR, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7333), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7337), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6914), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212048,46 +213803,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157959] = 11, + anon_sym_COLON, + [159851] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, + ACTIONS(6914), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6991), 16, + ACTIONS(6916), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212101,55 +213854,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158019] = 19, + anon_sym_COLON, + [159914] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6914), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6916), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212161,27 +213900,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158095] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [159975] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7345), 1, + anon_sym_STAR_STAR, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6914), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212199,39 +213952,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158139] = 10, + anon_sym_COLON, + [160032] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7378), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7380), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, + ACTIONS(6914), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6991), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212247,92 +213996,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158197] = 19, - ACTIONS(71), 1, + anon_sym_COLON, + [160085] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(6866), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7499), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7501), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7295), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [158273] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7505), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(6991), 20, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7293), 18, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212345,60 +214048,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [158327] = 19, + anon_sym_DASHa, + anon_sym_PIPE, + [160148] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6868), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7519), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212410,31 +214111,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158403] = 7, - ACTIONS(71), 1, + [160227] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7523), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7386), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6991), 20, + ACTIONS(7521), 34, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212447,84 +214134,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [158455] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6870), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [158531] = 6, + anon_sym_STAR_STAR, + [160274] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7386), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 10, + ACTIONS(6914), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212535,7 +214177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6991), 20, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212553,55 +214196,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158581] = 19, + anon_sym_COLON, + [160325] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6872), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7345), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6914), 13, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212613,15 +214234,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158657] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [160374] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 13, + ACTIONS(6914), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212635,7 +214265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 20, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212653,55 +214284,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158705] = 19, + anon_sym_COLON, + [160423] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6874), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212713,13 +214325,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158781] = 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [160478] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(7525), 1, + sym__concat, + ACTIONS(6920), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212734,7 +214354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6991), 20, + ACTIONS(6918), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212755,52 +214377,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158827] = 19, + [160525] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6876), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7527), 1, + sym__concat, + ACTIONS(6926), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6924), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212812,105 +214411,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158903] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7400), 1, - anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7392), 2, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7394), 2, anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7402), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7406), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7101), 13, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_RPAREN, - [158971] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160572] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6878), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7170), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7323), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7172), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212922,44 +214473,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159047] = 14, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [160645] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3237), 1, + anon_sym_DQUOTE, + ACTIONS(7533), 1, + sym_variable_name, + STATE(4344), 1, + sym_string, + ACTIONS(7531), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7529), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7400), 1, anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7394), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7402), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, - anon_sym_PLUS, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [160700] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3237), 1, + anon_sym_DQUOTE, + ACTIONS(7533), 1, + sym_variable_name, + STATE(4344), 1, + sym_string, + ACTIONS(7531), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7529), 8, anon_sym_DASH, - ACTIONS(7412), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7101), 15, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [160755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7537), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7535), 36, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212973,99 +214593,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_DASHo, - anon_sym_RPAREN, - [159113] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6880), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [159189] = 13, + anon_sym_STAR_STAR, + [160800] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7400), 1, - anon_sym_AMP, - ACTIONS(7414), 1, + ACTIONS(7253), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7402), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(6914), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_COMMA, + ACTIONS(6916), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213078,56 +214648,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [159253] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6882), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + [160849] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7345), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213139,40 +214694,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159329] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7085), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7400), 1, - anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7402), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7406), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [160904] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7501), 1, + anon_sym_AMP, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(7299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(7503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, + ACTIONS(7505), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7293), 19, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -213189,53 +214751,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_RPAREN, - [159393] = 19, + anon_sym_PIPE, + anon_sym_CARET, + [160965] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6884), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(869), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213247,52 +214812,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159469] = 19, + [161044] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6886), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(2082), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2084), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [161089] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6914), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6916), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213304,39 +214887,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159545] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7400), 1, - anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7085), 2, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7402), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7406), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161134] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(7299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(7503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, + ACTIONS(7505), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7293), 20, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -213353,53 +214942,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_RPAREN, - [159607] = 19, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [161193] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6888), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7363), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7391), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(7485), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213411,96 +215004,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159683] = 19, + [161272] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6890), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6914), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [159759] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7414), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(6916), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7402), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7406), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7408), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7085), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213513,113 +215038,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [159819] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6892), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, + [161317] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2137), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2139), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [159895] = 19, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [161362] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6894), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7319), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7323), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7325), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7327), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7329), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7345), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7347), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7349), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7353), 1, + sym_test_operator, + ACTIONS(7539), 1, + anon_sym_COLON, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7333), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7335), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7337), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7321), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213631,21 +215147,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159971] = 8, + [161441] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3512), 1, + ACTIONS(7543), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(7547), 1, sym_variable_name, - STATE(4218), 1, + STATE(4329), 1, sym_string, - ACTIONS(7418), 2, + ACTIONS(7545), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(7541), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -213654,7 +215170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 22, + ACTIONS(1183), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -213664,7 +215180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -213675,54 +215194,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + [161496] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [160025] = 19, + sym_word, + ACTIONS(1278), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [161541] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6896), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7549), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213734,36 +215295,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160101] = 10, + [161620] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7404), 2, + ACTIONS(1235), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7408), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1237), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(7410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7085), 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [161665] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_STAR_STAR, + ACTIONS(7497), 1, anon_sym_PIPE, + ACTIONS(7499), 1, anon_sym_CARET, + ACTIONS(7501), 1, anon_sym_AMP, - ACTIONS(7412), 3, + ACTIONS(7555), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7297), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7299), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7493), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7495), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7503), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7551), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 19, + ACTIONS(7505), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7553), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [161736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7559), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7557), 36, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213779,55 +215417,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RPAREN, - [160159] = 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [161781] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6898), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7239), 1, + anon_sym_AMP, + ACTIONS(7253), 1, + anon_sym_STAR_STAR, + ACTIONS(7255), 1, + sym_test_operator, + ACTIONS(7309), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7311), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7313), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7315), 1, anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7317), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7355), 1, + anon_sym_EQ, + ACTIONS(7361), 1, + anon_sym_EQ_TILDE, + ACTIONS(7561), 1, + anon_sym_RBRACK, + ACTIONS(7237), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7241), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7243), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7245), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7249), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7251), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7357), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213839,31 +215493,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160235] = 8, - ACTIONS(71), 1, + [161860] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7303), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(7305), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7295), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7408), 2, + ACTIONS(7297), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(7299), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(7301), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7505), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(7101), 21, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7293), 22, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -213880,57 +215536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [160289] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6900), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7336), 11, + [161917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7565), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7563), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213942,31 +215562,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160365] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 7, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7101), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [161962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7559), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7557), 36, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213982,92 +215608,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [160417] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6902), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [160493] = 6, + anon_sym_STAR_STAR, + [162007] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5950), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5952), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [162052] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7412), 3, + ACTIONS(7383), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 9, + ACTIONS(6883), 6, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7101), 21, - anon_sym_COMMA, + ACTIONS(6887), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214080,60 +215707,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [160543] = 19, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162109] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6904), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214145,52 +215753,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160619] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162164] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6906), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7363), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7367), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7369), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7371), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7373), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7375), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7391), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7393), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7395), 1, + sym_test_operator, + ACTIONS(7561), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7377), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7379), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7381), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7365), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214202,26 +215821,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160695] = 6, + [162243] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7422), 1, - aux_sym_concatenation_token1, - ACTIONS(7424), 1, - sym__concat, - STATE(3279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1197), 1, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 29, + ACTIONS(7543), 1, + anon_sym_DQUOTE, + ACTIONS(7547), 1, + sym_variable_name, + STATE(4329), 1, + sym_string, + ACTIONS(7545), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7541), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -214229,69 +215866,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [162298] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7567), 1, sym__special_character, + STATE(3071), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1320), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [160745] = 19, + [162347] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6908), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(5954), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5956), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [162392] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7389), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7383), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214303,27 +215992,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160821] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162447] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(6949), 1, anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(7570), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214335,61 +216060,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [160865] = 19, + [162526] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6910), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(855), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214401,15 +216119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160941] = 5, + [162605] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7574), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(7572), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 12, + ACTIONS(7293), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214422,7 +216140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, + ACTIONS(7305), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -214443,16 +216162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [160989] = 5, + [162653] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 12, + ACTIONS(7081), 13, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214465,8 +216184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, - anon_sym_COMMA, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214479,60 +216197,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [161037] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162701] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6912), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7081), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214544,96 +216238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161113] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7422), 1, - aux_sym_concatenation_token1, - ACTIONS(7424), 1, - sym__concat, - STATE(3279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [161163] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162747] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6914), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1276), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1278), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214645,96 +216279,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161239] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7422), 1, - aux_sym_concatenation_token1, - ACTIONS(7424), 1, - sym__concat, - STATE(3281), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 29, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [161289] = 19, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [162791] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6916), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1280), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1282), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214746,109 +216320,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161365] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6918), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [161441] = 19, + anon_sym_RPAREN, + [162835] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6920), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1284), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1286), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214860,67 +216361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161517] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6922), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [161593] = 3, + anon_sym_RPAREN, + [162879] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(1288), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214934,8 +216387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1290), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -214958,52 +216410,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [161637] = 19, + anon_sym_RPAREN, + [162923] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6924), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6920), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6918), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215015,13 +216443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161713] = 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162967] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(6926), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215036,7 +216470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6991), 20, + ACTIONS(6924), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215054,55 +216490,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161759] = 19, + [163011] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7194), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(7192), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215114,10 +216525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161835] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(7198), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215132,7 +216552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 22, + ACTIONS(7196), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215155,11 +216575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161879] = 3, + [163099] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215173,7 +216592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1282), 22, + ACTIONS(1294), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215188,60 +216608,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [161923] = 19, + [163143] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7141), 1, + anon_sym_STAR_STAR, + ACTIONS(7143), 1, + sym_test_operator, + ACTIONS(7174), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7176), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7178), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7180), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7182), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7208), 1, + anon_sym_EQ, + ACTIONS(7210), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7582), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6885), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7135), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7186), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7188), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7580), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215253,52 +216673,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161999] = 19, + [163219] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6934), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1296), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1298), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215310,10 +216705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162075] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [163263] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215327,8 +216731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1302), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -215351,52 +216754,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162119] = 19, + anon_sym_RPAREN, + [163307] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6940), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1248), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1250), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215408,11 +216787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162195] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [163351] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6653), 14, - anon_sym_EQ, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215426,7 +216813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6651), 22, + ACTIONS(1306), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215441,93 +216829,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, + anon_sym_RPAREN, + [163395] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(7588), 1, + sym_variable_name, + STATE(4320), 1, + sym_string, + ACTIONS(7586), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7584), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - [162239] = 19, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [163449] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6942), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7590), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7594), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7596), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7598), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7600), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7602), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7616), 1, + anon_sym_RPAREN, + ACTIONS(7618), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7620), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7604), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7608), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [162315] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7592), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215539,60 +216940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [162359] = 19, + [163525] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6944), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7235), 1, + anon_sym_COMMA, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215604,93 +216997,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162435] = 3, - ACTIONS(71), 1, + [163601] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6641), 14, - anon_sym_EQ, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(7588), 1, + sym_variable_name, + STATE(4320), 1, + sym_string, + ACTIONS(7586), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7584), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [163655] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3928), 1, + anon_sym_DQUOTE, + ACTIONS(7626), 1, + sym_variable_name, + STATE(4592), 1, + sym_string, + ACTIONS(7624), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7622), 8, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6639), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [163709] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3928), 1, + anon_sym_DQUOTE, + ACTIONS(7626), 1, + sym_variable_name, + STATE(4592), 1, + sym_string, + ACTIONS(7624), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7622), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [163763] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(7630), 1, + anon_sym_DQUOTE, + ACTIONS(7634), 1, + sym_variable_name, + STATE(4370), 1, + sym_string, + ACTIONS(7632), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7628), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [163817] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(7630), 1, + anon_sym_DQUOTE, + ACTIONS(7634), 1, + sym_variable_name, + STATE(4370), 1, + sym_string, + ACTIONS(7632), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7628), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - [162479] = 19, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [163871] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6946), 1, + ACTIONS(7071), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215702,10 +217284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162555] = 3, + [163947] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7214), 13, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215719,8 +217301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7216), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1254), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -215743,52 +217324,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162599] = 19, + anon_sym_RPAREN, + [163991] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6948), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1308), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1310), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215800,105 +217357,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162675] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7432), 1, - anon_sym_PIPE, - ACTIONS(7434), 1, - anon_sym_CARET, - ACTIONS(7436), 1, - anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7428), 2, anon_sym_PIPE_PIPE, anon_sym_DASHo, - ACTIONS(7430), 2, anon_sym_AMP_AMP, anon_sym_DASHa, - ACTIONS(7438), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7442), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7446), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7448), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7101), 13, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [162743] = 19, + anon_sym_RPAREN, + [164035] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6950), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1252), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1254), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215910,104 +217398,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162819] = 14, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7432), 1, - anon_sym_PIPE, - ACTIONS(7434), 1, - anon_sym_CARET, - ACTIONS(7436), 1, - anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7430), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - ACTIONS(7438), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7442), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7446), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7448), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7101), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - [162885] = 19, + anon_sym_RPAREN, + [164079] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6952), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7590), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7594), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7596), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7598), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7600), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7602), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7618), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7620), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7670), 1, + anon_sym_RPAREN, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7604), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7608), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7592), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216019,10 +217464,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162961] = 3, + [164155] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1231), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1233), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [164199] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7131), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -216037,7 +217523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 22, + ACTIONS(7129), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -216057,55 +217543,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163005] = 19, + [164243] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6954), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6949), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6959), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6963), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6977), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6979), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7672), 1, + anon_sym_COLON, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216117,10 +217603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163081] = 3, + [164319] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7138), 13, + ACTIONS(7151), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -216134,8 +217621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7140), 23, - anon_sym_COMMA, + ACTIONS(7149), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -216150,60 +217636,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [163125] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164363] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6956), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6943), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6941), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216215,96 +217676,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163201] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6770), 1, - anon_sym_EQ, - ACTIONS(7338), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6768), 14, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163271] = 13, + [164407] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6788), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6834), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3346), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164495] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6800), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6837), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3403), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164583] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7694), 1, + anon_sym_esac, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6851), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3375), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164671] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7696), 1, + anon_sym_esac, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6852), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3376), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164759] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(6943), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7434), 1, anon_sym_CARET, - ACTIONS(7436), 1, anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7438), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7440), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(6941), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216317,120 +217970,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [163335] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6958), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [163411] = 12, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164803] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7463), 1, - anon_sym_LT_LT_LT, - ACTIONS(7468), 1, - sym_file_descriptor, - ACTIONS(7471), 1, - sym_variable_name, - STATE(6656), 1, - sym_subscript, - ACTIONS(7460), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(7457), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(7452), 5, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7454), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(7466), 13, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, + ACTIONS(6772), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7504), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [163473] = 3, + STATE(3356), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164891] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(6920), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -216444,9 +218059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1282), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6918), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -216461,59 +218074,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [163517] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164935] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6960), 1, + ACTIONS(7117), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216525,42 +218139,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163593] = 13, + [165011] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7085), 1, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7590), 1, + anon_sym_EQ, + ACTIONS(7594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7596), 1, + anon_sym_AMP_AMP, + ACTIONS(7598), 1, anon_sym_PIPE, - ACTIONS(7434), 1, + ACTIONS(7600), 1, anon_sym_CARET, - ACTIONS(7436), 1, + ACTIONS(7602), 1, anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7618), 1, + anon_sym_EQ_TILDE, + ACTIONS(7620), 1, + anon_sym_QMARK, + ACTIONS(7698), 1, + anon_sym_RPAREN, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(7604), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(7608), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7592), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216572,45 +218196,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [163657] = 12, + [165087] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7436), 1, - anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7085), 2, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, anon_sym_CARET, - ACTIONS(7426), 2, + ACTIONS(6963), 1, + anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7700), 1, + anon_sym_COLON, + ACTIONS(6951), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(6965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(6969), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(6973), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(6975), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6953), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216622,56 +218253,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [163719] = 19, + [165163] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6654), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7048), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3384), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165251] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6660), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7050), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3385), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165339] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7702), 1, + anon_sym_esac, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7063), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3386), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165427] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7704), 1, + anon_sym_esac, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7064), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3387), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165515] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6966), 1, + ACTIONS(7158), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216683,40 +218562,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163795] = 11, + [165591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7706), 1, + aux_sym_concatenation_token1, + ACTIONS(7708), 1, + sym__concat, + STATE(3131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 29, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [165641] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7438), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(6926), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7085), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7448), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(6924), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216729,40 +218639,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [163855] = 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165685] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7706), 1, + aux_sym_concatenation_token1, + ACTIONS(7710), 1, + sym__concat, + STATE(3131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 29, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [165735] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7440), 2, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6721), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7201), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3347), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165823] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(6730), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7203), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3348), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165911] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7712), 1, + aux_sym_concatenation_token1, + ACTIONS(7715), 1, + sym__concat, + STATE(3131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 29, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7444), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7085), 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [165961] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7718), 1, + anon_sym_esac, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7213), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3349), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [166049] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7720), 1, + anon_sym_esac, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7214), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3350), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [166137] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7489), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(7448), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 19, + anon_sym_STAR_STAR, + ACTIONS(7491), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216780,52 +219026,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [163913] = 19, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [166181] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6968), 1, + ACTIONS(7166), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216837,33 +219085,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163989] = 8, + [166257] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(7200), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7444), 2, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216875,60 +219142,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [166333] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7574), 1, + anon_sym_STAR_STAR, + ACTIONS(7726), 1, + anon_sym_PIPE, + ACTIONS(7728), 1, + anon_sym_CARET, + ACTIONS(7730), 1, + anon_sym_AMP, + ACTIONS(7572), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7722), 2, anon_sym_PIPE_PIPE, anon_sym_DASHo, + ACTIONS(7724), 2, anon_sym_AMP_AMP, anon_sym_DASHa, + ACTIONS(7732), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7734), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7736), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164043] = 19, + ACTIONS(7738), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7742), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 13, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [166401] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7574), 1, + anon_sym_STAR_STAR, + ACTIONS(7726), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7728), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7730), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7572), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7724), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7732), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7734), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7736), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7738), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7740), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7742), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7305), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216940,30 +219245,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164119] = 7, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + [166467] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7706), 1, + aux_sym_concatenation_token1, + ACTIONS(7744), 1, + sym__concat, + STATE(3126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 29, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [166517] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(7574), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7446), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7448), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 7, + ACTIONS(7726), 1, anon_sym_PIPE, + ACTIONS(7728), 1, anon_sym_CARET, + ACTIONS(7730), 1, anon_sym_AMP, + ACTIONS(7572), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7732), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7734), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7736), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7738), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7101), 21, + ACTIONS(7740), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7742), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 17, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -216981,56 +219342,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164171] = 19, + [166581] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6972), 1, + ACTIONS(7147), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217042,27 +219399,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164247] = 3, + [166657] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(6945), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217074,61 +219456,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [166733] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1231), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1233), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [166777] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7293), 1, + anon_sym_PIPE, + ACTIONS(7574), 1, + anon_sym_STAR_STAR, + ACTIONS(7728), 1, + anon_sym_CARET, + ACTIONS(7730), 1, + anon_sym_AMP, + ACTIONS(7572), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7732), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7734), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7736), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164291] = 19, + ACTIONS(7738), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7742), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [166841] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(6987), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217140,29 +219605,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164367] = 6, + [166917] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(7574), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7448), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 9, + ACTIONS(7730), 1, + anon_sym_AMP, + ACTIONS(7293), 2, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7572), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7732), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7734), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7736), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7738), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7740), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7101), 21, + ACTIONS(7742), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 17, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -217180,56 +219655,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, + [166979] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6989), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164417] = 19, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167055] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6976), 1, + ACTIONS(6991), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217241,28 +219769,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164493] = 5, + [167131] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(7574), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7572), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7732), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7734), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7736), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7738), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7740), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7293), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7742), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, + ACTIONS(7305), 17, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -217280,56 +219818,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, + [167191] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6993), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164541] = 19, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167267] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6978), 1, + ACTIONS(6995), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217341,30 +219932,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164617] = 5, + [167343] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7085), 12, + ACTIONS(6997), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217376,78 +219989,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [167419] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6999), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164665] = 5, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167495] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7474), 1, - sym__special_character, - STATE(3239), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(7001), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167571] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5132), 22, - sym_file_descriptor, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(6754), 1, + anon_sym_esac, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6711), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [164713] = 3, + STATE(3370), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [167659] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(7003), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217459,128 +220223,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164757] = 8, - ACTIONS(3), 1, + [167735] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3482), 1, - anon_sym_DQUOTE, - ACTIONS(7480), 1, - sym_variable_name, - STATE(4595), 1, - sym_string, - ACTIONS(7478), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7476), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 22, - anon_sym_SEMI, + ACTIONS(7005), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [164811] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3482), 1, - anon_sym_DQUOTE, - ACTIONS(7480), 1, - sym_variable_name, - STATE(4595), 1, - sym_string, - ACTIONS(7478), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7476), 8, + ACTIONS(7660), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 22, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167811] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7007), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [164865] = 3, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [167887] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(7009), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217592,36 +220394,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164909] = 3, + [167963] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7574), 1, + anon_sym_STAR_STAR, + ACTIONS(7572), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7734), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7736), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7738), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7740), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7293), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7742), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7305), 19, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217634,29 +220437,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164953] = 8, + [168021] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(7484), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(7488), 1, + ACTIONS(7588), 1, sym_variable_name, - STATE(4380), 1, + STATE(4320), 1, sym_string, - ACTIONS(7486), 2, + ACTIONS(7586), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 8, + ACTIONS(7584), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -217676,8 +220476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -217688,21 +220486,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [165007] = 8, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [168075] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7011), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168151] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(7484), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(7488), 1, + ACTIONS(7588), 1, sym_variable_name, - STATE(4380), 1, + STATE(4320), 1, sym_string, - ACTIONS(7486), 2, + ACTIONS(7586), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 8, + ACTIONS(7584), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -217722,8 +220579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -217734,28 +220589,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [165061] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [168205] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(7013), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168281] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7574), 1, anon_sym_STAR_STAR, - ACTIONS(1250), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7572), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7738), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7740), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7742), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7305), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217775,27 +220694,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165105] = 3, + [168335] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(7015), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217807,19 +220751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165149] = 3, + [168411] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -217833,7 +220768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 23, + ACTIONS(1278), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -217857,52 +220792,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165193] = 19, + [168455] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6822), 1, + ACTIONS(7017), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217914,28 +220849,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165269] = 3, + [168531] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(7019), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168607] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7574), 1, anon_sym_STAR_STAR, - ACTIONS(1258), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7572), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7740), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7742), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7305), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217955,52 +220951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165313] = 19, + [168659] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, - anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(1284), 13, anon_sym_PIPE, - ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7374), 1, anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7490), 1, - anon_sym_EQ, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7496), 1, - anon_sym_RPAREN, - ACTIONS(7498), 1, - anon_sym_EQ_TILDE, - ACTIONS(7500), 1, - anon_sym_QMARK, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7378), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7492), 11, + anon_sym_STAR_STAR, + ACTIONS(1286), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218012,52 +220984,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165389] = 19, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [168703] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, + ACTIONS(7025), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7490), 1, - anon_sym_EQ, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7498), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7500), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7502), 1, - anon_sym_RPAREN, - ACTIONS(7366), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7492), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218069,52 +221049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165465] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1225), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [165509] = 3, + [168779] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6726), 14, - anon_sym_EQ, + ACTIONS(7574), 1, + anon_sym_STAR_STAR, + ACTIONS(7572), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7742), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -218124,13 +221071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6724), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7305), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218143,35 +221086,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165553] = 3, + [168829] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6730), 14, + ACTIONS(7027), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6728), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218183,36 +221150,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [168905] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7029), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165597] = 3, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [168981] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(7031), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218224,61 +221264,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [169057] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7033), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165641] = 19, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [169133] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7000), 1, + ACTIONS(7035), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218290,50 +221378,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165717] = 18, + [169209] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, - anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(1296), 13, anon_sym_PIPE, - ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7374), 1, anon_sym_AMP, - ACTIONS(7388), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7490), 1, + ACTIONS(1298), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [169253] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7037), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7494), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7498), 1, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7500), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7366), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 12, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218345,11 +221476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [165791] = 3, + [169329] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7138), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -218363,7 +221493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7140), 23, + ACTIONS(1302), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -218387,52 +221517,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165835] = 19, + [169373] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7039), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7504), 1, - anon_sym_COLON, - ACTIONS(6746), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218444,46 +221574,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165911] = 16, + [169449] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6770), 1, + ACTIONS(7041), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7368), 1, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7366), 2, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6768), 14, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218495,156 +221631,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165981] = 25, + [169525] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6420), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(7746), 1, sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(3184), 1, aux_sym__literal_repeat1, - STATE(6805), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3330), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166069] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(1318), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + sym_word, + ACTIONS(1320), 22, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6433), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6807), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3331), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166157] = 3, + [169573] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(7043), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218656,121 +221731,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166201] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7526), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6821), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3332), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166289] = 16, + [169649] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(7045), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7400), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7414), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7390), 2, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7392), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7394), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7402), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7528), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218782,27 +221788,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166359] = 3, + [169725] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(7050), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7127), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218814,99 +221845,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [166403] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7530), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6823), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3334), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166491] = 3, + [169801] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(7056), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218918,99 +221902,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166535] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7532), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6880), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3347), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166623] = 3, + [169877] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(7060), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219022,36 +221959,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166667] = 3, + [169953] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7210), 13, + ACTIONS(7062), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7212), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219063,19 +222016,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [170029] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7064), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [166711] = 3, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [170105] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(1280), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219089,7 +222090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7127), 23, + ACTIONS(1282), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -219112,33 +222114,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [166755] = 8, + [170149] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7069), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7354), 2, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219150,23 +222171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166809] = 4, + [170225] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6744), 14, - anon_sym_EQ, + ACTIONS(1248), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219180,7 +222188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6742), 20, + ACTIONS(1250), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219193,56 +222205,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166855] = 17, + [170269] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(7073), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7534), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7536), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7538), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7540), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7542), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(6695), 2, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7324), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7544), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 13, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219254,34 +222269,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166927] = 8, + [170345] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7075), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7354), 2, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219293,20 +222326,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [170421] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7077), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166981] = 3, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [170497] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6792), 14, - anon_sym_EQ, + ACTIONS(1288), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219320,7 +222400,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6790), 22, + ACTIONS(1290), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219335,35 +222417,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167025] = 3, + [170541] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(7083), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219375,20 +222481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167069] = 3, + [170617] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219402,7 +222498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 22, + ACTIONS(1306), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219417,60 +222515,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167113] = 19, + [170661] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6836), 1, + ACTIONS(7085), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219482,52 +222579,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167189] = 19, + [170737] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, + ACTIONS(7087), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7490), 1, - anon_sym_EQ, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7498), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7500), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7550), 1, - anon_sym_RPAREN, - ACTIONS(7366), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7492), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219539,52 +222636,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167265] = 19, + [170813] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7089), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7552), 1, - anon_sym_COLON, - ACTIONS(6746), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219596,11 +222693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167341] = 3, + [170889] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219614,7 +222710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 22, + ACTIONS(1294), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219629,98 +222727,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167385] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6547), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3304), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167473] = 3, + [170933] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(7091), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219732,99 +222791,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167517] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6555), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7019), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3306), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167605] = 3, + [171009] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(7093), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219836,145 +222848,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [171085] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7095), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167649] = 25, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [171161] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(1231), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + sym_word, + ACTIONS(1233), 24, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, sym__special_character, - ACTIONS(7514), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7554), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7031), 1, - sym_last_case_item, - ACTIONS(7516), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3307), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167737] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7556), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7033), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3310), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167825] = 3, + [171205] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(7574), 1, + anon_sym_STAR_STAR, + ACTIONS(7572), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7293), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219987,12 +222967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 23, + ACTIONS(7305), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220012,27 +222989,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [167869] = 3, + [171253] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(7097), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220044,36 +223046,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167913] = 3, + [171329] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(7099), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220085,36 +223103,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167957] = 3, + [171405] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(7101), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220126,20 +223160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168001] = 3, + [171481] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220153,7 +223177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 22, + ACTIONS(1254), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220168,18 +223194,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168045] = 3, + [171525] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7614), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7081), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220190,13 +223224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220214,52 +223242,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168089] = 16, + [171575] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(1308), 13, anon_sym_PIPE, - ACTIONS(7434), 1, anon_sym_CARET, - ACTIONS(7436), 1, anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7206), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7428), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7430), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7438), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7440), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7444), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7558), 11, + anon_sym_STAR_STAR, + ACTIONS(1310), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220271,10 +223278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168159] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171619] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220288,7 +223303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7127), 23, + ACTIONS(1254), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -220312,52 +223327,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [168203] = 19, + [171663] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7005), 1, + ACTIONS(7105), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220369,27 +223384,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168279] = 3, + [171739] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(7107), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220401,37 +223441,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168323] = 3, + [171815] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7210), 13, + ACTIONS(7109), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7212), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220443,35 +223498,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [168367] = 3, + [171891] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6653), 14, + ACTIONS(7111), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6651), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220483,37 +223555,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168411] = 3, + [171967] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(7113), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7127), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220525,35 +223612,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [168455] = 3, + [172043] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6641), 14, + ACTIONS(7115), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6639), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220565,41 +223669,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168499] = 8, + [172119] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7572), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, + ACTIONS(7521), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + anon_sym_STAR_STAR, + ACTIONS(7523), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220612,127 +223704,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168553] = 8, - ACTIONS(3), 1, + [172165] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(1197), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 21, - anon_sym_SEMI, + ACTIONS(7119), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [168607] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(1191), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(7660), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [168661] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [172241] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6726), 14, + ACTIONS(7121), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6724), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220744,36 +223825,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168705] = 3, + [172317] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6730), 14, + ACTIONS(7123), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6728), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220785,23 +223882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168749] = 4, + [172393] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6744), 14, - anon_sym_EQ, + ACTIONS(7535), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220815,7 +223899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6742), 20, + ACTIONS(7537), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220828,103 +223916,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168795] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6569), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7175), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3323), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [168883] = 8, + [172437] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7574), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7726), 1, + anon_sym_PIPE, + ACTIONS(7728), 1, + anon_sym_CARET, + ACTIONS(7730), 1, + anon_sym_AMP, + ACTIONS(7555), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(7572), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, + ACTIONS(7722), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7724), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7732), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7734), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7736), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7738), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7740), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7742), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, + ACTIONS(7749), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [172507] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7227), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6742), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7225), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220945,10 +224018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168937] = 3, + [172551] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(7557), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220962,7 +224035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 23, + ACTIONS(7559), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -220985,53 +224059,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [168981] = 19, + [172595] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(7081), 1, + anon_sym_EQ, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7594), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7596), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7598), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7600), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7602), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7620), 1, anon_sym_QMARK, - ACTIONS(7560), 1, - anon_sym_COLON, - ACTIONS(6746), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7604), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7608), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7610), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7612), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7079), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221043,27 +224112,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169057] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [172667] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7590), 1, + anon_sym_EQ, + ACTIONS(7594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7596), 1, + anon_sym_AMP_AMP, + ACTIONS(7598), 1, anon_sym_PIPE, + ACTIONS(7600), 1, anon_sym_CARET, + ACTIONS(7602), 1, anon_sym_AMP, + ACTIONS(7618), 1, + anon_sym_EQ_TILDE, + ACTIONS(7620), 1, + anon_sym_QMARK, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7604), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7608), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7079), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221075,61 +224169,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [169101] = 19, + [172741] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(7081), 1, + anon_sym_EQ, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7596), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7598), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7600), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7602), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7604), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7608), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7610), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7612), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7079), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221141,27 +224219,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169177] = 3, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172809] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(7081), 1, + anon_sym_EQ, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7598), 1, anon_sym_PIPE, + ACTIONS(7600), 1, anon_sym_CARET, + ACTIONS(7602), 1, anon_sym_AMP, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7604), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7608), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221174,35 +224271,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [169221] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172875] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, - anon_sym_PIPE, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7600), 1, anon_sym_CARET, + ACTIONS(7602), 1, anon_sym_AMP, + ACTIONS(7081), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7604), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7608), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221215,60 +224322,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [169265] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172939] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP_AMP, - ACTIONS(6798), 1, - anon_sym_PIPE, - ACTIONS(6800), 1, - anon_sym_CARET, - ACTIONS(6802), 1, + ACTIONS(7602), 1, anon_sym_AMP, - ACTIONS(6812), 1, - anon_sym_EQ, - ACTIONS(6814), 1, - anon_sym_EQ_TILDE, - ACTIONS(7564), 1, - anon_sym_QMARK, - ACTIONS(6695), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(7604), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(7608), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6762), 3, + ACTIONS(7610), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7612), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7081), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7562), 11, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221280,10 +224371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169341] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173001] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(7563), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221297,7 +224393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 23, + ACTIONS(7565), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -221320,74 +224417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [169385] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6541), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7366), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3336), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169473] = 3, + [173045] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(7557), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221401,7 +224434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 23, + ACTIONS(7559), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -221424,28 +224458,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [169517] = 3, + [173089] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6985), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6983), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221458,81 +224496,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [169561] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6601), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7177), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3324), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169649] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173143] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6792), 14, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6985), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -221547,9 +224525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6790), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6983), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221570,27 +224546,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [169693] = 3, + [173189] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7604), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7606), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7608), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7081), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221602,145 +224590,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173249] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7759), 1, + anon_sym_PIPE, + ACTIONS(7761), 1, + anon_sym_CARET, + ACTIONS(7763), 1, + anon_sym_AMP, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7555), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7755), 2, anon_sym_PIPE_PIPE, anon_sym_DASHo, + ACTIONS(7757), 2, anon_sym_AMP_AMP, anon_sym_DASHa, + ACTIONS(7765), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7769), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [169737] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7566), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7188), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3325), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169825] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7568), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7189), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3326), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169913] = 3, + ACTIONS(7771), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7753), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173319] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(7557), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221754,7 +224666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 23, + ACTIONS(7559), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -221778,143 +224690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [169957] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [170011] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [170065] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [170109] = 3, + [173363] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(7563), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221928,8 +224707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1290), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(7565), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -221952,10 +224730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170153] = 3, + anon_sym_RPAREN, + [173407] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(7557), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221969,8 +224748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(7559), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -221993,28 +224771,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170197] = 3, + anon_sym_RPAREN, + [173451] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6985), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6983), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222027,17 +224810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170241] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173505] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6985), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222051,11 +224839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6983), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222068,59 +224852,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170285] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6842), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + [173551] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6985), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6983), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222132,10 +224897,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170361] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173605] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(7023), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222149,8 +224924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 23, - anon_sym_COMMA, + ACTIONS(7021), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222165,18 +224939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [170405] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173649] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1276), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222190,8 +224965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 23, - anon_sym_COMMA, + ACTIONS(1278), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222206,152 +224980,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [170449] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [170493] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7570), 1, - sym__special_character, - STATE(3239), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1318), 22, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [170541] = 25, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173693] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(6602), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(6636), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(6638), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(6563), 1, - anon_sym_esac, - ACTIONS(7506), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + ACTIONS(7779), 1, + anon_sym_esac, + STATE(6353), 1, aux_sym__literal_repeat1, - STATE(6763), 1, + STATE(7096), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3319), 2, + STATE(3401), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6546), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -222361,79 +225051,36 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [170629] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [170683] = 8, + [173781] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7606), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7608), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(7081), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 20, - sym_test_operator, + ACTIONS(7079), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222449,54 +225096,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170737] = 18, + [173839] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(1296), 14, anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7534), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7536), 1, - anon_sym_AMP_AMP, - ACTIONS(7538), 1, anon_sym_PIPE, - ACTIONS(7540), 1, anon_sym_CARET, - ACTIONS(7542), 1, anon_sym_AMP, - ACTIONS(7564), 1, - anon_sym_QMARK, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7544), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7326), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + anon_sym_STAR_STAR, + ACTIONS(1298), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222508,104 +225131,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - [170811] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7534), 1, anon_sym_PIPE_PIPE, - ACTIONS(7536), 1, anon_sym_AMP_AMP, - ACTIONS(7538), 1, - anon_sym_PIPE, - ACTIONS(7540), 1, - anon_sym_CARET, - ACTIONS(7542), 1, - anon_sym_AMP, - ACTIONS(7564), 1, - anon_sym_QMARK, - ACTIONS(7573), 1, - anon_sym_EQ, - ACTIONS(7575), 1, - anon_sym_EQ_TILDE, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7324), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7544), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [170887] = 16, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173883] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(1300), 14, anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7536), 1, - anon_sym_AMP_AMP, - ACTIONS(7538), 1, anon_sym_PIPE, - ACTIONS(7540), 1, anon_sym_CARET, - ACTIONS(7542), 1, anon_sym_AMP, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7544), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7326), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 14, + anon_sym_STAR_STAR, + ACTIONS(1302), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222618,46 +225173,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170957] = 15, + [173927] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(1280), 14, anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7538), 1, anon_sym_PIPE, - ACTIONS(7540), 1, anon_sym_CARET, - ACTIONS(7542), 1, anon_sym_AMP, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7544), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7326), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + anon_sym_STAR_STAR, + ACTIONS(1282), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222671,45 +225215,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171025] = 14, + [173971] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7540), 1, - anon_sym_CARET, - ACTIONS(7542), 1, - anon_sym_AMP, - ACTIONS(6611), 2, + ACTIONS(1284), 14, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7544), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7326), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + anon_sym_STAR_STAR, + ACTIONS(1286), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222723,44 +225256,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171091] = 13, + [174015] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7542), 1, + ACTIONS(1248), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7544), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7326), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + anon_sym_STAR_STAR, + ACTIONS(1250), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222774,90 +225297,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171155] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7324), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7544), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171217] = 11, + [174059] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7546), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(7081), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222873,17 +225345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171277] = 5, + [174113] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 13, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222897,7 +225367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 20, + anon_sym_STAR_STAR, + ACTIONS(1290), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222918,22 +225391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171325] = 7, + [174157] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7324), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7326), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222942,8 +225403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 20, - sym_test_operator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222961,21 +225429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171377] = 6, + [174201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7326), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222986,8 +225446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 20, - sym_test_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1254), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223005,17 +225470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171427] = 5, + [174245] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223029,8 +225490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 20, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1310), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223048,17 +225511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171475] = 5, + [174289] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223072,8 +225531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 20, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1254), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223091,134 +225552,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171523] = 3, + [174333] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 23, - sym_file_descriptor, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7781), 1, + anon_sym_esac, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7307), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [171567] = 19, + STATE(3402), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [174421] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6846), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1292), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [171643] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7328), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(1294), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7324), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7326), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223236,81 +225656,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171699] = 8, + [174465] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7324), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7326), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(7194), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171753] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 20, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(7192), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223328,12 +225697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171807] = 3, + [174509] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7214), 13, + ACTIONS(7198), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223347,8 +225718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7216), 23, - anon_sym_COMMA, + ACTIONS(7196), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223363,35 +225733,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [171851] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174553] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, + ACTIONS(7162), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, anon_sym_PIPE, + ACTIONS(7648), 1, anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6928), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7640), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223403,22 +225798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171895] = 4, + [174629] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7390), 2, + ACTIONS(7751), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7251), 13, + ACTIONS(7521), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223432,7 +225818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7253), 21, + ACTIONS(7523), 21, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -223454,10 +225840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [171941] = 3, + [174675] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7255), 13, + ACTIONS(7535), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223471,7 +225857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7257), 23, + ACTIONS(7537), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -223495,10 +225881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [171985] = 3, + [174719] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(7227), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223513,7 +225899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6987), 22, + ACTIONS(7225), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223536,48 +225922,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172029] = 17, + [174763] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7081), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 13, + ACTIONS(7079), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223591,93 +225977,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, - [172101] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6938), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6936), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172145] = 19, + [174835] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6850), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7636), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7642), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7666), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7668), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7079), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223689,50 +226032,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172221] = 18, + anon_sym_RBRACK, + [174909] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7332), 1, + ACTIONS(7081), 1, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 12, + ACTIONS(7079), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223744,45 +226082,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - [172295] = 15, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174977] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7081), 1, anon_sym_EQ, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7646), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 15, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223795,45 +226134,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172363] = 14, + [175043] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, - anon_sym_EQ, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7648), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7650), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7081), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223850,27 +226189,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172429] = 3, + [175107] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7650), 1, anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7081), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223884,48 +226236,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172473] = 13, + [175169] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(6993), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7652), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7656), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(7081), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7079), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223942,27 +226288,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172537] = 3, + [175229] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7081), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7079), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223978,34 +226333,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172581] = 4, + [175287] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7251), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7658), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7253), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7081), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224018,67 +226374,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [172627] = 12, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175341] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7660), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6993), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172689] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7255), 13, + ACTIONS(7081), 8, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224086,17 +226406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7257), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224109,46 +226419,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [172733] = 11, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175393] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7664), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7638), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7662), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, + ACTIONS(7081), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6991), 16, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224162,99 +226464,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172793] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7422), 1, - aux_sym_concatenation_token1, - ACTIONS(7577), 1, - sym__concat, - STATE(3283), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 29, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [172843] = 19, + [175443] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6852), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7081), 13, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224266,54 +226505,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7422), 1, - aux_sym_concatenation_token1, - ACTIONS(7579), 1, - sym__concat, - STATE(3283), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [172969] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175491] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7081), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -224328,9 +226535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6987), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224348,95 +226553,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173013] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7581), 1, - aux_sym_concatenation_token1, - ACTIONS(7584), 1, - sym__concat, - STATE(3283), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 29, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [173063] = 17, + [175537] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, - anon_sym_EQ, - ACTIONS(7368), 1, - anon_sym_AMP_AMP, - ACTIONS(7370), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7500), 1, - anon_sym_QMARK, - ACTIONS(7366), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7378), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7380), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7610), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 13, + ACTIONS(6985), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6983), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224448,38 +226593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, - [173135] = 10, + anon_sym_QMARK, + [175591] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7350), 2, + ACTIONS(7448), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6991), 18, + anon_sym_STAR_STAR, + ACTIONS(7450), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224492,38 +226636,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173193] = 8, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175635] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7354), 2, + ACTIONS(7023), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6991), 20, + anon_sym_STAR_STAR, + ACTIONS(7021), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224541,25 +226681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173247] = 7, + [175679] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7578), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7576), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7356), 2, + ACTIONS(7612), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7614), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 8, + ACTIONS(7081), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -224568,7 +226708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6991), 20, + ACTIONS(7079), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224586,132 +226726,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173299] = 6, - ACTIONS(71), 1, + [175731] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 10, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6991), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173349] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7587), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6769), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3314), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173437] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, - anon_sym_DASH, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(7588), 1, + sym_variable_name, + STATE(4320), 1, + sym_string, + ACTIONS(1197), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7586), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7584), 8, + anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, @@ -224729,7 +226763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -224741,22 +226774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [173490] = 8, + anon_sym_LT_LT_LT, + [175785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, + ACTIONS(7588), 1, sym_variable_name, - STATE(4267), 1, + STATE(4320), 1, sym_string, - ACTIONS(1197), 2, + ACTIONS(1191), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(7593), 2, + ACTIONS(7586), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(7584), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -224765,7 +226799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 20, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -224786,181 +226820,828 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [173543] = 8, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [175839] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(1191), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(7204), 1, + anon_sym_EQ, + ACTIONS(7578), 1, + anon_sym_STAR_STAR, + ACTIONS(7594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7596), 1, + anon_sym_AMP_AMP, + ACTIONS(7598), 1, + anon_sym_PIPE, + ACTIONS(7600), 1, + anon_sym_CARET, + ACTIONS(7602), 1, + anon_sym_AMP, + ACTIONS(7576), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7604), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7606), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7608), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7610), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7612), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7614), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7202), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 20, - anon_sym_SEMI, + [175909] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7489), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7491), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [175953] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7759), 1, anon_sym_PIPE, + ACTIONS(7761), 1, + anon_sym_CARET, + ACTIONS(7763), 1, anon_sym_AMP, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7755), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7757), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7765), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7767), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7769), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7771), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [173596] = 3, - ACTIONS(3), 1, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 13, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + [176021] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 30, + ACTIONS(7759), 1, + anon_sym_PIPE, + ACTIONS(7761), 1, + anon_sym_CARET, + ACTIONS(7763), 1, + anon_sym_AMP, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7757), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7765), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7769), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7771), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 15, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_RPAREN, + [176087] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7759), 1, + anon_sym_PIPE, + ACTIONS(7761), 1, + anon_sym_CARET, + ACTIONS(7763), 1, + anon_sym_AMP, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7765), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7769), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7771), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [176151] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7293), 1, + anon_sym_PIPE, + ACTIONS(7761), 1, + anon_sym_CARET, + ACTIONS(7763), 1, + anon_sym_AMP, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7765), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7767), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7769), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7771), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [173639] = 3, - ACTIONS(3), 1, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [176215] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 30, + ACTIONS(7763), 1, + anon_sym_AMP, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7293), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7765), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7769), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7771), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [176277] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7765), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7767), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7769), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7771), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [173682] = 3, - ACTIONS(3), 1, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [176337] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 30, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7767), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7769), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7771), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7293), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 19, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + [176395] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7771), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7305), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176449] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [173725] = 3, + ACTIONS(7305), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176501] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7775), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7293), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7305), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176551] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7293), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176599] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_STAR_STAR, + ACTIONS(7751), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7293), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7305), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176647] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7448), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7450), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [176691] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7204), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, + ACTIONS(7664), 1, + anon_sym_STAR_STAR, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7202), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176761] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1278), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(7706), 1, + aux_sym_concatenation_token1, + ACTIONS(7744), 1, sym__concat, + STATE(3126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 30, + ACTIONS(5435), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -224976,7 +227657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -224991,16 +227671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [173768] = 3, + [176855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(7706), 1, + aux_sym_concatenation_token1, + ACTIONS(7744), 1, sym__concat, + STATE(3128), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 30, + ACTIONS(5439), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -225016,7 +227701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -225031,3383 +227715,1836 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [173811] = 3, + [176905] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 12, + ACTIONS(1280), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1282), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [173854] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7366), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173939] = 24, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176949] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6763), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1284), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [174067] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174152] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7019), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174237] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7031), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 30, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1286), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176993] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1288), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [174365] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7033), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174450] = 24, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1290), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177037] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7040), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174535] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(1197), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7599), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(1292), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 20, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1294), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177081] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7131), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [174588] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(1191), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7599), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 20, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7129), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177125] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7151), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [174641] = 24, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7149), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177169] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7041), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174726] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6943), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6941), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 21, - anon_sym_SEMI, + [177213] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7170), 1, + anon_sym_EQ, + ACTIONS(7783), 1, anon_sym_PIPE_PIPE, + ACTIONS(7785), 1, anon_sym_AMP_AMP, + ACTIONS(7787), 1, anon_sym_PIPE, + ACTIONS(7789), 1, + anon_sym_CARET, + ACTIONS(7791), 1, anon_sym_AMP, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [174779] = 3, - ACTIONS(3), 1, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7172), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177285] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 30, + ACTIONS(6943), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6941), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177329] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7809), 1, + sym__special_character, + STATE(3184), 1, + aux_sym__literal_repeat1, + ACTIONS(5435), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [174822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 5, + ACTIONS(5437), 22, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [174865] = 24, + [177377] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7505), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [174950] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(1296), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 21, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1298), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177421] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [175003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 30, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1302), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177465] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1248), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [175046] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 21, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1250), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177509] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [175099] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, + [177553] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6949), 1, + anon_sym_EQ, + ACTIONS(6955), 1, anon_sym_PIPE_PIPE, + ACTIONS(6957), 1, anon_sym_AMP_AMP, + ACTIONS(6959), 1, anon_sym_PIPE, + ACTIONS(6961), 1, + anon_sym_CARET, + ACTIONS(6963), 1, anon_sym_AMP, + ACTIONS(6977), 1, + anon_sym_STAR_STAR, + ACTIONS(6979), 1, + anon_sym_EQ_TILDE, + ACTIONS(6981), 1, + anon_sym_QMARK, + ACTIONS(7811), 1, + anon_sym_COLON, + ACTIONS(6951), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6965), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6967), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6969), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6971), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [175152] = 24, + ACTIONS(6973), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6975), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6953), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177629] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7799), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 20, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6880), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175237] = 24, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177683] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7175), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175322] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7582), 1, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, + ACTIONS(7783), 1, anon_sym_PIPE_PIPE, + ACTIONS(7785), 1, anon_sym_AMP_AMP, + ACTIONS(7787), 1, anon_sym_PIPE, + ACTIONS(7789), 1, + anon_sym_CARET, + ACTIONS(7791), 1, anon_sym_AMP, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [175375] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7177), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175460] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7188), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175545] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7189), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175630] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7195), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175715] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7196), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175800] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6805), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175885] = 24, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + [177757] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6807), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 30, + ACTIONS(7582), 1, + anon_sym_QMARK, + ACTIONS(7783), 1, anon_sym_PIPE_PIPE, + ACTIONS(7785), 1, anon_sym_AMP_AMP, + ACTIONS(7787), 1, + anon_sym_PIPE, + ACTIONS(7789), 1, + anon_sym_CARET, + ACTIONS(7791), 1, + anon_sym_AMP, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, + sym_test_operator, + ACTIONS(7813), 1, + anon_sym_EQ, + ACTIONS(7815), 1, + anon_sym_EQ_TILDE, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176013] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6821), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176098] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6823), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176183] = 24, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [177833] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6830), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 30, - anon_sym_PIPE_PIPE, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7785), 1, anon_sym_AMP_AMP, + ACTIONS(7787), 1, + anon_sym_PIPE, + ACTIONS(7789), 1, + anon_sym_CARET, + ACTIONS(7791), 1, + anon_sym_AMP, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176311] = 24, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177903] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6831), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(6914), 1, + anon_sym_EQ, + ACTIONS(7787), 1, + anon_sym_PIPE, + ACTIONS(7789), 1, + anon_sym_CARET, + ACTIONS(7791), 1, + anon_sym_AMP, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176439] = 24, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177971] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6769), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(7789), 1, + anon_sym_CARET, + ACTIONS(7791), 1, + anon_sym_AMP, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6914), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176567] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(7801), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7803), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178037] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7791), 1, anon_sym_AMP, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [176620] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(7801), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6914), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7803), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 21, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178101] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [176673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 30, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6916), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178163] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, + sym_test_operator, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7795), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7797), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7799), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176716] = 3, - ACTIONS(3), 1, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6916), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178223] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 30, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7799), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6916), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178279] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(6916), 20, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 30, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176802] = 8, - ACTIONS(3), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178331] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, - anon_sym_DASH, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7803), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6914), 10, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [176855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6916), 20, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 30, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178381] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6914), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176898] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178429] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6914), 13, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [176951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, - sym__concat, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6916), 20, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 30, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176994] = 24, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178477] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(7807), 1, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7496), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177079] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7799), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7801), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7803), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 6, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [177131] = 5, + ACTIONS(6887), 19, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178533] = 8, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5264), 11, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7799), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5266), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177177] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7609), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7611), 1, - sym__special_character, - ACTIONS(7613), 1, + ACTIONS(6887), 20, sym_test_operator, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3360), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7605), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7607), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4614), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177255] = 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178587] = 8, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 11, + ACTIONS(7805), 1, + anon_sym_STAR_STAR, + ACTIONS(6885), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7799), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7801), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4313), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6887), 20, sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177301] = 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178641] = 3, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5268), 11, + ACTIONS(1252), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5270), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177347] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 20, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1254), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178685] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [177399] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1310), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178729] = 3, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177445] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym__special_character, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(7617), 1, - aux_sym_heredoc_redirect_token1, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3360), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7605), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7615), 3, - anon_sym_SEMI, + ACTIONS(1252), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4614), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177523] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 11, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4439), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177569] = 23, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1254), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178773] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7619), 1, - sym_word, - ACTIONS(7622), 1, - anon_sym_LPAREN, - ACTIONS(7625), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7628), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7631), 1, - anon_sym_DOLLAR, - ACTIONS(7634), 1, - sym__special_character, - ACTIONS(7637), 1, - anon_sym_DQUOTE, - ACTIONS(7643), 1, - aux_sym_number_token1, + ACTIONS(7103), 1, + anon_sym_RBRACK, + ACTIONS(7636), 1, + anon_sym_EQ, + ACTIONS(7642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, ACTIONS(7646), 1, - aux_sym_number_token2, - ACTIONS(7649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7655), 1, - anon_sym_BQUOTE, - ACTIONS(7658), 1, - anon_sym_DOLLAR_BQUOTE, + anon_sym_PIPE, + ACTIONS(7648), 1, + anon_sym_CARET, + ACTIONS(7650), 1, + anon_sym_AMP, ACTIONS(7664), 1, - sym_test_operator, - ACTIONS(7667), 1, - sym_extglob_pattern, - ACTIONS(7670), 1, - sym__brace_start, - STATE(6278), 1, - aux_sym__literal_repeat1, - ACTIONS(7640), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6513), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6152), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177651] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5132), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177697] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(3359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7673), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 11, + anon_sym_STAR_STAR, + ACTIONS(7666), 1, + anon_sym_EQ_TILDE, + ACTIONS(7668), 1, + anon_sym_QMARK, + ACTIONS(7638), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7652), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7654), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(7656), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7658), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177743] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7679), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7682), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7688), 1, - sym__special_character, - ACTIONS(7691), 1, - anon_sym_DQUOTE, - ACTIONS(7694), 1, - aux_sym_number_token1, - ACTIONS(7697), 1, - aux_sym_number_token2, - ACTIONS(7700), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7706), 1, - anon_sym_BQUOTE, - ACTIONS(7709), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7715), 1, - sym_test_operator, - ACTIONS(7718), 1, - sym__brace_start, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(7712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3360), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - ACTIONS(7676), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4614), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177821] = 5, + ACTIONS(7660), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7662), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7640), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [178849] = 24, ACTIONS(71), 1, - sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(2158), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6851), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177867] = 6, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [178934] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(7603), 1, - aux_sym_concatenation_token1, - ACTIONS(7721), 1, - sym__concat, - STATE(3359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177915] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7723), 1, - sym__special_character, - STATE(3363), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 28, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + STATE(7213), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [177961] = 5, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179019] = 24, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4282), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [178007] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7611), 1, - sym__special_character, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(7728), 1, - aux_sym_heredoc_redirect_token1, - STATE(4982), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(3576), 2, + STATE(7214), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3360), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7605), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7726), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4614), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -228417,110 +229554,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [178085] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7740), 1, - anon_sym_RBRACE3, - ACTIONS(7742), 1, - anon_sym_AT, - ACTIONS(7744), 1, - anon_sym_STAR2, - STATE(6295), 1, - aux_sym__expansion_body_repeat1, - STATE(7102), 1, - sym__expansion_expression, - STATE(7104), 1, - sym__expansion_regex, - STATE(7130), 1, - sym__expansion_regex_replacement, - STATE(7172), 1, - sym__expansion_regex_removal, - STATE(7214), 1, - sym__expansion_max_length, - STATE(7271), 1, - sym__expansion_operator, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [178161] = 21, - ACTIONS(3), 1, + [179104] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3582), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(7611), 1, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(7756), 1, - aux_sym_heredoc_redirect_token1, - STATE(4982), 1, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(3576), 2, + STATE(7220), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3360), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7605), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7754), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4614), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -228530,80 +229615,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [178239] = 25, + [179189] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(6602), 1, sym_word, - ACTIONS(7760), 1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(7762), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7764), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7766), 1, - anon_sym_DOLLAR, - ACTIONS(7768), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(7770), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(7778), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7780), 1, - anon_sym_RBRACE3, - ACTIONS(7782), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7786), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7790), 1, - sym_variable_name, - ACTIONS(7792), 1, - sym_test_operator, - ACTIONS(7794), 1, - sym__expansion_word, - ACTIONS(7796), 1, - sym__brace_start, - STATE(6232), 1, - sym_command_substitution, - STATE(6420), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(7772), 2, + STATE(7221), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7788), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(6312), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6683), 5, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, sym_number, - sym__concatenation_in_expansion, - [178325] = 5, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 1, - sym__special_character, - STATE(3363), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 28, + ACTIONS(1292), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -228619,7 +229701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -228632,140 +229716,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [178371] = 25, - ACTIONS(71), 1, + [179317] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7760), 1, - anon_sym_LPAREN, - ACTIONS(7762), 1, + ACTIONS(1266), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7764), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7766), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(7768), 1, sym__special_character, - ACTIONS(7770), 1, anon_sym_DQUOTE, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(7778), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7782), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, - anon_sym_BQUOTE, - ACTIONS(7786), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7790), 1, - sym_variable_name, - ACTIONS(7796), 1, - sym__brace_start, - ACTIONS(7800), 1, - sym_word, - ACTIONS(7804), 1, - anon_sym_RBRACE3, - ACTIONS(7806), 1, - sym_test_operator, - ACTIONS(7808), 1, - sym__expansion_word, - STATE(6224), 1, - sym_command_substitution, - STATE(6398), 1, - aux_sym__literal_repeat1, - ACTIONS(7788), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7802), 2, sym_raw_string, sym_ansi_c_string, - STATE(6315), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6658), 5, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - [178457] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7760), 1, - anon_sym_LPAREN, - ACTIONS(7762), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7764), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7766), 1, - anon_sym_DOLLAR, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(7770), 1, - anon_sym_DQUOTE, - ACTIONS(7774), 1, aux_sym_number_token1, - ACTIONS(7776), 1, aux_sym_number_token2, - ACTIONS(7778), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7782), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, anon_sym_BQUOTE, - ACTIONS(7786), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7790), 1, - sym_variable_name, - ACTIONS(7796), 1, - sym__brace_start, - ACTIONS(7810), 1, - sym_word, - ACTIONS(7814), 1, - anon_sym_RBRACE3, - ACTIONS(7816), 1, - sym_test_operator, - ACTIONS(7818), 1, - sym__expansion_word, - STATE(6197), 1, - sym_command_substitution, - STATE(6433), 1, - aux_sym__literal_repeat1, - ACTIONS(7788), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7812), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6371), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6665), 5, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - [178543] = 6, + sym_word, + [179360] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7603), 1, - aux_sym_concatenation_token1, - ACTIONS(7820), 1, - sym__concat, - STATE(3359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 11, + ACTIONS(1231), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -228773,19 +229771,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 20, + ACTIONS(1233), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -228793,106 +229792,171 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [178591] = 5, - ACTIONS(71), 1, + [179403] = 3, + ACTIONS(3), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(1237), 5, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 11, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5136), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [178637] = 5, - ACTIONS(71), 1, + sym_word, + [179446] = 8, + ACTIONS(3), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 11, + ACTIONS(7819), 1, + anon_sym_DQUOTE, + ACTIONS(7823), 1, + sym_variable_name, + STATE(4283), 1, + sym_string, + ACTIONS(1191), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7821), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7817), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [179499] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(2162), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7096), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [178683] = 8, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179584] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(4087), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(7829), 1, sym_variable_name, - STATE(4349), 1, + STATE(4385), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(7827), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(7825), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -228901,7 +229965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 20, + ACTIONS(1195), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -228922,62 +229986,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [178735] = 5, - ACTIONS(71), 1, + anon_sym_BQUOTE, + [179637] = 8, + ACTIONS(3), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 11, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(7829), 1, + sym_variable_name, + STATE(4385), 1, + sym_string, + ACTIONS(1191), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7825), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4309), 20, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [179690] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, sym_file_descriptor, + ACTIONS(7819), 1, + anon_sym_DQUOTE, + ACTIONS(7823), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + STATE(4283), 1, + sym_string, + ACTIONS(7821), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7817), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [178781] = 8, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [179743] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(7591), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, + ACTIONS(7823), 1, sym_variable_name, - STATE(4267), 1, + STATE(4283), 1, sym_string, - ACTIONS(7593), 2, + ACTIONS(7821), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(7817), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -228986,7 +230100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 20, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -229007,121 +230121,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [178833] = 19, + anon_sym_BQUOTE, + [179796] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7740), 1, - anon_sym_RBRACE3, - ACTIONS(7822), 1, - anon_sym_AT, - STATE(6277), 1, - aux_sym__expansion_body_repeat1, - STATE(6713), 1, - sym__expansion_regex, - STATE(6724), 1, - sym__expansion_regex_replacement, - STATE(6766), 1, - sym__expansion_regex_removal, - STATE(6768), 1, - sym__expansion_max_length, - STATE(6790), 1, - sym__expansion_operator, - STATE(7337), 1, - sym__expansion_expression, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(7829), 1, + sym_variable_name, + STATE(4385), 1, + sym_string, + ACTIONS(7827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7825), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [178906] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 11, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 22, + [179849] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7819), 1, + anon_sym_DQUOTE, + ACTIONS(7823), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + STATE(4283), 1, + sym_string, + ACTIONS(7821), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7817), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [178947] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [179902] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 11, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(7829), 1, + sym_variable_name, + STATE(4385), 1, + sym_string, + ACTIONS(7827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7825), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [179955] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(7819), 1, + anon_sym_DQUOTE, + ACTIONS(7823), 1, + sym_variable_name, + STATE(4283), 1, + sym_string, + ACTIONS(7821), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7817), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 22, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [180008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -229129,95 +230328,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [178988] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7824), 1, - sym_word, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(7828), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, - anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, - anon_sym_DQUOTE, - ACTIONS(7840), 1, aux_sym_number_token1, - ACTIONS(7842), 1, aux_sym_number_token2, - ACTIONS(7844), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7854), 1, - sym__comment_word, - ACTIONS(7856), 1, - sym__empty_value, - ACTIONS(7858), 1, - sym_test_operator, - ACTIONS(7860), 1, - sym__brace_start, - STATE(2618), 1, - aux_sym__literal_repeat1, - ACTIONS(7838), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2852), 2, - sym_concatenation, - sym_array, - STATE(2346), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179069] = 3, - ACTIONS(71), 1, + sym_word, + [180051] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 11, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(7829), 1, + sym_variable_name, + STATE(4385), 1, + sym_string, + ACTIONS(7827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7825), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 22, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [180104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -229225,37 +230413,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [179110] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1270), 22, + [180147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -229263,229 +230453,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [179151] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7862), 1, - sym_word, - ACTIONS(7864), 1, - anon_sym_LPAREN, - ACTIONS(7866), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, - anon_sym_DQUOTE, - ACTIONS(7878), 1, aux_sym_number_token1, - ACTIONS(7880), 1, aux_sym_number_token2, - ACTIONS(7882), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7892), 1, - sym__comment_word, - ACTIONS(7894), 1, - sym__empty_value, - ACTIONS(7896), 1, - sym_test_operator, - ACTIONS(7898), 1, - sym__brace_start, - STATE(1819), 1, - aux_sym__literal_repeat1, - ACTIONS(7876), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7890), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2036), 2, - sym_concatenation, - sym_array, - STATE(1363), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179232] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7822), 1, - anon_sym_AT, - ACTIONS(7900), 1, - anon_sym_RBRACE3, - STATE(6318), 1, - aux_sym__expansion_body_repeat1, - STATE(7117), 1, - sym__expansion_expression, - STATE(7166), 1, - sym__expansion_operator, - STATE(7216), 1, - sym__expansion_regex, - STATE(7249), 1, - sym__expansion_max_length, - STATE(7419), 1, - sym__expansion_regex_replacement, - STATE(7423), 1, - sym__expansion_regex_removal, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [179305] = 19, + sym_word, + [180190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7822), 1, - anon_sym_AT, - ACTIONS(7902), 1, - anon_sym_RBRACE3, - STATE(6317), 1, - aux_sym__expansion_body_repeat1, - STATE(6704), 1, - sym__expansion_regex_replacement, - STATE(6715), 1, - sym__expansion_expression, - STATE(6784), 1, - sym__expansion_max_length, - STATE(6811), 1, - sym__expansion_operator, - STATE(7373), 1, - sym__expansion_regex_removal, - STATE(7414), 1, - sym__expansion_regex, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [179378] = 23, - ACTIONS(3), 1, + ACTIONS(1254), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [180233] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(2067), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(2073), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(2079), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(7904), 1, - sym_word, - ACTIONS(7906), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(7908), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7912), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(7914), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7926), 1, - sym__comment_word, - ACTIONS(7928), 1, - sym__empty_value, - ACTIONS(7930), 1, - sym_test_operator, - STATE(1756), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(7916), 2, + STATE(7307), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7924), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1911), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1447), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229495,55 +230568,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179459] = 23, - ACTIONS(3), 1, + [180318] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(7932), 1, + ACTIONS(6602), 1, sym_word, - ACTIONS(7934), 1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, - anon_sym_DOLLAR, - ACTIONS(7942), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(7944), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, - sym__comment_word, - ACTIONS(7964), 1, - sym__empty_value, - ACTIONS(7966), 1, - sym_test_operator, - ACTIONS(7968), 1, - sym__brace_start, - STATE(4223), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(7946), 2, + STATE(6834), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7960), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4668), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(4375), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229553,55 +230629,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179540] = 23, - ACTIONS(3), 1, + [180403] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(7970), 1, + ACTIONS(6602), 1, sym_word, - ACTIONS(7972), 1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(7974), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7980), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(7982), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, - aux_sym_number_token1, - ACTIONS(7988), 1, - aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8000), 1, - sym__comment_word, - ACTIONS(8002), 1, - sym__empty_value, - ACTIONS(8004), 1, - sym_test_operator, - ACTIONS(8006), 1, - sym__brace_start, - STATE(3452), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(7984), 2, + STATE(6837), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7998), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3701), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(3352), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229611,55 +230690,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179621] = 23, - ACTIONS(3), 1, + [180488] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(8008), 1, - sym_word, - ACTIONS(8010), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8012), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8016), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(8018), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8030), 1, - sym__comment_word, - ACTIONS(8032), 1, - sym__empty_value, - ACTIONS(8034), 1, - sym_test_operator, - STATE(1828), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8020), 2, + STATE(7203), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8028), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2056), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1377), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229669,55 +230751,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179702] = 23, + [180573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, - anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7948), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(7950), 1, aux_sym_number_token2, - ACTIONS(7952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, - sym__comment_word, - ACTIONS(7964), 1, - sym__empty_value, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(8036), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(8038), 1, - sym__special_character, - ACTIONS(8042), 1, + [180616] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, sym_test_operator, - STATE(4223), 1, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8040), 2, + STATE(6859), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - STATE(4668), 2, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(4422), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229727,55 +230852,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179783] = 23, - ACTIONS(3), 1, + [180701] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, - anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, - sym__comment_word, - ACTIONS(7964), 1, - sym__empty_value, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(8044), 1, - sym_word, - ACTIONS(8046), 1, - sym__special_character, - ACTIONS(8050), 1, - sym_test_operator, - STATE(4223), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8048), 2, + STATE(6860), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - STATE(4668), 2, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(4603), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229785,229 +230913,268 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179864] = 23, + [180786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(1278), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4070), 1, sym__special_character, - ACTIONS(4072), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4078), 1, aux_sym_number_token2, - ACTIONS(4080), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(8052), 1, - sym_word, - ACTIONS(8054), 1, - anon_sym_LPAREN, - ACTIONS(8058), 1, - sym__comment_word, - ACTIONS(8060), 1, - sym__empty_value, - ACTIONS(8062), 1, - sym_test_operator, - STATE(2605), 1, - aux_sym__literal_repeat1, - ACTIONS(4088), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8056), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2901), 2, - sym_concatenation, - sym_array, - STATE(2371), 9, - sym_arithmetic_expansion, - sym_brace_expression, + sym_word, + [180829] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(7588), 1, + sym_variable_name, + STATE(4320), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179945] = 23, + ACTIONS(7586), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7584), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [180882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - sym_word, - ACTIONS(8066), 1, - anon_sym_LPAREN, - ACTIONS(8068), 1, + ACTIONS(1274), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8072), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(8074), 1, sym__special_character, - ACTIONS(8076), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8082), 1, aux_sym_number_token2, - ACTIONS(8084), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8094), 1, - sym__comment_word, - ACTIONS(8096), 1, - sym__empty_value, - ACTIONS(8098), 1, - sym_test_operator, - ACTIONS(8100), 1, - sym__brace_start, - STATE(5287), 1, - aux_sym__literal_repeat1, - ACTIONS(8078), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(5507), 2, - sym_concatenation, - sym_array, - STATE(5124), 9, - sym_arithmetic_expansion, - sym_brace_expression, + sym_word, + [180925] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3722), 1, + anon_sym_DQUOTE, + ACTIONS(7588), 1, + sym_variable_name, + STATE(4320), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180026] = 23, + ACTIONS(7586), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7584), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [180978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, - anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(1286), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7948), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(7950), 1, aux_sym_number_token2, - ACTIONS(7952), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, - sym__comment_word, - ACTIONS(7964), 1, - sym__empty_value, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(8102), 1, - sym_word, - ACTIONS(8104), 1, - sym__special_character, - ACTIONS(8108), 1, - sym_test_operator, - STATE(4223), 1, - aux_sym__literal_repeat1, - ACTIONS(7960), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8106), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4668), 2, - sym_concatenation, - sym_array, - STATE(4503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180107] = 23, - ACTIONS(3), 1, + sym_word, + [181021] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(8110), 1, + ACTIONS(6602), 1, sym_word, - ACTIONS(8112), 1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8114), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(8122), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8140), 1, - sym__comment_word, - ACTIONS(8142), 1, - sym__empty_value, - ACTIONS(8144), 1, - sym_test_operator, - ACTIONS(8146), 1, - sym__brace_start, - STATE(1411), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8124), 2, + STATE(7048), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8138), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1655), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1122), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230017,55 +231184,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180188] = 23, - ACTIONS(3), 1, + [181106] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, - anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, - sym__comment_word, - ACTIONS(7964), 1, - sym__empty_value, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(8148), 1, - sym_word, - ACTIONS(8150), 1, - sym__special_character, - ACTIONS(8154), 1, - sym_test_operator, - STATE(4223), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8152), 2, + STATE(7050), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - STATE(4668), 2, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(5077), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230075,55 +231245,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180269] = 23, - ACTIONS(3), 1, + [181191] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(1591), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(8156), 1, - sym_word, - ACTIONS(8158), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8164), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(8166), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8178), 1, - sym__comment_word, - ACTIONS(8180), 1, - sym__empty_value, - ACTIONS(8182), 1, - sym_test_operator, - STATE(1425), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8168), 2, + STATE(7063), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8176), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1660), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1124), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230133,55 +231306,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180350] = 23, - ACTIONS(3), 1, + [181276] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(8184), 1, + ACTIONS(6602), 1, sym_word, - ACTIONS(8186), 1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8188), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8192), 1, - anon_sym_DOLLAR, - ACTIONS(8194), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(8196), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, - aux_sym_number_token1, - ACTIONS(8202), 1, - aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8214), 1, - sym__comment_word, - ACTIONS(8216), 1, - sym__empty_value, - ACTIONS(8218), 1, - sym_test_operator, - ACTIONS(8220), 1, - sym__brace_start, - STATE(4317), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8198), 2, + STATE(7064), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8212), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4604), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(4148), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230191,55 +231367,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180431] = 23, - ACTIONS(3), 1, + [181361] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(8222), 1, + ACTIONS(6602), 1, sym_word, - ACTIONS(8224), 1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, + aux_sym_number_token1, + ACTIONS(6624), 1, + aux_sym_number_token2, + ACTIONS(6628), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8226), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8232), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(8234), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8252), 1, - sym__comment_word, - ACTIONS(8254), 1, - sym__empty_value, - ACTIONS(8256), 1, - sym_test_operator, - ACTIONS(8258), 1, - sym__brace_start, - STATE(1480), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8236), 2, + STATE(7071), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8250), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1906), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1234), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230249,55 +231428,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180512] = 23, - ACTIONS(3), 1, + [181446] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(1889), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(8260), 1, - sym_word, - ACTIONS(8262), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8264), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8268), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(8270), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8282), 1, - sym__comment_word, - ACTIONS(8284), 1, - sym__empty_value, - ACTIONS(8286), 1, - sym_test_operator, - STATE(1471), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8272), 2, + STATE(7072), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8280), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1874), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1265), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230307,121 +231489,25 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180593] = 3, - ACTIONS(71), 1, + [181531] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 22, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180634] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7822), 1, - anon_sym_AT, - ACTIONS(8288), 1, - anon_sym_RBRACE3, - STATE(6345), 1, - aux_sym__expansion_body_repeat1, - STATE(6756), 1, - sym__expansion_regex, - STATE(6772), 1, - sym__expansion_regex_replacement, - STATE(6975), 1, - sym__expansion_regex_removal, - STATE(7001), 1, - sym__expansion_max_length, - STATE(7010), 1, - sym__expansion_operator, - STATE(7255), 1, - sym__expansion_expression, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [180707] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230429,113 +231515,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180748] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180789] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 22, + [181574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180830] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230543,75 +231555,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180871] = 3, + sym_word, + [181617] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7680), 1, sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(6711), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180912] = 3, - ACTIONS(71), 1, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181702] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 22, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230619,37 +231656,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180953] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1290), 22, + [181745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230657,37 +231696,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180994] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1294), 22, + [181788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1256), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230695,75 +231736,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181035] = 3, + sym_word, + [181831] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7674), 1, + anon_sym_LPAREN, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7680), 1, sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6353), 1, + aux_sym__literal_repeat1, + STATE(7504), 1, + sym_last_case_item, + ACTIONS(7684), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181076] = 3, - ACTIONS(71), 1, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6183), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181916] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 22, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230771,37 +231837,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181117] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1306), 22, + [181959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230809,37 +231877,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181158] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1302), 22, + [182002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -230847,30 +231917,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181199] = 8, + sym_word, + [182045] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(4087), 1, anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(7829), 1, sym_variable_name, - STATE(4874), 1, + STATE(4385), 1, sym_string, ACTIONS(1197), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8292), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7827), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, + ACTIONS(7825), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -230879,41 +231955,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 18, + ACTIONS(1195), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [181250] = 8, + [182098] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(7823), 1, sym_variable_name, - STATE(4874), 1, + STATE(4283), 1, sym_string, - ACTIONS(1191), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8292), 2, + ACTIONS(1197), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7821), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, + ACTIONS(7817), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -230922,77 +232000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 18, + ACTIONS(1195), 20, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [181301] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -231000,72 +232019,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [182151] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [181383] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8296), 1, - sym_word, - ACTIONS(8298), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8300), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(8308), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8326), 1, - sym__comment_word, - ACTIONS(8328), 1, - sym__empty_value, - ACTIONS(8330), 1, - sym_test_operator, - ACTIONS(8332), 1, - sym__brace_start, - STATE(1720), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8310), 2, + STATE(7201), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8324), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2043), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1678), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231075,55 +232082,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181464] = 23, - ACTIONS(3), 1, + [182236] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(8010), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8012), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8030), 1, - sym__comment_word, - ACTIONS(8032), 1, - sym__empty_value, - ACTIONS(8334), 1, - sym_word, - ACTIONS(8336), 1, - sym__special_character, - ACTIONS(8340), 1, - sym_test_operator, - STATE(1828), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8338), 2, + STATE(7230), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - STATE(2056), 2, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(1686), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231133,151 +232143,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181545] = 3, + [182321] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, + ACTIONS(6624), 1, aux_sym_number_token2, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6636), 1, sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181586] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8298), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8300), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8326), 1, - sym__comment_word, - ACTIONS(8328), 1, - sym__empty_value, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8342), 1, - sym_word, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(8348), 1, - sym_test_operator, - STATE(1720), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8346), 2, + STATE(7232), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - STATE(2043), 2, - sym_concatenation, - sym_array, - STATE(1386), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181667] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8298), 1, - anon_sym_LPAREN, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8326), 1, - sym__comment_word, - ACTIONS(8328), 1, - sym__empty_value, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8350), 1, - sym_word, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(8356), 1, - sym_test_operator, - STATE(1720), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8354), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2043), 2, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(2297), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231287,55 +232204,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181748] = 23, - ACTIONS(3), 1, + [182406] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(6602), 1, + sym_word, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(6636), 1, + sym_test_operator, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(8010), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(8012), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8030), 1, - sym__comment_word, - ACTIONS(8032), 1, - sym__empty_value, - ACTIONS(8358), 1, - sym_word, - ACTIONS(8360), 1, - sym__special_character, - ACTIONS(8364), 1, - sym_test_operator, - STATE(1828), 1, + STATE(6353), 1, aux_sym__literal_repeat1, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8362), 2, + STATE(6852), 1, + sym_last_case_item, + ACTIONS(7684), 2, sym_raw_string, sym_ansi_c_string, - STATE(2056), 2, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6546), 2, sym_concatenation, - sym_array, - STATE(2301), 9, + sym__extglob_blob, + STATE(6183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231345,72 +232265,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181829] = 23, - ACTIONS(3), 1, + [182491] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(8366), 1, - sym_word, - ACTIONS(8368), 1, - anon_sym_LPAREN, - ACTIONS(8370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8374), 1, + STATE(3423), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5292), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8376), 1, - sym__special_character, - ACTIONS(8378), 1, - anon_sym_DQUOTE, - ACTIONS(8382), 1, aux_sym_number_token1, - ACTIONS(8384), 1, aux_sym_number_token2, - ACTIONS(8386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8396), 1, - sym__comment_word, - ACTIONS(8398), 1, - sym__empty_value, - ACTIONS(8400), 1, + sym_word, + ACTIONS(5294), 20, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8402), 1, sym__brace_start, - STATE(4407), 1, - aux_sym__literal_repeat1, - ACTIONS(8380), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8394), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4700), 2, - sym_concatenation, - sym_array, - STATE(4237), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181910] = 5, + [182537] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 10, + STATE(3426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4686), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -231420,8 +232324,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5689), 20, + ACTIONS(4688), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -231434,314 +232339,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181954] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8420), 1, - sym_raw_string, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8434), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8436), 1, - sym_variable_name, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3429), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3017), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [182034] = 23, - ACTIONS(71), 1, + [182583] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8438), 1, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(7837), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7839), 1, + sym__special_character, + ACTIONS(7841), 1, + sym_test_operator, + STATE(5002), 1, + aux_sym__literal_repeat1, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3407), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7833), 3, sym_raw_string, - ACTIONS(8440), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2809), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + ACTIONS(7835), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4549), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [182114] = 23, - ACTIONS(71), 1, + sym_process_substitution, + [182661] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(2146), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7846), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7849), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7852), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7855), 1, + sym__special_character, + ACTIONS(7858), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7861), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7864), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7867), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7870), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7873), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7876), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8442), 1, + ACTIONS(7882), 1, + sym_test_operator, + ACTIONS(7885), 1, + sym__brace_start, + STATE(5002), 1, + aux_sym__literal_repeat1, + ACTIONS(7879), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3407), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2144), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(7843), 3, sym_raw_string, - ACTIONS(8444), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3434), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2810), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4549), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [182194] = 23, - ACTIONS(71), 1, + sym_process_substitution, + [182739] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8446), 1, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(7839), 1, + sym__special_character, + ACTIONS(7841), 1, + sym_test_operator, + ACTIONS(7890), 1, + aux_sym_heredoc_redirect_token1, + STATE(5002), 1, + aux_sym__literal_repeat1, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3407), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7833), 3, sym_raw_string, - ACTIONS(8448), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2981), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + ACTIONS(7888), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4549), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [182274] = 5, - ACTIONS(71), 1, + sym_process_substitution, + [182817] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8404), 1, + ACTIONS(7892), 1, sym__special_character, - STATE(3454), 1, + STATE(3409), 1, aux_sym__literal_repeat1, - ACTIONS(4307), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4309), 20, + ACTIONS(1320), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [182318] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(8452), 1, - anon_sym_DQUOTE, - ACTIONS(8456), 1, - sym_variable_name, - STATE(5176), 1, - sym_string, - ACTIONS(8454), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8450), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 28, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -231749,472 +232543,427 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [182368] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(8418), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8458), 1, sym_raw_string, - ACTIONS(8460), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2816), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [182448] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8462), 1, - sym_raw_string, - ACTIONS(8464), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3436), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2817), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [182528] = 23, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [182863] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8466), 1, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(7839), 1, + sym__special_character, + ACTIONS(7841), 1, + sym_test_operator, + ACTIONS(7897), 1, + aux_sym_heredoc_redirect_token1, + STATE(5002), 1, + aux_sym__literal_repeat1, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3407), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7833), 3, sym_raw_string, - ACTIONS(8468), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2821), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + ACTIONS(7895), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4549), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [182608] = 23, + sym_process_substitution, + [182941] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7899), 1, + sym_word, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7905), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7908), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7911), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7914), 1, + sym__special_character, + ACTIONS(7917), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7923), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7926), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7932), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7935), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7938), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8470), 1, + ACTIONS(7944), 1, + sym_test_operator, + ACTIONS(7947), 1, + sym_extglob_pattern, + ACTIONS(7950), 1, + sym__brace_start, + STATE(6310), 1, + aux_sym__literal_repeat1, + ACTIONS(7920), 2, sym_raw_string, - ACTIONS(8472), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3439), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2823), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7941), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3411), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6553), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6219), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [182688] = 23, + sym_process_substitution, + [183023] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7953), 1, + sym_word, + ACTIONS(7955), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7957), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7959), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7961), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7963), 1, + sym__special_character, + ACTIONS(7965), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7969), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7971), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7975), 1, + anon_sym_RBRACE3, + ACTIONS(7977), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7979), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7985), 1, sym_variable_name, - ACTIONS(8474), 1, + ACTIONS(7987), 1, + sym_test_operator, + ACTIONS(7989), 1, + sym__expansion_word, + ACTIONS(7991), 1, + sym__brace_start, + STATE(6185), 1, + sym_command_substitution, + STATE(6430), 1, + aux_sym__literal_repeat1, + ACTIONS(7967), 2, sym_raw_string, - ACTIONS(8476), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3431), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2863), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6370), 5, sym_string, - sym_number, + sym_array, sym_simple_expansion, sym_expansion, - sym_command_substitution, - [182768] = 23, + sym_process_substitution, + STATE(6643), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [183109] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7955), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7957), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7959), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7961), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7963), 1, + sym__special_character, + ACTIONS(7965), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7969), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7971), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7977), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7979), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7985), 1, sym_variable_name, - ACTIONS(8478), 1, + ACTIONS(7991), 1, + sym__brace_start, + ACTIONS(7993), 1, + sym_word, + ACTIONS(7997), 1, + anon_sym_RBRACE3, + ACTIONS(7999), 1, + sym_test_operator, + ACTIONS(8001), 1, + sym__expansion_word, + STATE(6267), 1, + sym_command_substitution, + STATE(6436), 1, + aux_sym__literal_repeat1, + ACTIONS(7983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7995), 2, sym_raw_string, - ACTIONS(8480), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2827), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(6280), 5, sym_string, - sym_number, + sym_array, sym_simple_expansion, sym_expansion, - sym_command_substitution, - [182848] = 23, + sym_process_substitution, + STATE(6653), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [183195] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + STATE(3426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5296), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + sym_word, + ACTIONS(5298), 20, + sym_file_descriptor, sym_variable_name, - ACTIONS(8482), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8484), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3441), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2828), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [182928] = 23, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [183241] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7955), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7957), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7959), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7961), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7963), 1, + sym__special_character, + ACTIONS(7965), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7969), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7971), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7977), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7979), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7985), 1, sym_variable_name, - ACTIONS(8486), 1, + ACTIONS(7991), 1, + sym__brace_start, + ACTIONS(8003), 1, + sym_word, + ACTIONS(8007), 1, + anon_sym_RBRACE3, + ACTIONS(8009), 1, + sym_test_operator, + ACTIONS(8011), 1, + sym__expansion_word, + STATE(6262), 1, + sym_command_substitution, + STATE(6441), 1, + aux_sym__literal_repeat1, + ACTIONS(7983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8005), 2, sym_raw_string, - ACTIONS(8488), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2830), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(6312), 5, sym_string, - sym_number, + sym_array, sym_simple_expansion, sym_expansion, - sym_command_substitution, - [183008] = 5, + sym_process_substitution, + STATE(6655), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [183327] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8015), 1, + anon_sym_SLASH, + ACTIONS(8017), 1, + anon_sym_PERCENT, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8023), 1, + anon_sym_RBRACE3, + ACTIONS(8025), 1, + anon_sym_AT, + ACTIONS(8027), 1, + anon_sym_STAR2, + STATE(6281), 1, + aux_sym__expansion_body_repeat1, + STATE(6900), 1, + sym__expansion_operator, + STATE(7008), 1, + sym__expansion_expression, + STATE(7075), 1, + sym__expansion_regex, + STATE(7127), 1, + sym__expansion_regex_replacement, + STATE(7329), 1, + sym__expansion_regex_removal, + STATE(7354), 1, + sym__expansion_max_length, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8033), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8021), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8031), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8029), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [183403] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 10, + STATE(3423), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4682), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232224,8 +232973,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 20, + ACTIONS(4684), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232238,29 +232988,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183052] = 8, + [183449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(8452), 1, + ACTIONS(4087), 1, anon_sym_DQUOTE, - ACTIONS(8456), 1, + ACTIONS(7829), 1, sym_variable_name, - STATE(5176), 1, + STATE(4385), 1, sym_string, - ACTIONS(8454), 2, + ACTIONS(7827), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8450), 8, + ACTIONS(7825), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -232269,16 +233019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 18, + ACTIONS(1195), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -232287,300 +233039,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [183102] = 23, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + [183501] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8490), 1, - anon_sym_LPAREN, - ACTIONS(8493), 1, - anon_sym_BANG, - ACTIONS(8502), 1, - anon_sym_TILDE, - ACTIONS(8505), 1, - anon_sym_DOLLAR, - ACTIONS(8508), 1, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(4087), 1, anon_sym_DQUOTE, - ACTIONS(8511), 1, - sym_raw_string, - ACTIONS(8514), 1, - aux_sym_number_token1, - ACTIONS(8517), 1, - aux_sym_number_token2, - ACTIONS(8520), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8523), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8526), 1, - anon_sym_BQUOTE, - ACTIONS(8529), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8532), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8535), 1, + ACTIONS(7829), 1, sym_variable_name, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8496), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8499), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3214), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + STATE(4385), 1, sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183182] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7825), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8538), 1, - sym_raw_string, - ACTIONS(8540), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3447), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2942), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183262] = 23, - ACTIONS(71), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [183553] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8037), 1, + sym__special_character, + STATE(3409), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 28, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(8418), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8542), 1, - sym_raw_string, - ACTIONS(8544), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3448), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2980), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183342] = 23, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [183599] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + STATE(3423), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + sym_word, + ACTIONS(1233), 20, + sym_file_descriptor, sym_variable_name, - ACTIONS(8546), 1, - sym_raw_string, - ACTIONS(8548), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2947), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183422] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [183645] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(7819), 1, + anon_sym_DQUOTE, + ACTIONS(7823), 1, sym_variable_name, - ACTIONS(8550), 1, - sym_raw_string, - ACTIONS(8552), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2986), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + STATE(4283), 1, sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183502] = 5, + ACTIONS(7821), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7817), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [183697] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 10, + ACTIONS(7831), 1, + aux_sym_concatenation_token1, + ACTIONS(8039), 1, + sym__concat, + STATE(3429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232590,8 +233229,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4282), 20, + ACTIONS(1209), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232604,29 +233244,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183546] = 8, + [183745] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3512), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(7823), 1, sym_variable_name, - STATE(4218), 1, + STATE(4283), 1, sym_string, - ACTIONS(7418), 2, + ACTIONS(7821), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(7817), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -232635,14 +233275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 18, + ACTIONS(1183), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -232653,15 +233296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [183596] = 5, + [183797] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 10, + STATE(3423), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5435), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232671,8 +233314,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5563), 20, + ACTIONS(5437), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232685,22 +233329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183640] = 5, + [183843] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 10, + ACTIONS(7831), 1, + aux_sym_concatenation_token1, + ACTIONS(8041), 1, + sym__concat, + STATE(3429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232710,8 +233356,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5266), 20, + ACTIONS(1215), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232724,79 +233371,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183684] = 23, + [183891] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + STATE(3426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5439), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + sym_word, + ACTIONS(5441), 20, + sym_file_descriptor, sym_variable_name, - ACTIONS(8554), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8556), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3456), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2993), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183764] = 5, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [183937] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8558), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 10, + STATE(3426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2137), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232806,8 +233438,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 20, + ACTIONS(2139), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232820,323 +233453,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183808] = 8, - ACTIONS(3), 1, + [183983] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1191), 1, + STATE(3429), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8043), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1237), 20, sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [184029] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2082), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2084), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [183858] = 23, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [184075] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + STATE(3423), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4648), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + sym_word, + ACTIONS(4650), 20, + sym_file_descriptor, sym_variable_name, - ACTIONS(8561), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8563), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3010), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183938] = 22, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [184121] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + STATE(3426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7831), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4652), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4654), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [184167] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8579), 1, - sym_raw_string, - ACTIONS(8581), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8593), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8595), 1, - sym_variable_name, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3030), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(7839), 1, + sym__special_character, + ACTIONS(7841), 1, + sym_test_operator, + ACTIONS(8048), 1, + aux_sym_heredoc_redirect_token1, + STATE(5002), 1, + aux_sym__literal_repeat1, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3407), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7833), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(8046), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4549), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [184015] = 22, + sym_process_substitution, + [184245] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(1276), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8611), 1, - sym_raw_string, - ACTIONS(8613), 1, aux_sym_number_token1, - ACTIONS(8615), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8625), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8627), 1, + sym_word, + ACTIONS(1278), 22, + sym_file_descriptor, + sym__concat, sym_variable_name, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3029), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184092] = 22, - ACTIONS(71), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [184286] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(1627), 1, + sym__brace_start, + ACTIONS(8050), 1, + sym_word, + ACTIONS(8052), 1, + anon_sym_LPAREN, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8056), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8058), 1, + sym__special_character, + ACTIONS(8060), 1, + anon_sym_DQUOTE, + ACTIONS(8064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8066), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8068), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(8629), 1, + ACTIONS(8072), 1, + sym__comment_word, + ACTIONS(8074), 1, + sym__empty_value, + ACTIONS(8076), 1, + sym_test_operator, + STATE(1480), 1, + aux_sym__literal_repeat1, + ACTIONS(8062), 2, sym_raw_string, - ACTIONS(8631), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3032), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8070), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1558), 2, + sym_concatenation, + sym_array, + STATE(1100), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [184169] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [184367] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8078), 1, sym_word, - ACTIONS(8635), 1, - anon_sym_RPAREN, - ACTIONS(8637), 1, + ACTIONS(8080), 1, + anon_sym_LPAREN, + ACTIONS(8082), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8086), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8088), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8090), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8094), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8096), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8098), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8102), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8108), 1, + sym__comment_word, + ACTIONS(8110), 1, + sym__empty_value, + ACTIONS(8112), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8114), 1, sym__brace_start, - STATE(5388), 1, + STATE(4264), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8092), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8106), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3462), 2, + STATE(4551), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(4145), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233146,106 +233836,113 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184244] = 22, - ACTIONS(71), 1, + [184448] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(2417), 1, + sym__brace_start, + ACTIONS(8116), 1, + sym_word, + ACTIONS(8118), 1, + anon_sym_LPAREN, + ACTIONS(8120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8124), 1, + sym__special_character, + ACTIONS(8126), 1, + anon_sym_DQUOTE, + ACTIONS(8130), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8132), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8134), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(8667), 1, + ACTIONS(8138), 1, + sym__comment_word, + ACTIONS(8140), 1, + sym__empty_value, + ACTIONS(8142), 1, + sym_test_operator, + STATE(1603), 1, + aux_sym__literal_repeat1, + ACTIONS(8128), 2, sym_raw_string, - ACTIONS(8669), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3035), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8136), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1772), 2, + sym_concatenation, + sym_array, + STATE(1263), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [184321] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [184529] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1877), 1, + anon_sym_DOLLAR, + ACTIONS(1883), 1, + aux_sym_number_token1, + ACTIONS(1885), 1, + aux_sym_number_token2, + ACTIONS(1889), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1903), 1, + sym__brace_start, + ACTIONS(8144), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8146), 1, + anon_sym_LPAREN, + ACTIONS(8148), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8150), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8152), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8154), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8158), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8160), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8166), 1, + sym__comment_word, + ACTIONS(8168), 1, + sym__empty_value, + ACTIONS(8170), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8671), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(1618), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8156), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(1844), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(1270), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233255,326 +233952,433 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184396] = 22, - ACTIONS(71), 1, + [184610] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8172), 1, + sym_word, + ACTIONS(8174), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8176), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8182), 1, + sym__special_character, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(8673), 1, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8206), 1, + sym_test_operator, + ACTIONS(8208), 1, + sym__brace_start, + STATE(4235), 1, + aux_sym__literal_repeat1, + ACTIONS(8186), 2, sym_raw_string, - ACTIONS(8675), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3037), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4566), 2, + sym_concatenation, + sym_array, + STATE(4619), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [184473] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [184691] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8210), 1, + sym_word, + ACTIONS(8212), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8214), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8216), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8218), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8220), 1, + sym__special_character, + ACTIONS(8222), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8226), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8228), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8232), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8234), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(8677), 1, + ACTIONS(8240), 1, + sym__comment_word, + ACTIONS(8242), 1, + sym__empty_value, + ACTIONS(8244), 1, + sym_test_operator, + ACTIONS(8246), 1, + sym__brace_start, + STATE(4477), 1, + aux_sym__literal_repeat1, + ACTIONS(8224), 2, sym_raw_string, - ACTIONS(8679), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3173), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8238), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4771), 2, + sym_concatenation, + sym_array, + STATE(4273), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [184550] = 22, + sym_process_substitution, + [184772] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(1292), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, aux_sym_number_token1, - ACTIONS(8615), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + sym_word, + ACTIONS(1294), 22, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8681), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8683), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3039), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184627] = 22, - ACTIONS(71), 1, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [184813] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(4461), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4463), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4465), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(4467), 1, + sym__special_character, + ACTIONS(4469), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(4473), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(4475), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(4479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(4481), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(8685), 1, + ACTIONS(4489), 1, + sym__brace_start, + ACTIONS(8248), 1, + sym_word, + ACTIONS(8250), 1, + anon_sym_LPAREN, + ACTIONS(8254), 1, + sym__comment_word, + ACTIONS(8256), 1, + sym__empty_value, + ACTIONS(8258), 1, + sym_test_operator, + STATE(2728), 1, + aux_sym__literal_repeat1, + ACTIONS(4485), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8252), 2, sym_raw_string, - ACTIONS(8687), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3041), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2922), 2, + sym_concatenation, + sym_array, + STATE(2436), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [184704] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [184894] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8015), 1, + anon_sym_SLASH, + ACTIONS(8017), 1, + anon_sym_PERCENT, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8260), 1, + anon_sym_RBRACE3, + ACTIONS(8262), 1, + anon_sym_AT, + STATE(6336), 1, + aux_sym__expansion_body_repeat1, + STATE(6909), 1, + sym__expansion_expression, + STATE(6910), 1, + sym__expansion_regex, + STATE(6940), 1, + sym__expansion_regex_replacement, + STATE(6960), 1, + sym__expansion_regex_removal, + STATE(6961), 1, + sym__expansion_max_length, + STATE(6963), 1, + sym__expansion_operator, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8033), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8021), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8031), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8029), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [184967] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8174), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8176), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8180), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(8689), 1, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(8264), 1, + sym_word, + ACTIONS(8266), 1, + sym__special_character, + ACTIONS(8270), 1, + sym_test_operator, + STATE(4235), 1, + aux_sym__literal_repeat1, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8268), 2, sym_raw_string, - ACTIONS(8691), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3175), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(4566), 2, + sym_concatenation, + sym_array, + STATE(4419), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [184781] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [185048] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8015), 1, + anon_sym_SLASH, + ACTIONS(8017), 1, + anon_sym_PERCENT, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8023), 1, + anon_sym_RBRACE3, + ACTIONS(8262), 1, + anon_sym_AT, + STATE(6294), 1, + aux_sym__expansion_body_repeat1, + STATE(7242), 1, + sym__expansion_expression, + STATE(7256), 1, + sym__expansion_regex, + STATE(7303), 1, + sym__expansion_regex_replacement, + STATE(7331), 1, + sym__expansion_regex_removal, + STATE(7371), 1, + sym__expansion_max_length, + STATE(7507), 1, + sym__expansion_operator, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8033), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8021), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8031), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8029), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [185121] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + anon_sym_DOLLAR, + ACTIONS(2022), 1, + aux_sym_number_token1, + ACTIONS(2024), 1, + aux_sym_number_token2, + ACTIONS(2028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(8272), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8274), 1, + anon_sym_LPAREN, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8280), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8294), 1, + sym__comment_word, + ACTIONS(8296), 1, + sym__empty_value, + ACTIONS(8298), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8693), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(1837), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8284), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3470), 2, + STATE(2110), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(2273), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233584,106 +234388,169 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184856] = 22, + [185202] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(1308), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, aux_sym_number_token1, - ACTIONS(8615), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + sym_word, + ACTIONS(1310), 22, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8695), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8697), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3043), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184933] = 21, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [185243] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1284), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8637), 1, + ACTIONS(1286), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(8645), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [185284] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [185325] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_DOLLAR, + ACTIONS(2628), 1, + aux_sym_number_token1, + ACTIONS(2630), 1, + aux_sym_number_token2, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8300), 1, + sym_word, + ACTIONS(8302), 1, + anon_sym_LPAREN, + ACTIONS(8304), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8308), 1, + sym__special_character, + ACTIONS(8310), 1, + anon_sym_DQUOTE, + ACTIONS(8314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8322), 1, + sym__comment_word, + ACTIONS(8324), 1, + sym__empty_value, + ACTIONS(8326), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8699), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(1904), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8312), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(2211), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(1488), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233693,160 +234560,232 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185008] = 22, - ACTIONS(71), 1, + [185406] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(2056), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(2058), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(2062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(2076), 1, + sym__brace_start, + ACTIONS(8328), 1, + sym_word, + ACTIONS(8330), 1, + anon_sym_LPAREN, + ACTIONS(8332), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8334), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8336), 1, + sym__special_character, + ACTIONS(8338), 1, + anon_sym_DQUOTE, + ACTIONS(8342), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8344), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8346), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8701), 1, + ACTIONS(8350), 1, + sym__comment_word, + ACTIONS(8352), 1, + sym__empty_value, + ACTIONS(8354), 1, + sym_test_operator, + STATE(1846), 1, + aux_sym__literal_repeat1, + ACTIONS(8340), 2, sym_raw_string, - ACTIONS(8703), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3212), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8348), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2047), 2, + sym_concatenation, + sym_array, + STATE(1460), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [185085] = 21, + sym_process_substitution, + [185487] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(8360), 1, + sym_variable_name, + STATE(4728), 1, + sym_string, + ACTIONS(1197), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8358), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8356), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 18, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [185538] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1248), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8637), 1, + ACTIONS(1250), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(8645), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [185579] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(1254), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8705), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3473), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185160] = 21, - ACTIONS(71), 1, + [185620] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(8174), 1, + anon_sym_LPAREN, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8180), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(8707), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(8362), 1, + sym_word, + ACTIONS(8364), 1, + sym__special_character, + ACTIONS(8368), 1, + sym_test_operator, + STATE(4235), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + ACTIONS(8366), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(4453), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233856,51 +234795,109 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185235] = 21, - ACTIONS(71), 1, + [185701] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(8015), 1, + anon_sym_SLASH, + ACTIONS(8017), 1, + anon_sym_PERCENT, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8262), 1, + anon_sym_AT, + ACTIONS(8370), 1, + anon_sym_RBRACE3, + STATE(6289), 1, + aux_sym__expansion_body_repeat1, + STATE(6781), 1, + sym__expansion_regex_replacement, + STATE(6924), 1, + sym__expansion_expression, + STATE(7130), 1, + sym__expansion_regex, + STATE(7229), 1, + sym__expansion_operator, + STATE(7400), 1, + sym__expansion_regex_removal, + STATE(7429), 1, + sym__expansion_max_length, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8033), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8021), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8031), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8029), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [185774] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(4209), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(4211), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(4213), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(4215), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(4219), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(4221), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(4223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(4227), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(4239), 1, sym__brace_start, - ACTIONS(8709), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(8372), 1, + sym_word, + ACTIONS(8374), 1, + anon_sym_LPAREN, + ACTIONS(8378), 1, + sym__comment_word, + ACTIONS(8380), 1, + sym__empty_value, + ACTIONS(8382), 1, + sym_test_operator, + STATE(2747), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(4231), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + ACTIONS(8376), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2944), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(2447), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233910,214 +234907,169 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185310] = 22, - ACTIONS(71), 1, + [185855] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(1233), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 29, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(8609), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(8613), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8615), 1, aux_sym_number_token2, - ACTIONS(8617), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(8711), 1, - sym_raw_string, - ACTIONS(8713), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3045), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [185387] = 21, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [185896] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(1280), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8649), 1, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(1282), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8715), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185462] = 21, + [185937] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(1256), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8649), 1, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(1258), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8717), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185537] = 21, - ACTIONS(71), 1, + [185978] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8384), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8386), 1, + anon_sym_LPAREN, + ACTIONS(8388), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8392), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8394), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8396), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8400), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8402), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8404), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8406), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8408), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8414), 1, + sym__comment_word, + ACTIONS(8416), 1, + sym__empty_value, + ACTIONS(8418), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8420), 1, sym__brace_start, - ACTIONS(8719), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(5261), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8398), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3479), 2, + STATE(5483), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(5203), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234127,105 +235079,131 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185612] = 21, + [186059] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1260), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8637), 1, + ACTIONS(1262), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(8645), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [186100] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1235), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(1237), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8721), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185687] = 21, - ACTIONS(71), 1, + [186141] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(8174), 1, + anon_sym_LPAREN, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8180), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(8723), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(8422), 1, + sym_word, + ACTIONS(8424), 1, + sym__special_character, + ACTIONS(8428), 1, + sym_test_operator, + STATE(4235), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3485), 2, + ACTIONS(8426), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(4514), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234235,159 +235213,174 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185762] = 21, - ACTIONS(71), 1, + [186222] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(8360), 1, + sym_variable_name, + STATE(4728), 1, + sym_string, + ACTIONS(1191), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8358), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8356), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 18, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, sym__special_character, - ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8649), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8725), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3482), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185837] = 21, + sym_word, + [186273] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1312), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8637), 1, + ACTIONS(1314), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(8645), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [186314] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1264), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(1266), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8727), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185912] = 21, - ACTIONS(71), 1, + [186355] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(6130), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(6134), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(6136), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(6138), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(6142), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(6144), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(6150), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(6152), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(6158), 1, sym__brace_start, - ACTIONS(8729), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(8430), 1, + sym_word, + ACTIONS(8432), 1, + anon_sym_LPAREN, + ACTIONS(8436), 1, + sym__comment_word, + ACTIONS(8438), 1, + sym__empty_value, + ACTIONS(8440), 1, + sym_test_operator, + STATE(3508), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(6154), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3484), 2, + ACTIONS(8434), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3547), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(3414), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234397,159 +235390,207 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185987] = 21, + [186436] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1296), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8637), 1, + ACTIONS(1298), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(8645), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [186477] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(1302), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8731), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186062] = 21, + [186518] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1288), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(8637), 1, + ACTIONS(1290), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(8645), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [186559] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(1306), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8733), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186137] = 21, - ACTIONS(71), 1, + [186600] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1980), 1, + anon_sym_DOLLAR, + ACTIONS(1986), 1, + aux_sym_number_token1, + ACTIONS(1988), 1, + aux_sym_number_token2, + ACTIONS(1992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2002), 1, + sym__brace_start, + ACTIONS(8442), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8444), 1, + anon_sym_LPAREN, + ACTIONS(8446), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8448), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8450), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8452), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8456), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8458), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8460), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8464), 1, + sym__comment_word, + ACTIONS(8466), 1, + sym__empty_value, + ACTIONS(8468), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8735), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(1452), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8454), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3487), 2, + STATE(1546), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(1094), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234559,51 +235600,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186212] = 21, - ACTIONS(71), 1, + [186681] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8302), 1, + anon_sym_LPAREN, + ACTIONS(8304), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8310), 1, + anon_sym_DQUOTE, + ACTIONS(8314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8322), 1, + sym__comment_word, + ACTIONS(8324), 1, + sym__empty_value, + ACTIONS(8470), 1, + sym_word, + ACTIONS(8472), 1, + sym__special_character, + ACTIONS(8476), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8737), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(1904), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + ACTIONS(8474), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2211), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(1717), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234613,51 +235658,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186287] = 21, - ACTIONS(71), 1, + [186762] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_RPAREN, - ACTIONS(8739), 1, - sym_word, - ACTIONS(8742), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8745), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8748), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(8751), 1, - sym__special_character, - ACTIONS(8754), 1, - anon_sym_DQUOTE, - ACTIONS(8760), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(8763), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(8766), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8769), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8772), 1, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(8274), 1, + anon_sym_LPAREN, + ACTIONS(8276), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8278), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8282), 1, + anon_sym_DQUOTE, + ACTIONS(8286), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(8775), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8781), 1, + ACTIONS(8294), 1, + sym__comment_word, + ACTIONS(8296), 1, + sym__empty_value, + ACTIONS(8478), 1, + sym_word, + ACTIONS(8480), 1, + sym__special_character, + ACTIONS(8484), 1, sym_test_operator, - ACTIONS(8784), 1, - sym__brace_start, - STATE(5388), 1, + STATE(1837), 1, aux_sym__literal_repeat1, - ACTIONS(8757), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8778), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + ACTIONS(8482), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2110), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(1511), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234667,51 +235716,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186362] = 21, - ACTIONS(71), 1, + [186843] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(2016), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(8274), 1, + anon_sym_LPAREN, + ACTIONS(8276), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8278), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8282), 1, + anon_sym_DQUOTE, + ACTIONS(8286), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8294), 1, + sym__comment_word, + ACTIONS(8296), 1, + sym__empty_value, + ACTIONS(8486), 1, + sym_word, + ACTIONS(8488), 1, + sym__special_character, + ACTIONS(8492), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8787), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(1837), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3490), 2, + ACTIONS(8490), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2110), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(1731), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234721,51 +235774,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186437] = 21, - ACTIONS(71), 1, + [186924] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(8174), 1, + anon_sym_LPAREN, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8180), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8202), 1, + sym__comment_word, + ACTIONS(8204), 1, + sym__empty_value, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(8789), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(8494), 1, + sym_word, + ACTIONS(8496), 1, + sym__special_character, + ACTIONS(8500), 1, + sym_test_operator, + STATE(4235), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + ACTIONS(8498), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4566), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym_array, + STATE(5104), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234775,10 +235832,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186512] = 3, + [187005] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5860), 10, + ACTIONS(1268), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -234788,9 +235845,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5872), 21, + ACTIONS(1270), 22, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -234802,60 +235861,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [186551] = 21, + [187046] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8794), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8796), 1, + ACTIONS(2979), 1, + anon_sym_DOLLAR, + ACTIONS(2985), 1, + aux_sym_number_token1, + ACTIONS(2987), 1, + aux_sym_number_token2, + ACTIONS(2991), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3001), 1, + sym__brace_start, + ACTIONS(8502), 1, + sym_word, + ACTIONS(8504), 1, + anon_sym_LPAREN, + ACTIONS(8506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8799), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8802), 1, - anon_sym_DOLLAR, - ACTIONS(8805), 1, + ACTIONS(8510), 1, sym__special_character, - ACTIONS(8808), 1, + ACTIONS(8512), 1, anon_sym_DQUOTE, - ACTIONS(8811), 1, - aux_sym_number_token1, - ACTIONS(8814), 1, - aux_sym_number_token2, - ACTIONS(8817), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8823), 1, + ACTIONS(8518), 1, anon_sym_BQUOTE, - ACTIONS(8826), 1, + ACTIONS(8520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(8524), 1, + sym__comment_word, + ACTIONS(8526), 1, + sym__empty_value, + ACTIONS(8528), 1, sym_test_operator, - ACTIONS(8835), 1, - sym__brace_start, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(1886), 1, aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(8829), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8791), 3, + ACTIONS(8514), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(8522), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2072), 2, + sym_concatenation, + sym_array, + STATE(1381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234865,327 +235928,243 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186626] = 22, + [187127] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(1272), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + sym_word, + ACTIONS(1274), 22, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(8838), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8840), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2752), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [186703] = 22, - ACTIONS(71), 1, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187168] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8842), 1, - sym_raw_string, - ACTIONS(8844), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2617), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [186780] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8302), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8304), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8846), 1, + ACTIONS(8322), 1, + sym__comment_word, + ACTIONS(8324), 1, + sym__empty_value, + ACTIONS(8530), 1, + sym_word, + ACTIONS(8532), 1, + sym__special_character, + ACTIONS(8536), 1, + sym_test_operator, + STATE(1904), 1, + aux_sym__literal_repeat1, + ACTIONS(8320), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8534), 2, sym_raw_string, - ACTIONS(8848), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2765), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2211), 2, + sym_concatenation, + sym_array, + STATE(2357), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [186857] = 22, + sym_process_substitution, + [187249] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8015), 1, + anon_sym_SLASH, + ACTIONS(8017), 1, + anon_sym_PERCENT, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8262), 1, + anon_sym_AT, + ACTIONS(8538), 1, + anon_sym_RBRACE3, + STATE(6383), 1, + aux_sym__expansion_body_repeat1, + STATE(7125), 1, + sym__expansion_expression, + STATE(7164), 1, + sym__expansion_regex, + STATE(7231), 1, + sym__expansion_regex_replacement, + STATE(7317), 1, + sym__expansion_regex_removal, + STATE(7330), 1, + sym__expansion_max_length, + STATE(7335), 1, + sym__expansion_operator, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8033), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8021), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8031), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8029), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [187322] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8540), 1, + sym__special_character, + STATE(3485), 1, + aux_sym__literal_repeat1, + ACTIONS(4682), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + sym_word, + ACTIONS(4684), 20, + sym_file_descriptor, sym_variable_name, - ACTIONS(8850), 1, - sym_raw_string, - ACTIONS(8852), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2619), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [186934] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8854), 1, - sym_raw_string, - ACTIONS(8856), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2766), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [187011] = 22, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187366] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8556), 1, + sym_raw_string, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8858), 1, - sym_raw_string, - ACTIONS(8860), 1, + ACTIONS(8570), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + ACTIONS(8572), 1, + sym_variable_name, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2767), 9, + STATE(2906), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235195,106 +236174,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187088] = 21, + [187446] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6390), 1, + ACTIONS(8574), 1, + sym__special_character, + STATE(3485), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6396), 1, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, + sym_word, + ACTIONS(1320), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(7508), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8862), 1, - sym_word, - ACTIONS(8866), 1, - sym_test_operator, - STATE(6356), 1, - aux_sym__literal_repeat1, - ACTIONS(7524), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8864), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6611), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6248), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187163] = 22, + [187490] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8868), 1, + ACTIONS(8577), 1, sym_raw_string, - ACTIONS(8870), 1, + ACTIONS(8579), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3488), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2768), 9, + STATE(2860), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235304,52 +236270,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187240] = 22, + [187570] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8872), 1, + ACTIONS(8581), 1, sym_raw_string, - ACTIONS(8874), 1, + ACTIONS(8583), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2623), 9, + STATE(2910), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235359,52 +236327,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187317] = 22, + [187650] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8876), 1, + ACTIONS(8585), 1, sym_raw_string, - ACTIONS(8878), 1, + ACTIONS(8587), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2889), 9, + STATE(3004), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235414,104 +236384,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187394] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7740), 1, - anon_sym_RBRACE3, - ACTIONS(7742), 1, - anon_sym_AT, - ACTIONS(7744), 1, - anon_sym_STAR2, - ACTIONS(8880), 1, - anon_sym_LBRACK, - STATE(6898), 1, - sym__expansion_max_length, - STATE(7219), 1, - sym__expansion_operator, - STATE(7245), 1, - sym__expansion_expression, - STATE(7425), 1, - sym__expansion_regex, - STATE(7426), 1, - sym__expansion_regex_replacement, - STATE(7427), 1, - sym__expansion_regex_removal, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [187465] = 22, + [187730] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8882), 1, + ACTIONS(8589), 1, sym_raw_string, - ACTIONS(8884), 1, + ACTIONS(8591), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3492), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3203), 9, + STATE(2967), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235521,107 +236441,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187542] = 22, + [187810] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8540), 1, + sym__special_character, + STATE(3485), 1, + aux_sym__literal_repeat1, + ACTIONS(5435), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, aux_sym_number_token1, - ACTIONS(8615), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, - anon_sym_BQUOTE, - ACTIONS(8623), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + sym_word, + ACTIONS(5437), 20, + sym_file_descriptor, sym_variable_name, - ACTIONS(8886), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8888), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3208), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [187619] = 22, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187854] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8890), 1, + ACTIONS(8593), 1, sym_raw_string, - ACTIONS(8892), 1, + ACTIONS(8595), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3210), 9, + STATE(2953), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235631,106 +236537,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187696] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8894), 1, - sym_word, - ACTIONS(8898), 1, - sym_test_operator, - STATE(6413), 1, - aux_sym__literal_repeat1, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8896), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6660), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6313), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187771] = 22, + [187934] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8900), 1, + ACTIONS(8597), 1, sym_raw_string, - ACTIONS(8902), 1, + ACTIONS(8599), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2771), 9, + STATE(2965), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235740,21 +236594,21 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187848] = 8, + [188014] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(8603), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(8607), 1, sym_variable_name, - STATE(4349), 1, + STATE(5164), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(8605), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(8601), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -235763,7 +236617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 17, + ACTIONS(1183), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -235772,6 +236626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -235780,53 +236635,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [187897] = 22, + anon_sym_LT_LT_LT, + [188064] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8609), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8612), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8621), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8624), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8627), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8630), 1, + sym_raw_string, + ACTIONS(8633), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8636), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8639), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8642), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8645), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8648), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8904), 1, - sym_raw_string, - ACTIONS(8906), 1, + ACTIONS(8651), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + ACTIONS(8654), 1, + sym_variable_name, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8615), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8618), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2656), 9, + STATE(3095), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235836,76 +236693,63 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187974] = 22, - ACTIONS(71), 1, + [188144] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, - ACTIONS(8583), 1, - aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7588), 1, sym_variable_name, - ACTIONS(8908), 1, - sym_raw_string, - ACTIONS(8910), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3147), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + STATE(4320), 1, sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [188051] = 8, + ACTIONS(7586), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7584), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [188194] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(7588), 1, sym_variable_name, - STATE(4349), 1, + STATE(4320), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(7586), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(7584), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -235914,7 +236758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 17, + ACTIONS(1183), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -235932,52 +236776,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [188100] = 22, + anon_sym_LT_LT_LT, + [188244] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8912), 1, + ACTIONS(8657), 1, sym_raw_string, - ACTIONS(8914), 1, + ACTIONS(8659), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3503), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3149), 9, + STATE(2986), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235987,52 +236834,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188177] = 22, + [188324] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8916), 1, + ACTIONS(8661), 1, sym_raw_string, - ACTIONS(8918), 1, + ACTIONS(8663), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3487), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3158), 9, + STATE(3048), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236042,52 +236891,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188254] = 22, + [188404] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8920), 1, + ACTIONS(8665), 1, sym_raw_string, - ACTIONS(8922), 1, + ACTIONS(8667), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3491), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2772), 9, + STATE(2918), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236097,10 +236948,14 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188331] = 3, + [188484] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 10, + ACTIONS(8540), 1, + sym__special_character, + STATE(3485), 1, + aux_sym__literal_repeat1, + ACTIONS(5699), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236111,7 +236966,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2162), 21, + ACTIONS(5701), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -236124,182 +236979,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [188370] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8924), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188445] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8926), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188520] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8928), 1, sym_raw_string, - ACTIONS(8930), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2773), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [188597] = 3, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188528] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 10, + ACTIONS(8540), 1, + sym__special_character, + STATE(3485), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236310,7 +237005,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4313), 21, + ACTIONS(5709), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -236323,7 +237018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -236332,52 +237026,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188636] = 22, + [188572] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8932), 1, + ACTIONS(8669), 1, sym_raw_string, - ACTIONS(8934), 1, + ACTIONS(8671), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3510), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2774), 9, + STATE(3075), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236387,52 +237083,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188713] = 22, + [188652] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8936), 1, + ACTIONS(8673), 1, sym_raw_string, - ACTIONS(8938), 1, + ACTIONS(8675), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2659), 9, + STATE(3058), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236442,52 +237140,96 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188790] = 22, + [188732] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(8603), 1, + anon_sym_DQUOTE, + ACTIONS(8607), 1, + sym_variable_name, + STATE(5164), 1, + sym_string, + ACTIONS(8605), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8601), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [188782] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8940), 1, + ACTIONS(8677), 1, sym_raw_string, - ACTIONS(8942), 1, + ACTIONS(8679), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3511), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3179), 9, + STATE(2963), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236497,106 +237239,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188867] = 21, + [188862] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8540), 1, sym__special_character, - ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8649), 1, + STATE(3485), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8651), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, - anon_sym_BQUOTE, - ACTIONS(8659), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + sym_word, + ACTIONS(4650), 20, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8665), 1, sym__brace_start, - ACTIONS(8944), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3530), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188942] = 22, + [188906] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8946), 1, + ACTIONS(8681), 1, sym_raw_string, - ACTIONS(8948), 1, + ACTIONS(8683), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3509), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3180), 9, + STATE(2920), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236606,106 +237335,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189019] = 21, - ACTIONS(3), 1, + [188986] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(8540), 1, sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, + STATE(3485), 1, + aux_sym__literal_repeat1, + ACTIONS(5292), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(3566), 1, aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + sym_word, + ACTIONS(5294), 20, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3582), 1, sym__brace_start, - ACTIONS(8950), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189094] = 22, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189030] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8952), 1, + ACTIONS(8685), 1, sym_raw_string, - ACTIONS(8954), 1, + ACTIONS(8687), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3181), 9, + STATE(2959), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236715,214 +237431,111 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189171] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8956), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189246] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8958), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189321] = 21, + [189110] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8960), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(8689), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8691), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3074), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [189396] = 22, + [189190] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8962), 1, + ACTIONS(8693), 1, sym_raw_string, - ACTIONS(8964), 1, + ACTIONS(8695), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3494), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2791), 9, + STATE(3033), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236932,52 +237545,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189473] = 22, + [189270] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8966), 1, + ACTIONS(8697), 1, sym_raw_string, - ACTIONS(8968), 1, + ACTIONS(8699), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3484), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3155), 9, + STATE(2875), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236987,52 +237602,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189550] = 22, + [189350] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8715), 1, + sym_raw_string, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8970), 1, - sym_raw_string, - ACTIONS(8972), 1, + ACTIONS(8729), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + ACTIONS(8731), 1, + sym_variable_name, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2803), 9, + STATE(3187), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237042,52 +237657,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189627] = 22, + [189427] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8974), 1, + ACTIONS(8733), 1, sym_raw_string, - ACTIONS(8976), 1, + ACTIONS(8735), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3197), 9, + STATE(2687), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237097,160 +237712,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189704] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8978), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189779] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8980), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189854] = 22, + [189504] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8982), 1, + ACTIONS(8737), 1, sym_raw_string, - ACTIONS(8984), 1, + ACTIONS(8739), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2775), 9, + STATE(2635), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237260,52 +237767,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189931] = 22, + [189581] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(8986), 1, + ACTIONS(8741), 1, sym_raw_string, - ACTIONS(8988), 1, + ACTIONS(8743), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2667), 9, + STATE(3145), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237315,52 +237822,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190008] = 22, + [189658] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(8990), 1, + ACTIONS(8745), 1, sym_raw_string, - ACTIONS(8992), 1, + ACTIONS(8747), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3235), 9, + STATE(2857), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237370,159 +237877,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190085] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8994), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190160] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8996), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190235] = 21, + [189735] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8751), 1, + anon_sym_RPAREN, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(8998), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3545), 2, + STATE(3541), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237532,52 +237931,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190310] = 22, + [189810] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9000), 1, + ACTIONS(8783), 1, sym_raw_string, - ACTIONS(9002), 1, + ACTIONS(8785), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2669), 9, + STATE(2637), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237587,52 +237986,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190387] = 22, + [189887] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9004), 1, + ACTIONS(8787), 1, sym_raw_string, - ACTIONS(9006), 1, + ACTIONS(8789), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3257), 9, + STATE(3147), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237642,51 +238041,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190464] = 21, - ACTIONS(71), 1, + [189964] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(3126), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(9008), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(8791), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + ACTIONS(3106), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237696,52 +238095,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190539] = 22, + [190039] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9010), 1, + ACTIONS(8793), 1, sym_raw_string, - ACTIONS(9012), 1, + ACTIONS(8795), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2671), 9, + STATE(2638), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237751,52 +238150,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190616] = 22, + [190116] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9014), 1, + ACTIONS(8797), 1, sym_raw_string, - ACTIONS(9016), 1, + ACTIONS(8799), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3268), 9, + STATE(3148), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237806,52 +238205,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190693] = 22, + [190193] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9018), 1, + ACTIONS(8801), 1, sym_raw_string, - ACTIONS(9020), 1, + ACTIONS(8803), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2672), 9, + STATE(2640), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237861,52 +238260,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190770] = 22, + [190270] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9022), 1, + ACTIONS(8805), 1, sym_raw_string, - ACTIONS(9024), 1, + ACTIONS(8807), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3280), 9, + STATE(3150), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237916,51 +238315,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190847] = 21, + [190347] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(9026), 1, + ACTIONS(8809), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3552), 2, + STATE(3529), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237970,105 +238369,161 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190922] = 21, - ACTIONS(3), 1, + [190422] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(9028), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(8811), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8813), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2641), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [190997] = 21, + [190499] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, + anon_sym_DOLLAR, + ACTIONS(8713), 1, + anon_sym_DQUOTE, + ACTIONS(8717), 1, + aux_sym_number_token1, + ACTIONS(8719), 1, + aux_sym_number_token2, + ACTIONS(8721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, + anon_sym_BQUOTE, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(8815), 1, + sym_raw_string, + ACTIONS(8817), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3151), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [190576] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8749), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(9030), 1, + ACTIONS(8819), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238078,52 +238533,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191072] = 22, + [190651] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9032), 1, + ACTIONS(8821), 1, sym_raw_string, - ACTIONS(9034), 1, + ACTIONS(8823), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2673), 9, + STATE(2642), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238133,52 +238588,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191149] = 22, + [190728] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9036), 1, + ACTIONS(8825), 1, sym_raw_string, - ACTIONS(9038), 1, + ACTIONS(8827), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3020), 9, + STATE(3152), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238188,52 +238643,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191226] = 22, + [190805] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9040), 1, + ACTIONS(8829), 1, sym_raw_string, - ACTIONS(9042), 1, + ACTIONS(8831), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2674), 9, + STATE(2701), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238243,52 +238698,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191303] = 22, + [190882] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9044), 1, + ACTIONS(8833), 1, sym_raw_string, - ACTIONS(9046), 1, + ACTIONS(8835), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3023), 9, + STATE(2644), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238298,52 +238753,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191380] = 22, + [190959] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9048), 1, + ACTIONS(8837), 1, sym_raw_string, - ACTIONS(9050), 1, + ACTIONS(8839), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2675), 9, + STATE(3153), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238353,52 +238808,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191457] = 22, + [191036] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9052), 1, + ACTIONS(8841), 1, sym_raw_string, - ACTIONS(9054), 1, + ACTIONS(8843), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3026), 9, + STATE(2766), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238408,52 +238863,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191534] = 22, + [191113] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9056), 1, + ACTIONS(8845), 1, sym_raw_string, - ACTIONS(9058), 1, + ACTIONS(8847), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2850), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [191190] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, + anon_sym_DOLLAR, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, + aux_sym_number_token1, + ACTIONS(8560), 1, + aux_sym_number_token2, + ACTIONS(8562), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, + anon_sym_BQUOTE, + ACTIONS(8568), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(8849), 1, + sym_raw_string, + ACTIONS(8851), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2676), 9, + STATE(2645), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238463,52 +238973,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191611] = 22, + [191267] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9060), 1, + ACTIONS(8853), 1, sym_raw_string, - ACTIONS(9062), 1, + ACTIONS(8855), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3028), 9, + STATE(3154), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238518,51 +239028,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191688] = 21, + [191344] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(9064), 1, + ACTIONS(8857), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3562), 2, + STATE(3540), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238572,51 +239082,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191763] = 21, + [191419] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(8859), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238626,106 +239136,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191838] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9068), 1, - sym_raw_string, - ACTIONS(9070), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2678), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [191915] = 21, + [191494] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(9072), 1, + ACTIONS(8861), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3474), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238735,52 +239190,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191990] = 22, + [191569] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9074), 1, + ACTIONS(8863), 1, sym_raw_string, - ACTIONS(9076), 1, + ACTIONS(8865), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2679), 9, + STATE(2647), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238790,52 +239245,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192067] = 22, + [191646] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9078), 1, + ACTIONS(8867), 1, sym_raw_string, - ACTIONS(9080), 1, + ACTIONS(8869), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3033), 9, + STATE(3156), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238845,52 +239300,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192144] = 22, + [191723] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9082), 1, + ACTIONS(8871), 1, sym_raw_string, - ACTIONS(9084), 1, + ACTIONS(8873), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2680), 9, + STATE(2649), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238900,52 +239355,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192221] = 22, + [191800] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9086), 1, + ACTIONS(8875), 1, sym_raw_string, - ACTIONS(9088), 1, + ACTIONS(8877), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3036), 9, + STATE(3157), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238955,107 +239410,178 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192298] = 22, + [191877] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(4686), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4688), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(8422), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191916] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5296), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5298), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191955] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3134), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9090), 1, + ACTIONS(3146), 1, + sym_test_operator, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(8879), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, sym_raw_string, - ACTIONS(9092), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2681), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192375] = 22, + sym_process_substitution, + [192030] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9094), 1, + ACTIONS(8881), 1, sym_raw_string, - ACTIONS(9096), 1, + ACTIONS(8883), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3038), 9, + STATE(2651), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239065,52 +239591,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192452] = 22, + [192107] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9098), 1, + ACTIONS(8885), 1, sym_raw_string, - ACTIONS(9100), 1, + ACTIONS(8887), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2682), 9, + STATE(3158), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239120,107 +239646,147 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192529] = 22, - ACTIONS(71), 1, + [192184] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(4087), 1, + anon_sym_DQUOTE, + ACTIONS(7829), 1, + sym_variable_name, + STATE(4385), 1, + sym_string, + ACTIONS(7827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7825), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(8577), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [192233] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9102), 1, + ACTIONS(3146), 1, + sym_test_operator, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(8889), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, sym_raw_string, - ACTIONS(9104), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3040), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192606] = 22, + sym_process_substitution, + [192308] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9106), 1, + ACTIONS(8891), 1, sym_raw_string, - ACTIONS(9108), 1, + ACTIONS(8893), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2683), 9, + STATE(2653), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239230,52 +239796,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192683] = 22, + [192385] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9110), 1, + ACTIONS(8895), 1, sym_raw_string, - ACTIONS(9112), 1, + ACTIONS(8897), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3042), 9, + STATE(3159), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239285,52 +239851,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192760] = 22, + [192462] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9114), 1, + ACTIONS(8899), 1, sym_raw_string, - ACTIONS(9116), 1, + ACTIONS(8901), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2684), 9, + STATE(2655), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239340,52 +239906,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192837] = 22, + [192539] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9118), 1, + ACTIONS(8903), 1, sym_raw_string, - ACTIONS(9120), 1, + ACTIONS(8905), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3044), 9, + STATE(3162), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239395,107 +239961,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192914] = 22, + [192616] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9122), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(8907), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9124), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2685), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3602), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192991] = 22, + sym_process_substitution, + [192691] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9126), 1, + ACTIONS(8909), 1, sym_raw_string, - ACTIONS(9128), 1, + ACTIONS(8911), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3046), 9, + STATE(3101), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239505,107 +240070,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193068] = 22, + [192768] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9130), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(8913), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9132), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3025), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3562), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193145] = 22, + sym_process_substitution, + [192843] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9134), 1, + ACTIONS(8915), 1, sym_raw_string, - ACTIONS(9136), 1, + ACTIONS(8917), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3048), 9, + STATE(2656), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239615,52 +240179,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193222] = 22, + [192920] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9138), 1, + ACTIONS(8919), 1, sym_raw_string, - ACTIONS(9140), 1, + ACTIONS(8921), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2688), 9, + STATE(3164), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239670,107 +240234,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193299] = 22, + [192997] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9142), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(8923), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9144), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3050), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193376] = 22, + sym_process_substitution, + [193072] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9146), 1, + ACTIONS(8925), 1, sym_raw_string, - ACTIONS(9148), 1, + ACTIONS(8927), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2689), 9, + STATE(2799), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239780,107 +240343,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193453] = 22, + [193149] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, + sym__brace_start, + ACTIONS(7676), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7678), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9150), 1, + ACTIONS(8929), 1, + sym_word, + ACTIONS(8933), 1, + sym_test_operator, + STATE(6276), 1, + aux_sym__literal_repeat1, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8931), 2, sym_raw_string, - ACTIONS(9152), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3052), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(6576), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6233), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193530] = 22, + sym_process_substitution, + [193224] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9154), 1, + ACTIONS(8935), 1, sym_raw_string, - ACTIONS(9156), 1, + ACTIONS(8937), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2690), 9, + STATE(2806), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239890,52 +240452,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193607] = 22, + [193301] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9158), 1, + ACTIONS(8939), 1, sym_raw_string, - ACTIONS(9160), 1, + ACTIONS(8941), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3054), 9, + STATE(2657), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239945,52 +240507,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193684] = 22, + [193378] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9162), 1, + ACTIONS(8943), 1, sym_raw_string, - ACTIONS(9164), 1, + ACTIONS(8945), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2691), 9, + STATE(3166), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240000,52 +240562,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193761] = 22, + [193455] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9166), 1, + ACTIONS(8947), 1, sym_raw_string, - ACTIONS(9168), 1, + ACTIONS(8949), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3055), 9, + STATE(2921), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240055,49 +240617,49 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193838] = 22, + [193532] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9170), 1, + ACTIONS(8951), 1, sym_raw_string, - ACTIONS(9172), 1, + ACTIONS(8953), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, STATE(2692), 9, @@ -240110,52 +240672,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193915] = 22, + [193609] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9174), 1, + ACTIONS(8955), 1, sym_raw_string, - ACTIONS(9176), 1, + ACTIONS(8957), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3057), 9, + STATE(2790), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240165,52 +240727,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193992] = 22, + [193686] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9178), 1, + ACTIONS(8959), 1, sym_raw_string, - ACTIONS(9180), 1, + ACTIONS(8961), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2693), 9, + STATE(2658), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240220,52 +240782,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194069] = 22, + [193763] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9182), 1, + ACTIONS(8963), 1, sym_raw_string, - ACTIONS(9184), 1, + ACTIONS(8965), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3058), 9, + STATE(3168), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240275,52 +240837,158 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194146] = 22, + [193840] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3134), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3138), 1, + anon_sym_BQUOTE, + ACTIONS(3140), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3146), 1, + sym_test_operator, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(8967), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193915] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8015), 1, + anon_sym_SLASH, + ACTIONS(8017), 1, + anon_sym_PERCENT, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8023), 1, + anon_sym_RBRACE3, + ACTIONS(8025), 1, + anon_sym_AT, + ACTIONS(8027), 1, + anon_sym_STAR2, + ACTIONS(8969), 1, + anon_sym_LBRACK, + STATE(6778), 1, + sym__expansion_expression, + STATE(6786), 1, + sym__expansion_regex, + STATE(6840), 1, + sym__expansion_regex_replacement, + STATE(6863), 1, + sym__expansion_regex_removal, + STATE(6879), 1, + sym__expansion_max_length, + STATE(6890), 1, + sym__expansion_operator, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8033), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8021), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8031), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8029), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [193986] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9186), 1, + ACTIONS(8971), 1, sym_raw_string, - ACTIONS(9188), 1, + ACTIONS(8973), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2694), 9, + STATE(2659), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240330,52 +240998,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194223] = 22, + [194063] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9190), 1, + ACTIONS(8975), 1, sym_raw_string, - ACTIONS(9192), 1, + ACTIONS(8977), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3060), 9, + STATE(3169), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240385,52 +241053,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194300] = 22, + [194140] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9194), 1, + ACTIONS(8979), 1, sym_raw_string, - ACTIONS(9196), 1, + ACTIONS(8981), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3266), 9, + STATE(2661), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240440,52 +241108,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194377] = 22, + [194217] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9198), 1, + ACTIONS(8983), 1, sym_raw_string, - ACTIONS(9200), 1, + ACTIONS(8985), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2695), 9, + STATE(3172), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240495,52 +241163,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194454] = 22, + [194294] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9001), 1, + sym_raw_string, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9202), 1, - sym_raw_string, - ACTIONS(9204), 1, + ACTIONS(9015), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + ACTIONS(9017), 1, + sym_variable_name, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3061), 9, + STATE(3078), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240550,52 +241218,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194531] = 22, + [194371] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9206), 1, + ACTIONS(9019), 1, sym_raw_string, - ACTIONS(9208), 1, + ACTIONS(9021), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3269), 9, + STATE(2663), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240605,52 +241273,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194608] = 22, + [194448] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9210), 1, + ACTIONS(9023), 1, sym_raw_string, - ACTIONS(9212), 1, + ACTIONS(9025), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3270), 9, + STATE(3174), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240660,52 +241328,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194685] = 22, + [194525] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9214), 1, + ACTIONS(9027), 1, sym_raw_string, - ACTIONS(9216), 1, + ACTIONS(9029), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3271), 9, + STATE(2852), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240715,52 +241383,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194762] = 22, + [194602] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9218), 1, + ACTIONS(9031), 1, sym_raw_string, - ACTIONS(9220), 1, + ACTIONS(9033), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2696), 9, + STATE(2782), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240770,52 +241438,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194839] = 22, + [194679] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9222), 1, + ACTIONS(9035), 1, sym_raw_string, - ACTIONS(9224), 1, + ACTIONS(9037), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3063), 9, + STATE(2665), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240825,52 +241493,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194916] = 22, + [194756] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9226), 1, + ACTIONS(9039), 1, sym_raw_string, - ACTIONS(9228), 1, + ACTIONS(9041), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3273), 9, + STATE(3175), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240880,52 +241548,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194993] = 22, + [194833] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9230), 1, + ACTIONS(9043), 1, sym_raw_string, - ACTIONS(9232), 1, + ACTIONS(9045), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2697), 9, + STATE(3125), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240935,52 +241603,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195070] = 22, + [194910] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9234), 1, + ACTIONS(9047), 1, sym_raw_string, - ACTIONS(9236), 1, + ACTIONS(9049), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3065), 9, + STATE(2667), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240990,52 +241658,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195147] = 22, + [194987] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9238), 1, + ACTIONS(9051), 1, sym_raw_string, - ACTIONS(9240), 1, + ACTIONS(9053), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3276), 9, + STATE(3176), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241045,52 +241713,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195224] = 22, + [195064] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3134), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3138), 1, + anon_sym_BQUOTE, + ACTIONS(3140), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3146), 1, + sym_test_operator, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(9055), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195139] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9242), 1, + ACTIONS(9057), 1, sym_raw_string, - ACTIONS(9244), 1, + ACTIONS(9059), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2698), 9, + STATE(3077), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241100,52 +241822,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195301] = 22, + [195216] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9246), 1, + ACTIONS(9061), 1, sym_raw_string, - ACTIONS(9248), 1, + ACTIONS(9063), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3067), 9, + STATE(2669), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241155,52 +241877,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195378] = 22, + [195293] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9250), 1, + ACTIONS(9065), 1, sym_raw_string, - ACTIONS(9252), 1, + ACTIONS(9067), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3278), 9, + STATE(3177), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241210,52 +241932,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195455] = 22, + [195370] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9254), 1, + ACTIONS(9069), 1, sym_raw_string, - ACTIONS(9256), 1, + ACTIONS(9071), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3285), 9, + STATE(2670), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241265,52 +241987,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195532] = 22, + [195447] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9258), 1, + ACTIONS(9073), 1, sym_raw_string, - ACTIONS(9260), 1, + ACTIONS(9075), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2699), 9, + STATE(3178), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241320,52 +242042,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195609] = 22, + [195524] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(9079), 1, + anon_sym_DQUOTE, + ACTIONS(9083), 1, + sym_variable_name, + STATE(5381), 1, + sym_string, + ACTIONS(9081), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9077), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [195573] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9262), 1, + ACTIONS(9085), 1, sym_raw_string, - ACTIONS(9264), 1, + ACTIONS(9087), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3069), 9, + STATE(2671), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241375,52 +242138,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195686] = 22, + [195650] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9266), 1, + ACTIONS(9089), 1, sym_raw_string, - ACTIONS(9268), 1, + ACTIONS(9091), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3286), 9, + STATE(3180), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241430,107 +242193,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195763] = 22, + [195727] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9270), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9093), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9272), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2700), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3603), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [195840] = 22, + sym_process_substitution, + [195802] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9274), 1, + ACTIONS(9095), 1, sym_raw_string, - ACTIONS(9276), 1, + ACTIONS(9097), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3071), 9, + STATE(2672), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241540,52 +242302,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195917] = 22, + [195879] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9099), 1, sym_raw_string, - ACTIONS(9280), 1, + ACTIONS(9101), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2701), 9, + STATE(3182), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241595,162 +242357,214 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195994] = 22, + [195956] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9282), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9103), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9284), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3072), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [196071] = 22, + sym_process_substitution, + [196031] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9286), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9105), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9288), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2702), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196106] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, + anon_sym_BQUOTE, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9107), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [196148] = 22, + sym_process_substitution, + [196181] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9290), 1, + ACTIONS(9109), 1, sym_raw_string, - ACTIONS(9292), 1, + ACTIONS(9111), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3074), 9, + STATE(2673), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241760,52 +242574,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196225] = 22, + [196258] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9294), 1, + ACTIONS(9113), 1, sym_raw_string, - ACTIONS(9296), 1, + ACTIONS(9115), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2703), 9, + STATE(3183), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241815,107 +242629,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196302] = 22, + [196335] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, - anon_sym_BANG, - ACTIONS(8573), 1, - anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9298), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9117), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9300), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3076), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [196379] = 22, + sym_process_substitution, + [196410] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9302), 1, + ACTIONS(9119), 1, sym_raw_string, - ACTIONS(9304), 1, + ACTIONS(9121), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2704), 9, + STATE(2674), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241925,52 +242738,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196456] = 22, + [196487] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9306), 1, + ACTIONS(9123), 1, sym_raw_string, - ACTIONS(9308), 1, + ACTIONS(9125), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3079), 9, + STATE(3185), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241980,52 +242793,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196533] = 22, + [196564] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9310), 1, + ACTIONS(9127), 1, sym_raw_string, - ACTIONS(9312), 1, + ACTIONS(9129), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2705), 9, + STATE(2721), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242035,52 +242848,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196610] = 22, + [196641] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(9079), 1, + anon_sym_DQUOTE, + ACTIONS(9083), 1, + sym_variable_name, + STATE(5381), 1, + sym_string, + ACTIONS(9081), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9077), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [196690] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9314), 1, + ACTIONS(9131), 1, sym_raw_string, - ACTIONS(9316), 1, + ACTIONS(9133), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3081), 9, + STATE(2676), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242090,52 +242944,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196687] = 22, + [196767] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9318), 1, + ACTIONS(9135), 1, sym_raw_string, - ACTIONS(9320), 1, + ACTIONS(9137), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3287), 9, + STATE(3186), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242145,52 +242999,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196764] = 22, + [196844] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9322), 1, + ACTIONS(9139), 1, sym_raw_string, - ACTIONS(9324), 1, + ACTIONS(9141), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3288), 9, + STATE(2855), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242200,52 +243054,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196841] = 22, + [196921] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9326), 1, + ACTIONS(9143), 1, sym_raw_string, - ACTIONS(9328), 1, + ACTIONS(9145), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2706), 9, + STATE(2678), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242255,52 +243109,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196918] = 22, + [196998] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9330), 1, + ACTIONS(9147), 1, sym_raw_string, - ACTIONS(9332), 1, + ACTIONS(9149), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3083), 9, + STATE(3291), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242310,107 +243164,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196995] = 22, + [197075] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9334), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9151), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, - ACTIONS(9336), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2707), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3729), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [197072] = 22, + sym_process_substitution, + [197150] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9338), 1, + ACTIONS(9153), 1, sym_raw_string, - ACTIONS(9340), 1, + ACTIONS(9155), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3084), 9, + STATE(2680), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242420,52 +243273,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197149] = 22, + [197227] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9342), 1, + ACTIONS(9157), 1, sym_raw_string, - ACTIONS(9344), 1, + ACTIONS(9159), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3251), 9, + STATE(3188), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242475,52 +243328,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197226] = 22, + [197304] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, + anon_sym_BQUOTE, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9161), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3634), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197379] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9346), 1, + ACTIONS(9163), 1, sym_raw_string, - ACTIONS(9348), 1, + ACTIONS(9165), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3089), 9, + STATE(2682), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242530,52 +243437,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197303] = 22, + [197456] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9350), 1, + ACTIONS(9167), 1, sym_raw_string, - ACTIONS(9352), 1, + ACTIONS(9169), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2708), 9, + STATE(3189), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242585,52 +243492,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197380] = 22, + [197533] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9354), 1, + ACTIONS(9171), 1, sym_raw_string, - ACTIONS(9356), 1, + ACTIONS(9173), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3085), 9, + STATE(3231), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242640,52 +243547,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197457] = 22, + [197610] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9358), 1, + ACTIONS(9175), 1, sym_raw_string, - ACTIONS(9360), 1, + ACTIONS(9177), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2709), 9, + STATE(2683), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242695,52 +243602,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197534] = 22, + [197687] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9362), 1, + ACTIONS(9179), 1, sym_raw_string, - ACTIONS(9364), 1, + ACTIONS(9181), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3086), 9, + STATE(3190), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242750,52 +243657,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197611] = 22, + [197764] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9366), 1, + ACTIONS(9183), 1, sym_raw_string, - ACTIONS(9368), 1, + ACTIONS(9185), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2710), 9, + STATE(2684), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242805,52 +243712,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197688] = 22, + [197841] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9370), 1, + ACTIONS(9187), 1, sym_raw_string, - ACTIONS(9372), 1, + ACTIONS(9189), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3088), 9, + STATE(3191), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242860,93 +243767,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197765] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9380), 1, - sym_variable_name, - STATE(5347), 1, - sym_string, - ACTIONS(9378), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9374), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [197814] = 22, + [197918] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9382), 1, + ACTIONS(9191), 1, sym_raw_string, - ACTIONS(9384), 1, + ACTIONS(9193), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2711), 9, + STATE(2686), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242956,52 +243822,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197891] = 22, + [197995] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9386), 1, + ACTIONS(9195), 1, sym_raw_string, - ACTIONS(9388), 1, + ACTIONS(9197), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3090), 9, + STATE(3193), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243011,93 +243877,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197968] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9380), 1, - sym_variable_name, - STATE(5347), 1, - sym_string, - ACTIONS(9378), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9374), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [198017] = 22, + [198072] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9390), 1, + ACTIONS(9199), 1, sym_raw_string, - ACTIONS(9392), 1, + ACTIONS(9201), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2713), 9, + STATE(2633), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243107,52 +243932,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198094] = 22, + [198149] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9394), 1, + ACTIONS(9203), 1, sym_raw_string, - ACTIONS(9396), 1, + ACTIONS(9205), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3093), 9, + STATE(2688), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243162,52 +243987,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198171] = 22, + [198226] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9398), 1, + ACTIONS(9207), 1, sym_raw_string, - ACTIONS(9400), 1, + ACTIONS(9209), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2714), 9, + STATE(3195), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243217,52 +244042,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198248] = 22, + [198303] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9402), 1, + ACTIONS(9211), 1, sym_raw_string, - ACTIONS(9404), 1, + ACTIONS(9213), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3094), 9, + STATE(2689), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243272,52 +244097,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198325] = 22, + [198380] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9406), 1, + ACTIONS(9215), 1, sym_raw_string, - ACTIONS(9408), 1, + ACTIONS(9217), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2716), 9, + STATE(3196), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243327,52 +244152,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198402] = 22, + [198457] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, + anon_sym_BQUOTE, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9219), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198532] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9410), 1, + ACTIONS(9221), 1, sym_raw_string, - ACTIONS(9412), 1, + ACTIONS(9223), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3096), 9, + STATE(3247), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243382,52 +244261,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198479] = 22, + [198609] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9414), 1, + ACTIONS(9225), 1, sym_raw_string, - ACTIONS(9416), 1, + ACTIONS(9227), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2717), 9, + STATE(2691), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243437,52 +244316,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198556] = 22, + [198686] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9418), 1, + ACTIONS(9229), 1, sym_raw_string, - ACTIONS(9420), 1, + ACTIONS(9231), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3098), 9, + STATE(3197), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243492,52 +244371,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198633] = 22, + [198763] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9422), 1, + ACTIONS(9233), 1, sym_raw_string, - ACTIONS(9424), 1, + ACTIONS(9235), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2718), 9, + STATE(2693), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243547,52 +244426,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198710] = 22, + [198840] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9426), 1, + ACTIONS(9237), 1, sym_raw_string, - ACTIONS(9428), 1, + ACTIONS(9239), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3100), 9, + STATE(3199), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243602,52 +244481,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198787] = 22, + [198917] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, + anon_sym_BQUOTE, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9241), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3661), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198992] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9430), 1, + ACTIONS(9243), 1, sym_raw_string, - ACTIONS(9432), 1, + ACTIONS(9245), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2719), 9, + STATE(2695), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243657,52 +244590,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198864] = 22, + [199069] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9434), 1, + ACTIONS(9247), 1, sym_raw_string, - ACTIONS(9436), 1, + ACTIONS(9249), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3102), 9, + STATE(3201), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243712,52 +244645,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198941] = 22, + [199146] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9438), 1, + ACTIONS(9251), 1, sym_raw_string, - ACTIONS(9440), 1, + ACTIONS(9253), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2720), 9, + STATE(2696), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243767,52 +244700,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199018] = 22, + [199223] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9442), 1, + ACTIONS(9255), 1, sym_raw_string, - ACTIONS(9444), 1, + ACTIONS(9257), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3104), 9, + STATE(3202), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243822,52 +244755,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199095] = 22, + [199300] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9446), 1, + ACTIONS(9259), 1, sym_raw_string, - ACTIONS(9448), 1, + ACTIONS(9261), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2721), 9, + STATE(2697), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243877,52 +244810,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199172] = 22, + [199377] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9450), 1, + ACTIONS(9263), 1, sym_raw_string, - ACTIONS(9452), 1, + ACTIONS(9265), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3106), 9, + STATE(3203), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243932,52 +244865,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199249] = 22, + [199454] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9454), 1, + ACTIONS(9267), 1, sym_raw_string, - ACTIONS(9456), 1, + ACTIONS(9269), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2722), 9, + STATE(3241), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243987,52 +244920,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199326] = 22, + [199531] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9458), 1, + ACTIONS(9271), 1, sym_raw_string, - ACTIONS(9460), 1, + ACTIONS(9273), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3108), 9, + STATE(2698), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244042,88 +244975,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199403] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5886), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5888), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [199442] = 22, + [199608] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9462), 1, + ACTIONS(9275), 1, sym_raw_string, - ACTIONS(9464), 1, + ACTIONS(9277), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2723), 9, + STATE(3205), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244133,52 +245030,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199519] = 22, + [199685] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9466), 1, + ACTIONS(9279), 1, sym_raw_string, - ACTIONS(9468), 1, + ACTIONS(9281), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3110), 9, + STATE(3268), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244188,52 +245085,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199596] = 22, + [199762] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9470), 1, + ACTIONS(9283), 1, sym_raw_string, - ACTIONS(9472), 1, + ACTIONS(9285), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2724), 9, + STATE(2700), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244243,52 +245140,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199673] = 22, + [199839] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9474), 1, + ACTIONS(9287), 1, sym_raw_string, - ACTIONS(9476), 1, + ACTIONS(9289), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3112), 9, + STATE(3206), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244298,52 +245195,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199750] = 22, + [199916] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9478), 1, + ACTIONS(9291), 1, sym_raw_string, - ACTIONS(9480), 1, + ACTIONS(9293), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2769), 9, + STATE(2702), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244353,52 +245250,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199827] = 22, + [199993] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9482), 1, + ACTIONS(9295), 1, sym_raw_string, - ACTIONS(9484), 1, + ACTIONS(9297), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2725), 9, + STATE(3207), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244408,52 +245305,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199904] = 22, + [200070] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9486), 1, + ACTIONS(9299), 1, sym_raw_string, - ACTIONS(9488), 1, + ACTIONS(9301), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3115), 9, + STATE(3233), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244463,52 +245360,88 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199981] = 22, + [200147] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(2137), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2139), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [200186] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9490), 1, + ACTIONS(9303), 1, sym_raw_string, - ACTIONS(9492), 1, + ACTIONS(9305), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2726), 9, + STATE(3324), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244518,52 +245451,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200058] = 22, + [200263] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9494), 1, + ACTIONS(9307), 1, sym_raw_string, - ACTIONS(9496), 1, + ACTIONS(9309), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3118), 9, + STATE(2703), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244573,52 +245506,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200135] = 22, + [200340] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9498), 1, + ACTIONS(9311), 1, sym_raw_string, - ACTIONS(9500), 1, + ACTIONS(9313), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2728), 9, + STATE(3210), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244628,52 +245561,160 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200212] = 22, + [200417] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, + anon_sym_BQUOTE, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9315), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3749), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200492] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, + anon_sym_BQUOTE, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9317), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200567] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9502), 1, + ACTIONS(9319), 1, sym_raw_string, - ACTIONS(9504), 1, + ACTIONS(9321), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3121), 9, + STATE(2705), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244683,52 +245724,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200289] = 22, + [200644] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9506), 1, + ACTIONS(9323), 1, sym_raw_string, - ACTIONS(9508), 1, + ACTIONS(9325), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2730), 9, + STATE(3211), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244738,52 +245779,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200366] = 22, + [200721] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9510), 1, + ACTIONS(9327), 1, sym_raw_string, - ACTIONS(9512), 1, + ACTIONS(9329), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3124), 9, + STATE(3105), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244793,52 +245834,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200443] = 22, + [200798] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9514), 1, + ACTIONS(9331), 1, sym_raw_string, - ACTIONS(9516), 1, + ACTIONS(9333), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2731), 9, + STATE(2856), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244848,52 +245889,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200520] = 22, + [200875] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3134), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3138), 1, + anon_sym_BQUOTE, + ACTIONS(3140), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3146), 1, + sym_test_operator, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(9335), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200950] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9518), 1, + ACTIONS(9337), 1, sym_raw_string, - ACTIONS(9520), 1, + ACTIONS(9339), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3126), 9, + STATE(2707), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244903,52 +245998,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200597] = 22, + [201027] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9522), 1, + ACTIONS(9341), 1, sym_raw_string, - ACTIONS(9524), 1, + ACTIONS(9343), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2732), 9, + STATE(3212), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244958,52 +246053,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200674] = 22, + [201104] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9526), 1, + ACTIONS(9345), 1, sym_raw_string, - ACTIONS(9528), 1, + ACTIONS(9347), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3128), 9, + STATE(3236), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245013,52 +246108,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200751] = 22, + [201181] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8989), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8995), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9017), 1, sym_variable_name, - ACTIONS(9530), 1, + ACTIONS(9349), 1, sym_raw_string, - ACTIONS(9532), 1, + ACTIONS(9351), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3314), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3315), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3316), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3318), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8991), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8993), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2733), 9, + STATE(3234), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245068,52 +246163,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200828] = 22, + [201258] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9534), 1, + ACTIONS(9353), 1, sym_raw_string, - ACTIONS(9536), 1, + ACTIONS(9355), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3130), 9, + STATE(2709), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245123,52 +246218,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200905] = 22, + [201335] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9538), 1, + ACTIONS(9357), 1, sym_raw_string, - ACTIONS(9540), 1, + ACTIONS(9359), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2734), 9, + STATE(3345), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245178,52 +246273,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200982] = 22, + [201412] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9542), 1, + ACTIONS(9361), 1, sym_raw_string, - ACTIONS(9544), 1, + ACTIONS(9363), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3132), 9, + STATE(3306), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245233,52 +246328,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201059] = 22, + [201489] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9546), 1, + ACTIONS(9365), 1, sym_raw_string, - ACTIONS(9548), 1, + ACTIONS(9367), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2735), 9, + STATE(2710), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245288,52 +246383,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201136] = 22, + [201566] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9550), 1, + ACTIONS(9369), 1, sym_raw_string, - ACTIONS(9552), 1, + ACTIONS(9371), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3134), 9, + STATE(3217), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245343,52 +246438,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201213] = 22, + [201643] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9554), 1, + ACTIONS(9373), 1, sym_raw_string, - ACTIONS(9556), 1, + ACTIONS(9375), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2776), 9, + STATE(2711), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245398,188 +246493,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201290] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [201339] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [201388] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9558), 1, - sym_word, - ACTIONS(9562), 1, - sym_test_operator, - STATE(6307), 1, - aux_sym__literal_repeat1, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9560), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6456), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6153), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [201463] = 22, + [201720] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9564), 1, + ACTIONS(9377), 1, sym_raw_string, - ACTIONS(9566), 1, + ACTIONS(9379), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3113), 9, + STATE(3218), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245589,179 +246548,147 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201540] = 3, - ACTIONS(71), 1, + [201797] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5707), 21, + ACTIONS(1197), 1, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(4087), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [201579] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2156), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 21, - sym_file_descriptor, + ACTIONS(7829), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + STATE(4385), 1, + sym_string, + ACTIONS(7827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7825), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [201846] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [201618] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9568), 1, + ACTIONS(3146), 1, + sym_test_operator, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(9381), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3106), 3, sym_raw_string, - ACTIONS(9570), 1, - aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, - sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8603), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3284), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [201695] = 22, + sym_process_substitution, + [201921] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9572), 1, + ACTIONS(9383), 1, sym_raw_string, - ACTIONS(9574), 1, + ACTIONS(9385), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3159), 9, + STATE(2712), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245771,52 +246698,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201772] = 22, + [201998] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9576), 1, + ACTIONS(9387), 1, sym_raw_string, - ACTIONS(9578), 1, + ACTIONS(9389), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3156), 9, + STATE(3219), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245826,10 +246753,10 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201849] = 3, + [202075] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 10, + ACTIONS(6026), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -245840,7 +246767,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4439), 21, + ACTIONS(6038), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -245862,52 +246789,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [201888] = 22, + [202114] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9580), 1, + ACTIONS(9391), 1, sym_raw_string, - ACTIONS(9582), 1, + ACTIONS(9393), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3150), 9, + STATE(2714), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245917,106 +246844,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201965] = 21, + [202191] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(9584), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9395), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3700), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9397), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3220), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202040] = 22, + [202268] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9586), 1, + ACTIONS(9399), 1, sym_raw_string, - ACTIONS(9588), 1, + ACTIONS(9401), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3021), 9, + STATE(3248), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246026,142 +246954,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202117] = 21, + [202345] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(9590), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9403), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9405), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2716), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202192] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5268), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5270), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [202231] = 22, + [202422] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9592), 1, + ACTIONS(9407), 1, sym_raw_string, - ACTIONS(9594), 1, + ACTIONS(9409), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3022), 9, + STATE(3221), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246171,10 +247064,10 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202308] = 3, + [202499] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 10, + ACTIONS(5954), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -246185,7 +247078,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1225), 21, + ACTIONS(5956), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -246207,52 +247100,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [202347] = 22, + [202538] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8755), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, + anon_sym_BQUOTE, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9411), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3698), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [202613] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9596), 1, + ACTIONS(9413), 1, sym_raw_string, - ACTIONS(9598), 1, + ACTIONS(9415), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2770), 9, + STATE(2718), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246262,52 +247209,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202424] = 22, + [202690] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9600), 1, + ACTIONS(9417), 1, sym_raw_string, - ACTIONS(9602), 1, + ACTIONS(9419), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3172), 9, + STATE(3222), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246317,52 +247264,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202501] = 22, + [202767] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8542), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8544), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8550), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8572), 1, sym_variable_name, - ACTIONS(9604), 1, + ACTIONS(9421), 1, sym_raw_string, - ACTIONS(9606), 1, + ACTIONS(9423), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2755), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2776), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8546), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8548), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2629), 9, + STATE(2720), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246372,134 +247319,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202578] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(9610), 1, - anon_sym_DQUOTE, - ACTIONS(9614), 1, - sym_variable_name, - STATE(5321), 1, - sym_string, - ACTIONS(9612), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9608), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [202627] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(9610), 1, - anon_sym_DQUOTE, - ACTIONS(9614), 1, - sym_variable_name, - STATE(5321), 1, - sym_string, - ACTIONS(9612), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9608), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [202676] = 22, + [202844] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(8701), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(8703), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(8709), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(8731), 1, sym_variable_name, - ACTIONS(9616), 1, + ACTIONS(9425), 1, sym_raw_string, - ACTIONS(9618), 1, + ACTIONS(9427), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3107), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3109), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3110), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3115), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(8705), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(8707), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2687), 9, + STATE(3224), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246509,297 +247374,216 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202753] = 8, - ACTIONS(3), 1, + [202921] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(9622), 1, - anon_sym_DQUOTE, - ACTIONS(9626), 1, - sym_variable_name, - STATE(5125), 1, - sym_string, - ACTIONS(1197), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(9624), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9620), 8, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 15, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, + ACTIONS(9005), 1, aux_sym_number_token2, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [202801] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2331), 1, - sym_word, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2343), 1, - aux_sym_number_token1, - ACTIONS(2345), 1, - aux_sym_number_token2, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, - sym__brace_start, - ACTIONS(9628), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9632), 1, - sym__special_character, - ACTIONS(9634), 1, - anon_sym_DQUOTE, - ACTIONS(9638), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, - anon_sym_BQUOTE, - ACTIONS(9642), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1491), 1, - aux_sym__literal_repeat1, - ACTIONS(9636), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9429), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9644), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(592), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1165), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9431), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3094), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202873] = 20, + [202998] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(2331), 1, - sym_word, - ACTIONS(2337), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(2343), 1, - aux_sym_number_token1, - ACTIONS(2345), 1, - aux_sym_number_token2, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, - sym__brace_start, - ACTIONS(9628), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9632), 1, - sym__special_character, - ACTIONS(9634), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, - anon_sym_BQUOTE, - ACTIONS(9642), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1491), 1, - aux_sym__literal_repeat1, - ACTIONS(9636), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9644), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(593), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1165), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [202945] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(9646), 1, - sym_word, - ACTIONS(9648), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, - sym__special_character, - ACTIONS(9654), 1, - anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9666), 1, - sym_test_operator, - ACTIONS(9668), 1, - sym_regex, - STATE(1395), 1, - aux_sym__literal_repeat1, - STATE(1586), 1, - sym_concatenation, - ACTIONS(9656), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9433), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9664), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1055), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9435), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2722), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203019] = 20, + [203075] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8226), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(9670), 1, - sym_word, - ACTIONS(9674), 1, - sym_test_operator, - STATE(1501), 1, - aux_sym__literal_repeat1, - ACTIONS(8250), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9672), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9437), 1, sym_raw_string, - sym_ansi_c_string, - STATE(595), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1210), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9439), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3225), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203091] = 19, + [203152] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9678), 1, - anon_sym_RBRACK, - ACTIONS(9684), 1, + ACTIONS(3140), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(393), 2, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(9441), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + sym_word, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246809,49 +247593,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203161] = 20, + [203227] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(8234), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(9670), 1, - sym_word, - ACTIONS(9674), 1, + ACTIONS(8779), 1, sym_test_operator, - STATE(1501), 1, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9443), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(8250), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9672), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - STATE(596), 2, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1210), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246861,621 +247647,678 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203233] = 20, + [203302] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3793), 1, - sym_word, - ACTIONS(3797), 1, - sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, - sym__special_character, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9445), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(718), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1761), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9447), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2724), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203305] = 19, - ACTIONS(3), 1, + [203379] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9704), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9449), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9451), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3226), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203375] = 20, + [203456] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3588), 1, - sym_word, - ACTIONS(3594), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(3600), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(3606), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3614), 1, - sym_test_operator, - ACTIONS(3616), 1, - sym__brace_start, - ACTIONS(9706), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, - sym__special_character, - ACTIONS(9712), 1, - anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2279), 1, - aux_sym__literal_repeat1, - ACTIONS(9714), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9453), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9722), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(690), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1800), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9455), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3252), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203447] = 20, + [203533] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(5950), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3016), 1, aux_sym_number_token1, - ACTIONS(3018), 1, aux_sym_number_token2, - ACTIONS(3022), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3793), 1, sym_word, - ACTIONS(3797), 1, + ACTIONS(5952), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(9686), 1, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, sym__special_character, - ACTIONS(9692), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9694), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9702), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(720), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1761), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [203519] = 20, + [203572] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3231), 1, - sym_word, - ACTIONS(3237), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(3243), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(3249), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, - sym_test_operator, - ACTIONS(3259), 1, - sym__brace_start, - ACTIONS(9724), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9728), 1, - sym__special_character, - ACTIONS(9730), 1, - anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2110), 1, - aux_sym__literal_repeat1, - ACTIONS(9732), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9457), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9740), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(660), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1524), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9459), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3258), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203591] = 20, + [203649] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3588), 1, - sym_word, - ACTIONS(3594), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(3600), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(3606), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3614), 1, - sym_test_operator, - ACTIONS(3616), 1, - sym__brace_start, - ACTIONS(9706), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, - sym__special_character, - ACTIONS(9712), 1, - anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2279), 1, - aux_sym__literal_repeat1, - ACTIONS(9714), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9461), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9722), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(714), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1800), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9463), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3239), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203663] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3231), 1, - sym_word, - ACTIONS(3237), 1, + [203726] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(3243), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(3249), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, - sym_test_operator, - ACTIONS(3259), 1, - sym__brace_start, - ACTIONS(9724), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9728), 1, - sym__special_character, - ACTIONS(9730), 1, - anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2110), 1, - aux_sym__literal_repeat1, - ACTIONS(9732), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9465), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9740), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(661), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1524), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9467), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3240), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203735] = 20, + [203803] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2619), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2639), 1, - sym_test_operator, - ACTIONS(2641), 1, - sym__brace_start, - ACTIONS(9742), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9746), 1, - sym__special_character, - ACTIONS(9748), 1, - anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1903), 1, - aux_sym__literal_repeat1, - ACTIONS(9750), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9469), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9758), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(617), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1348), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9471), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3285), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203807] = 20, + [203880] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2619), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2639), 1, - sym_test_operator, - ACTIONS(2641), 1, - sym__brace_start, - ACTIONS(9742), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9746), 1, - sym__special_character, - ACTIONS(9748), 1, - anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1903), 1, - aux_sym__literal_repeat1, - ACTIONS(9750), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9473), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9758), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(620), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1348), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9475), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2847), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203879] = 20, + [203957] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(9479), 1, + anon_sym_DQUOTE, + ACTIONS(9483), 1, + sym_variable_name, + STATE(5308), 1, + sym_string, + ACTIONS(9481), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9477), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [204006] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3793), 1, - sym_word, - ACTIONS(3797), 1, - sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, - sym__special_character, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9485), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(712), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1761), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9487), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2819), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203951] = 20, + [204083] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3793), 1, - sym_word, - ACTIONS(3797), 1, - sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, - sym__special_character, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9489), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(722), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1761), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9491), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2800), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [204023] = 21, + [204160] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(9760), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(9762), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(9768), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9780), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(9782), 1, - sym_regex, - STATE(1235), 1, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9493), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - STATE(1347), 1, - sym_concatenation, - ACTIONS(9770), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9778), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(960), 9, + STATE(3720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247485,152 +248328,202 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204097] = 19, + [204235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(9479), 1, + anon_sym_DQUOTE, + ACTIONS(9483), 1, + sym_variable_name, + STATE(5308), 1, + sym_string, + ACTIONS(9481), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9477), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [204284] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9784), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9495), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9497), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3135), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [204167] = 20, + [204361] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7605), 1, - sym_word, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(9786), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, - sym__special_character, - ACTIONS(9792), 1, - anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(9794), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9499), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9802), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3355), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9501), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3288), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [204239] = 20, + [204438] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, - aux_sym_number_token1, - ACTIONS(3646), 1, - aux_sym_number_token2, - ACTIONS(3650), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4056), 1, + ACTIONS(2146), 1, + anon_sym_RPAREN, + ACTIONS(9503), 1, sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(9509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, + ACTIONS(9512), 1, + anon_sym_DOLLAR, + ACTIONS(9515), 1, sym__special_character, - ACTIONS(9810), 1, + ACTIONS(9518), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(9524), 1, + aux_sym_number_token1, + ACTIONS(9527), 1, + aux_sym_number_token2, + ACTIONS(9530), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9536), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9539), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, + ACTIONS(9545), 1, + sym_test_operator, + ACTIONS(9548), 1, + sym__brace_start, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(9812), 2, + ACTIONS(9521), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9820), 2, + ACTIONS(9542), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(756), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1931), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247640,49 +248533,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204311] = 20, + [204513] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(7836), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(9822), 1, - sym_word, - ACTIONS(9826), 1, + ACTIONS(8779), 1, sym_test_operator, - STATE(2634), 1, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9551), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(7852), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - STATE(842), 2, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3717), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2335), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247692,49 +248587,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204383] = 20, + [204588] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(7836), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(9822), 1, - sym_word, - ACTIONS(9826), 1, + ACTIONS(8779), 1, sym_test_operator, - STATE(2634), 1, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9553), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(7852), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - STATE(844), 2, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2335), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247744,49 +248641,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204455] = 20, + [204663] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(4323), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(4331), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(4351), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(9828), 1, - sym__special_character, - STATE(2630), 1, + ACTIONS(9555), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4347), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(820), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2382), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247796,99 +248695,106 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204527] = 19, - ACTIONS(3), 1, + [204738] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9830), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8568), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9557), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9559), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2719), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [204597] = 19, - ACTIONS(3), 1, + [204815] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8749), 1, + sym_word, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(9832), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9561), 1, + anon_sym_RPAREN, + STATE(5256), 1, + aux_sym__literal_repeat1, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + ACTIONS(8777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247898,153 +248804,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204667] = 20, + [204890] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3201), 1, - sym_word, - ACTIONS(3207), 1, + ACTIONS(1231), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3213), 1, aux_sym_number_token1, - ACTIONS(3215), 1, aux_sym_number_token2, - ACTIONS(3219), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3227), 1, + sym_word, + ACTIONS(1233), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3229), 1, sym__brace_start, - ACTIONS(9834), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9838), 1, sym__special_character, - ACTIONS(9840), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2027), 1, - aux_sym__literal_repeat1, - ACTIONS(9842), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9850), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(673), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [204739] = 20, + [204929] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3201), 1, - sym_word, - ACTIONS(3207), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(3213), 1, + ACTIONS(8713), 1, + anon_sym_DQUOTE, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(3219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3227), 1, - sym_test_operator, - ACTIONS(3229), 1, - sym__brace_start, - ACTIONS(9834), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9838), 1, - sym__special_character, - ACTIONS(9840), 1, - anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2027), 1, - aux_sym__literal_repeat1, - ACTIONS(9842), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9563), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9850), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(659), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1611), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9565), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3272), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [204811] = 20, - ACTIONS(71), 1, + [205006] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, - sym_word, - ACTIONS(4323), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(4331), 1, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(3140), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(4351), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(9828), 1, - sym__special_character, - STATE(2630), 1, + ACTIONS(9567), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4347), 2, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(821), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2382), 9, + ACTIONS(3106), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248054,48 +248949,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204883] = 19, + [205081] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(3120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(3122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(3126), 1, + sym__special_character, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(3138), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, + ACTIONS(3140), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3146), 1, sym_test_operator, - ACTIONS(9852), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(9569), 1, + aux_sym_heredoc_redirect_token1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, + aux_sym__literal_repeat1, + STATE(5456), 1, + sym_concatenation, + ACTIONS(3142), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(3106), 3, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + sym_word, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248105,258 +249003,271 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204953] = 20, + [205156] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(7974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, - sym__brace_start, - ACTIONS(9854), 1, - sym_word, - ACTIONS(9858), 1, - sym_test_operator, - STATE(3442), 1, - aux_sym__literal_repeat1, - ACTIONS(7998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9856), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9571), 1, sym_raw_string, - sym_ansi_c_string, - STATE(1716), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9573), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3246), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205025] = 20, + [205233] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(7866), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(9860), 1, - sym_word, - ACTIONS(9864), 1, - sym_test_operator, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(7890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9862), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9575), 1, sym_raw_string, - sym_ansi_c_string, - STATE(609), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9577), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3118), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205097] = 21, + [205310] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(9866), 1, - sym_word, - ACTIONS(9870), 1, - sym_test_operator, - ACTIONS(9872), 1, - sym_regex, - STATE(2405), 1, - aux_sym__literal_repeat1, - STATE(2480), 1, - sym_concatenation, - ACTIONS(2677), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9868), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9579), 1, sym_raw_string, - sym_ansi_c_string, - STATE(1916), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9581), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3273), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205171] = 20, + [205387] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5619), 1, - sym_word, - ACTIONS(5625), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(8713), 1, + anon_sym_DQUOTE, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(5637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, - sym__brace_start, - ACTIONS(9874), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9878), 1, - sym__special_character, - ACTIONS(9880), 1, - anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(9882), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9583), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1429), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3082), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9585), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3274), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205243] = 20, + [205464] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5619), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(5625), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, - aux_sym_number_token1, - ACTIONS(5633), 1, - aux_sym_number_token2, - ACTIONS(5637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, - sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9878), 1, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(9880), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3369), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9587), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(9882), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9890), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1390), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3082), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248366,295 +249277,326 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205315] = 8, - ACTIONS(3), 1, + [205539] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(8294), 1, - sym_variable_name, - STATE(4874), 1, - sym_string, - ACTIONS(1191), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8292), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 15, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, aux_sym_number_token1, + ACTIONS(8560), 1, aux_sym_number_token2, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, anon_sym_BQUOTE, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [205363] = 19, - ACTIONS(3), 1, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9589), 1, + sym_raw_string, + ACTIONS(9591), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2818), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [205616] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9892), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9593), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9595), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3136), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205433] = 20, + [205693] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(9894), 1, - sym_word, - ACTIONS(9896), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9922), 1, - sym_test_operator, - ACTIONS(9924), 1, - sym__brace_start, - STATE(2496), 1, - aux_sym__literal_repeat1, - ACTIONS(9906), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9597), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9920), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(801), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2283), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9599), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2783), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205505] = 20, + [205770] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(3650), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4056), 1, - sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, - sym__special_character, - ACTIONS(9810), 1, - anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9812), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9601), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(759), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9603), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3214), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205577] = 19, - ACTIONS(3), 1, + [205847] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9926), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9605), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9607), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3275), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205647] = 20, + [205924] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4801), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(4803), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(8759), 1, + sym__special_character, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(4831), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(9928), 1, - sym__special_character, - STATE(2859), 1, + ACTIONS(9609), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(4813), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4827), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(964), 2, + STATE(3740), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2538), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248664,205 +249606,216 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205719] = 20, + [205999] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(3650), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4056), 1, - sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, - sym__special_character, - ACTIONS(9810), 1, - anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9009), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9812), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9611), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(757), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9613), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3235), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205791] = 20, + [206076] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(2795), 1, - sym_word, - ACTIONS(2801), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(2807), 1, + ACTIONS(8713), 1, + anon_sym_DQUOTE, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(2813), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2821), 1, - sym_test_operator, - ACTIONS(2823), 1, - sym__brace_start, - ACTIONS(9930), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9934), 1, - sym__special_character, - ACTIONS(9936), 1, - anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1722), 1, - aux_sym__literal_repeat1, - ACTIONS(9938), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9615), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(633), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1292), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9617), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3276), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205863] = 20, + [206153] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(2795), 1, - sym_word, - ACTIONS(2801), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(2807), 1, + ACTIONS(8713), 1, + anon_sym_DQUOTE, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(2813), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2821), 1, - sym_test_operator, - ACTIONS(2823), 1, - sym__brace_start, - ACTIONS(9930), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9934), 1, - sym__special_character, - ACTIONS(9936), 1, - anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1722), 1, - aux_sym__literal_repeat1, - ACTIONS(9938), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9619), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(635), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1292), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9621), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3277), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205935] = 20, + [206230] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3632), 1, - sym_word, - ACTIONS(3638), 1, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3658), 1, - sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(7680), 1, + sym__special_character, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9948), 1, - sym__special_character, - STATE(2253), 1, + ACTIONS(9623), 1, + sym_word, + ACTIONS(9627), 1, + sym_test_operator, + STATE(6407), 1, aux_sym__literal_repeat1, - ACTIONS(9820), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9950), 2, + ACTIONS(9625), 2, sym_raw_string, sym_ansi_c_string, - STATE(711), 2, + STATE(6669), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1851), 9, + sym__extglob_blob, + STATE(6306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248872,49 +249825,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206007] = 20, + [206305] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(5011), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(5019), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(8781), 1, sym__brace_start, - STATE(3136), 1, + ACTIONS(9629), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(5021), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5035), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(998), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2655), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248924,307 +249879,458 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206079] = 20, + [206380] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5009), 1, - sym_word, - ACTIONS(5011), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, - sym__special_character, - ACTIONS(5019), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, - sym_test_operator, - ACTIONS(5039), 1, - sym__brace_start, - STATE(3136), 1, - aux_sym__literal_repeat1, - ACTIONS(5021), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9631), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(999), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2655), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9633), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2780), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206151] = 20, + [206457] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(7866), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(9860), 1, - sym_word, - ACTIONS(9864), 1, - sym_test_operator, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(7890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9862), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9635), 1, sym_raw_string, - sym_ansi_c_string, - STATE(629), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9637), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3119), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206223] = 19, - ACTIONS(3), 1, + [206534] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(2082), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2084), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [206573] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9952), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9639), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9641), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3278), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206293] = 20, + [206650] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(8562), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7605), 1, - sym_word, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(9786), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, - sym__special_character, - ACTIONS(9792), 1, + ACTIONS(8566), 1, + anon_sym_BQUOTE, + ACTIONS(8568), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9643), 1, + sym_raw_string, + ACTIONS(9645), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2753), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206727] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, + anon_sym_DOLLAR, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(8717), 1, + aux_sym_number_token1, + ACTIONS(8719), 1, + aux_sym_number_token2, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(9794), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9647), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(9802), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3350), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9649), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3141), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206365] = 19, + [206804] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(7819), 1, + anon_sym_DQUOTE, + ACTIONS(7823), 1, + sym_variable_name, + STATE(4283), 1, + sym_string, + ACTIONS(7821), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7817), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [206853] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9954), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9651), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9653), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3279), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206435] = 20, + [206930] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9894), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(9896), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR, - ACTIONS(9902), 1, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(9904), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(8779), 1, sym_test_operator, - ACTIONS(9924), 1, + ACTIONS(8781), 1, sym__brace_start, - STATE(2496), 1, + ACTIONS(9655), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(9906), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9920), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(794), 2, + STATE(3715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2283), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249234,205 +250340,252 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206507] = 20, + [207005] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4564), 1, - sym_test_operator, - ACTIONS(4566), 1, - sym__brace_start, - STATE(2975), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9657), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(870), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2540), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9659), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3280), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206579] = 20, + [207082] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(8568), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4564), 1, - sym_test_operator, - ACTIONS(4566), 1, - sym__brace_start, - STATE(2975), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 2, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9661), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(871), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2540), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9663), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3108), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206651] = 20, + [207159] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(4652), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4056), 1, sym_word, - ACTIONS(4060), 1, + ACTIONS(4654), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(9804), 1, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, sym__special_character, - ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9812), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(758), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [207198] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, + anon_sym_DOLLAR, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, + aux_sym_number_token1, + ACTIONS(8560), 1, + aux_sym_number_token2, + ACTIONS(8562), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, + anon_sym_BQUOTE, + ACTIONS(8568), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9665), 1, + sym_raw_string, + ACTIONS(9667), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3120), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206723] = 20, - ACTIONS(71), 1, + [207275] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, - sym_word, - ACTIONS(4803), 1, + ACTIONS(9672), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(9674), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(9677), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, + ACTIONS(9680), 1, anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(9683), 1, + sym__special_character, + ACTIONS(9686), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(9689), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(9692), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(9695), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(9698), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(9701), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(9704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(9710), 1, sym_test_operator, - ACTIONS(4831), 1, + ACTIONS(9713), 1, sym__brace_start, - ACTIONS(9928), 1, - sym__special_character, - STATE(2859), 1, + STATE(3754), 1, + aux_sym__heredoc_command, + STATE(5268), 1, aux_sym__literal_repeat1, - ACTIONS(4813), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4827), 2, + STATE(5456), 1, + sym_concatenation, + ACTIONS(9707), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(965), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2538), 9, + ACTIONS(9669), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249442,308 +250595,326 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206795] = 19, - ACTIONS(3), 1, + [207350] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9956), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9716), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9718), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3281), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206865] = 19, - ACTIONS(3), 1, + [207427] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8554), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8558), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8560), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8562), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8564), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8566), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9958), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(8568), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9720), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9722), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2631), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [206935] = 20, + [207504] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(8987), 1, + anon_sym_LPAREN, + ACTIONS(8989), 1, + anon_sym_BANG, + ACTIONS(8995), 1, + anon_sym_TILDE, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(8999), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(9003), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(9005), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(9960), 1, - sym_word, - ACTIONS(9964), 1, - sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(9017), 1, + sym_variable_name, + ACTIONS(9724), 1, sym_raw_string, - sym_ansi_c_string, - STATE(676), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1663), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9726), 1, + aux_sym__simple_variable_name_token1, + STATE(3314), 1, + sym__arithmetic_binary_expression, + STATE(3315), 1, + sym__arithmetic_ternary_expression, + STATE(3316), 1, + sym__arithmetic_unary_expression, + STATE(3318), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8991), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8993), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3232), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [207007] = 20, + [207581] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(9960), 1, - sym_word, - ACTIONS(9964), 1, - sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9728), 1, sym_raw_string, - sym_ansi_c_string, - STATE(677), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1663), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9730), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3142), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [207079] = 20, + [207658] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(9966), 1, - sym_word, - ACTIONS(9970), 1, - sym_test_operator, - STATE(1320), 1, - aux_sym__literal_repeat1, - ACTIONS(8138), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9968), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9732), 1, sym_raw_string, - sym_ansi_c_string, - STATE(569), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9734), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3282), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [207151] = 21, + [207735] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(6616), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(6638), 1, + sym_extglob_pattern, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(9972), 1, - sym_word, - ACTIONS(9974), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, + ACTIONS(7680), 1, sym__special_character, - ACTIONS(9980), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9992), 1, + ACTIONS(9736), 1, + sym_word, + ACTIONS(9740), 1, sym_test_operator, - ACTIONS(9994), 1, - sym_regex, - STATE(1436), 1, + STATE(6356), 1, aux_sym__literal_repeat1, - STATE(1483), 1, - sym_concatenation, - ACTIONS(9982), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9990), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1276), 9, + ACTIONS(9738), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6562), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6153), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249753,113 +250924,76 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207225] = 20, + [207810] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(8717), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(8719), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(9966), 1, - sym_word, - ACTIONS(9970), 1, - sym_test_operator, - STATE(1320), 1, - aux_sym__literal_repeat1, - ACTIONS(8138), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9968), 2, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9742), 1, sym_raw_string, - sym_ansi_c_string, - STATE(571), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9744), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3283), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [207297] = 8, + [207887] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(9998), 1, - anon_sym_DQUOTE, - ACTIONS(10002), 1, - sym_variable_name, - STATE(5275), 1, - sym_string, - ACTIONS(10000), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9996), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [207345] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(10006), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - ACTIONS(10010), 1, + ACTIONS(7823), 1, sym_variable_name, - STATE(5422), 1, + STATE(4283), 1, sym_string, - ACTIONS(10008), 2, + ACTIONS(7821), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10004), 8, + ACTIONS(7817), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -249868,7 +251002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 16, + ACTIONS(1183), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -249885,49 +251019,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207393] = 20, + aux_sym_heredoc_redirect_token1, + [207936] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7605), 1, + ACTIONS(8749), 1, sym_word, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(9786), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8759), 1, sym__special_character, - ACTIONS(9792), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, + ACTIONS(8779), 1, + sym_test_operator, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(9746), 1, + anon_sym_RPAREN, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(9794), 2, + ACTIONS(8763), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9802), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3365), 2, + STATE(3718), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(4614), 9, + STATE(5033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249937,21 +251074,171 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207465] = 8, + [208011] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_BANG, + ACTIONS(8709), 1, + anon_sym_TILDE, + ACTIONS(8711), 1, + anon_sym_DOLLAR, + ACTIONS(8713), 1, + anon_sym_DQUOTE, + ACTIONS(8717), 1, + aux_sym_number_token1, + ACTIONS(8719), 1, + aux_sym_number_token2, + ACTIONS(8721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, + anon_sym_BQUOTE, + ACTIONS(8727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8731), 1, + sym_variable_name, + ACTIONS(9748), 1, + sym_raw_string, + ACTIONS(9750), 1, + aux_sym__simple_variable_name_token1, + STATE(3107), 1, + sym__arithmetic_binary_expression, + STATE(3109), 1, + sym__arithmetic_ternary_expression, + STATE(3110), 1, + sym__arithmetic_unary_expression, + STATE(3115), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8705), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8707), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3284), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [208088] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8542), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + anon_sym_BANG, + ACTIONS(8550), 1, + anon_sym_TILDE, + ACTIONS(8552), 1, + anon_sym_DOLLAR, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8558), 1, + aux_sym_number_token1, + ACTIONS(8560), 1, + aux_sym_number_token2, + ACTIONS(8562), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, + anon_sym_BQUOTE, + ACTIONS(8568), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8572), 1, + sym_variable_name, + ACTIONS(9752), 1, + sym_raw_string, + ACTIONS(9754), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + sym__arithmetic_unary_expression, + STATE(2737), 1, + sym__arithmetic_binary_expression, + STATE(2755), 1, + sym__arithmetic_ternary_expression, + STATE(2776), 1, + sym__arithmetic_postfix_expression, + ACTIONS(8546), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(8548), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2743), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [208165] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(8360), 1, + sym_variable_name, + STATE(4728), 1, + sym_string, + ACTIONS(1191), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8358), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8356), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 15, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [208213] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(9998), 1, + ACTIONS(9758), 1, anon_sym_DQUOTE, - ACTIONS(10002), 1, + ACTIONS(9762), 1, sym_variable_name, - STATE(5275), 1, + STATE(5441), 1, sym_string, - ACTIONS(10000), 2, + ACTIONS(9760), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9996), 8, + ACTIONS(9756), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -249977,101 +251264,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [207513] = 20, - ACTIONS(71), 1, + [208261] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(10012), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10016), 1, + ACTIONS(9766), 1, + anon_sym_RBRACK, + ACTIONS(9772), 1, sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10014), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(623), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1355), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [207585] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3004), 1, - sym_word, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3016), 1, - aux_sym_number_token1, - ACTIONS(3018), 1, - aux_sym_number_token2, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3030), 1, - sym_test_operator, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10018), 1, + ACTIONS(9768), 2, sym__special_character, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10020), 2, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(645), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1653), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250081,49 +251315,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207657] = 20, - ACTIONS(71), 1, + [208331] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(10012), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10016), 1, + ACTIONS(9772), 1, sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(9774), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10014), 2, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(615), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1355), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250133,49 +251366,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207729] = 20, + [208401] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3632), 1, - sym_word, - ACTIONS(3638), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3658), 1, - sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(9776), 1, + sym_word, + ACTIONS(9778), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(9780), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(9782), 1, + sym__special_character, + ACTIONS(9784), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(9788), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9790), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9792), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9948), 1, - sym__special_character, - STATE(2253), 1, + ACTIONS(9796), 1, + sym_test_operator, + ACTIONS(9798), 1, + sym_regex, + STATE(1342), 1, aux_sym__literal_repeat1, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9950), 2, + STATE(1495), 1, + sym_concatenation, + ACTIONS(9786), 2, sym_raw_string, sym_ansi_c_string, - STATE(698), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1851), 9, + ACTIONS(9794), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250185,22 +251419,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207801] = 8, + [208475] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(8360), 1, sym_variable_name, - STATE(4874), 1, + STATE(4728), 1, sym_string, ACTIONS(1197), 2, sym_test_operator, sym__brace_start, - ACTIONS(8292), 2, + ACTIONS(8358), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, + ACTIONS(8356), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -250225,27 +251459,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [207849] = 20, - ACTIONS(71), 1, + [208523] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(4771), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(4775), 1, + ACTIONS(9772), 1, sym_test_operator, + ACTIONS(9800), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2587), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208593] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(9802), 1, + sym_word, ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(9808), 1, + sym__special_character, ACTIONS(9810), 1, anon_sym_DQUOTE, ACTIONS(9814), 1, @@ -250254,20 +251539,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10022), 1, - sym__special_character, - STATE(2253), 1, + ACTIONS(9822), 1, + sym_test_operator, + ACTIONS(9824), 1, + sym_regex, + STATE(1472), 1, aux_sym__literal_repeat1, + STATE(1633), 1, + sym_concatenation, + ACTIONS(9812), 2, + sym_raw_string, + sym_ansi_c_string, ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10024), 2, + STATE(1324), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208667] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, + sym_word, + ACTIONS(9772), 1, + sym_test_operator, + ACTIONS(9826), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(946), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2556), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250277,49 +251614,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207921] = 20, + [208737] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_word, - ACTIONS(3010), 1, + ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3030), 1, - sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(9828), 1, + sym_word, + ACTIONS(9830), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(9832), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(9834), 1, + sym__special_character, + ACTIONS(9836), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(9840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9842), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(9844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10018), 1, - sym__special_character, - STATE(2112), 1, + ACTIONS(9848), 1, + sym_test_operator, + ACTIONS(9850), 1, + sym_regex, + STATE(1177), 1, aux_sym__literal_repeat1, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10020), 2, + STATE(1332), 1, + sym_concatenation, + ACTIONS(9838), 2, sym_raw_string, sym_ansi_c_string, - STATE(646), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1653), 9, + ACTIONS(9846), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250329,21 +251667,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207993] = 8, + [208811] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(10006), 1, + ACTIONS(9758), 1, anon_sym_DQUOTE, - ACTIONS(10010), 1, + ACTIONS(9762), 1, sym_variable_name, - STATE(5422), 1, + STATE(5441), 1, sym_string, - ACTIONS(10008), 2, + ACTIONS(9760), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10004), 8, + ACTIONS(9756), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -250369,49 +251707,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [208041] = 20, - ACTIONS(71), 1, + [208859] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(10026), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10030), 1, + ACTIONS(9772), 1, sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(9852), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10028), 2, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(795), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2287), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250421,49 +251758,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208113] = 20, - ACTIONS(71), 1, + [208929] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(10026), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10030), 1, + ACTIONS(9772), 1, sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(9854), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10028), 2, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(797), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2287), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250473,49 +251809,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208185] = 20, + [208999] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, - anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, - anon_sym_BQUOTE, - ACTIONS(7996), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(9854), 1, + ACTIONS(7833), 1, sym_word, - ACTIONS(9858), 1, + ACTIONS(7841), 1, sym_test_operator, - STATE(3442), 1, + ACTIONS(9856), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9858), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9860), 1, + sym__special_character, + ACTIONS(9862), 1, + anon_sym_DQUOTE, + ACTIONS(9866), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9868), 1, + anon_sym_BQUOTE, + ACTIONS(9870), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(5002), 1, aux_sym__literal_repeat1, - ACTIONS(7998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9856), 2, + ACTIONS(9864), 2, sym_raw_string, sym_ansi_c_string, - STATE(1746), 2, + ACTIONS(9872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3408), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3373), 9, + STATE(4549), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250525,50 +251861,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208257] = 21, + [209071] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3124), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(7833), 1, + sym_word, + ACTIONS(7841), 1, + sym_test_operator, + ACTIONS(9856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9860), 1, + sym__special_character, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9994), 1, - sym_regex, - ACTIONS(10032), 1, - sym_word, - ACTIONS(10034), 1, - sym__special_character, - ACTIONS(10038), 1, - sym_test_operator, - STATE(1436), 1, + STATE(5002), 1, aux_sym__literal_repeat1, - STATE(1483), 1, - sym_concatenation, - ACTIONS(9990), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10036), 2, + ACTIONS(9864), 2, sym_raw_string, sym_ansi_c_string, - STATE(1894), 9, + ACTIONS(9872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3433), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4549), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250578,50 +251913,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208331] = 21, - ACTIONS(71), 1, + [209143] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(10040), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10042), 1, + ACTIONS(9772), 1, + sym_test_operator, + ACTIONS(9874), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2587), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [209213] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(723), 1, + aux_sym_number_token1, + ACTIONS(725), 1, + aux_sym_number_token2, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, - anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(729), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10060), 1, + ACTIONS(739), 1, + sym__brace_start, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, + sym_word, + ACTIONS(9772), 1, sym_test_operator, - ACTIONS(10062), 1, - sym_regex, - STATE(1083), 1, - aux_sym__literal_repeat1, - STATE(1212), 1, - sym_concatenation, - ACTIONS(10050), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(10058), 2, + ACTIONS(9876), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(816), 9, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250631,49 +252015,135 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208405] = 20, - ACTIONS(71), 1, + [209283] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(4263), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(9882), 1, + anon_sym_LT_LT_LT, + ACTIONS(9884), 1, + sym_file_descriptor, + STATE(4855), 1, + sym_herestring_redirect, + ACTIONS(4253), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4255), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4259), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4261), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9878), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [209341] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9888), 1, + anon_sym_DQUOTE, + ACTIONS(9892), 1, + sym_variable_name, + STATE(5245), 1, + sym_string, + ACTIONS(1197), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(9890), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9886), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(3564), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 15, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3566), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7605), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(9786), 1, + [209389] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2848), 1, sym__special_character, - ACTIONS(9792), 1, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(2854), 1, + aux_sym_number_token1, + ACTIONS(2856), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(2860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, + ACTIONS(2872), 1, + sym__brace_start, + ACTIONS(9894), 1, + sym_word, + ACTIONS(9898), 1, + sym_test_operator, + ACTIONS(9900), 1, + sym_regex, + STATE(2423), 1, aux_sym__literal_repeat1, - ACTIONS(9794), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9802), 2, + STATE(2491), 1, + sym_concatenation, + ACTIONS(2866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3367), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, + ACTIONS(9896), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250683,49 +252153,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208477] = 20, + [209463] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(1490), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(4771), 1, + ACTIONS(9902), 1, sym_word, - ACTIONS(4775), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(9904), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(9906), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(9908), 1, + sym__special_character, + ACTIONS(9910), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(9914), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9916), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10022), 1, - sym__special_character, - STATE(2253), 1, + ACTIONS(9922), 1, + sym_test_operator, + ACTIONS(9924), 1, + sym_regex, + STATE(1372), 1, aux_sym__literal_repeat1, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10024), 2, + STATE(1759), 1, + sym_concatenation, + ACTIONS(9912), 2, sym_raw_string, sym_ansi_c_string, - STATE(947), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2556), 9, + ACTIONS(9920), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1061), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250735,49 +252206,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208549] = 20, - ACTIONS(71), 1, + [209537] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(4366), 1, + ACTIONS(9772), 1, sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10064), 1, - sym__special_character, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9702), 2, + ACTIONS(9926), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10066), 2, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(854), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2413), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250787,49 +252257,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208621] = 20, - ACTIONS(71), 1, + [209607] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(709), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(4366), 1, + ACTIONS(9772), 1, sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10064), 1, - sym__special_character, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9702), 2, + ACTIONS(9928), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10066), 2, + ACTIONS(9768), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(827), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2413), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250839,50 +252308,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208693] = 21, + [209677] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9994), 1, + ACTIONS(9824), 1, sym_regex, - ACTIONS(10068), 1, + ACTIONS(9930), 1, sym_word, - ACTIONS(10070), 1, + ACTIONS(9932), 1, sym__special_character, - ACTIONS(10074), 1, + ACTIONS(9936), 1, sym_test_operator, - STATE(1436), 1, + STATE(1472), 1, aux_sym__literal_repeat1, - STATE(1483), 1, + STATE(1633), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10072), 2, + ACTIONS(9934), 2, sym_raw_string, sym_ansi_c_string, - STATE(1028), 9, + STATE(1118), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250892,22 +252361,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208767] = 8, + [209751] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(9888), 1, anon_sym_DQUOTE, - ACTIONS(9626), 1, + ACTIONS(9892), 1, sym_variable_name, - STATE(5125), 1, + STATE(5245), 1, sym_string, ACTIONS(1191), 2, sym_test_operator, sym__brace_start, - ACTIONS(9624), 2, + ACTIONS(9890), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9620), 8, + ACTIONS(9886), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -250932,46 +252401,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [208815] = 18, + [209799] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(9940), 1, + anon_sym_DQUOTE, + ACTIONS(9944), 1, + sym_variable_name, + STATE(5334), 1, + sym_string, + ACTIONS(9942), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9938), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [209847] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9882), 1, + anon_sym_LT_LT_LT, + STATE(4855), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [209893] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(9940), 1, + anon_sym_DQUOTE, + ACTIONS(9944), 1, + sym_variable_name, + STATE(5334), 1, + sym_string, + ACTIONS(9942), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9938), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [209941] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10078), 1, - anon_sym_DOLLAR, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(7960), 2, + ACTIONS(9772), 1, + sym_test_operator, + ACTIONS(9946), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, + ACTIONS(9768), 2, sym__special_character, - ACTIONS(10082), 3, + sym__comment_word, + ACTIONS(9770), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250981,46 +252571,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208882] = 18, + [210011] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(4288), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(9882), 1, + anon_sym_LT_LT_LT, + ACTIONS(9884), 1, + sym_file_descriptor, + STATE(4855), 1, + sym_herestring_redirect, + ACTIONS(4255), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4259), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4286), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2329), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9878), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [210069] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(5099), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, - anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10092), 1, - sym__comment_word, - ACTIONS(5115), 2, + ACTIONS(9772), 1, + sym_test_operator, + ACTIONS(9948), 1, + anon_sym_RBRACK, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, - sym_test_operator, + ACTIONS(9768), 2, sym__special_character, - ACTIONS(10090), 3, + sym__comment_word, + ACTIONS(9770), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251030,46 +252667,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208949] = 18, - ACTIONS(3), 1, + [210139] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(8122), 1, - anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(8130), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(9804), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9806), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9810), 1, + anon_sym_DQUOTE, + ACTIONS(9814), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(9824), 1, + sym_regex, + ACTIONS(9950), 1, sym_word, - ACTIONS(10100), 1, - sym__comment_word, - ACTIONS(8138), 2, + ACTIONS(9952), 1, + sym__special_character, + ACTIONS(9956), 1, + sym_test_operator, + STATE(1472), 1, + aux_sym__literal_repeat1, + STATE(1633), 1, + sym_concatenation, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10098), 3, - sym__bare_dollar, + ACTIONS(9954), 2, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(1930), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251079,27 +252720,26 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209016] = 7, + [210213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, + ACTIONS(9882), 1, anon_sym_LT_LT_LT, - STATE(4815), 1, + STATE(4855), 1, sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(4290), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4182), 3, + STATE(4185), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 20, + ACTIONS(4257), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -251109,6 +252749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -251117,46 +252758,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [209061] = 18, - ACTIONS(3), 1, + [210257] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(7833), 1, + sym_word, + ACTIONS(7841), 1, + sym_test_operator, + ACTIONS(9856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(9858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(9860), 1, + sym__special_character, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + STATE(5002), 1, + aux_sym__literal_repeat1, + ACTIONS(9864), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3410), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4549), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210329] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3136), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(7833), 1, + sym_word, + ACTIONS(7841), 1, + sym_test_operator, + ACTIONS(9856), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9858), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9860), 1, + sym__special_character, + ACTIONS(9862), 1, + anon_sym_DQUOTE, + ACTIONS(9866), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9868), 1, + anon_sym_BQUOTE, + ACTIONS(9870), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(5002), 1, + aux_sym__literal_repeat1, + ACTIONS(9864), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3406), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4549), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210401] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6132), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6138), 1, + anon_sym_DQUOTE, + ACTIONS(6142), 1, + aux_sym_number_token1, + ACTIONS(6144), 1, + aux_sym_number_token2, + ACTIONS(6146), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6150), 1, + anon_sym_BQUOTE, + ACTIONS(6152), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6158), 1, + sym__brace_start, + ACTIONS(9958), 1, sym_word, - ACTIONS(10106), 1, + ACTIONS(9960), 1, anon_sym_DOLLAR, - ACTIONS(10112), 1, + ACTIONS(9966), 1, sym__comment_word, - ACTIONS(8028), 2, + ACTIONS(6154), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(9962), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(9964), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(3463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251166,46 +252911,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209128] = 18, + [210468] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, + ACTIONS(3630), 1, + aux_sym_number_token1, + ACTIONS(3632), 1, + aux_sym_number_token2, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3646), 1, + sym__brace_start, + ACTIONS(9968), 1, + sym_word, + ACTIONS(9970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9974), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(9978), 1, + anon_sym_DQUOTE, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9984), 1, + anon_sym_BQUOTE, + ACTIONS(9986), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9990), 1, + sym__comment_word, + ACTIONS(9976), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9988), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9980), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1950), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210535] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + anon_sym_DOLLAR, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, + ACTIONS(2042), 1, sym__brace_start, - ACTIONS(8160), 1, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, + ACTIONS(9992), 1, sym_word, - ACTIONS(10120), 1, + ACTIONS(9998), 1, sym__comment_word, - ACTIONS(8176), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(9994), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(9996), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251215,46 +253009,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209195] = 18, - ACTIONS(3), 1, + [210602] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8068), 1, + ACTIONS(4461), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(4463), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8076), 1, + ACTIONS(4465), 1, + anon_sym_DOLLAR, + ACTIONS(4467), 1, + sym__special_character, + ACTIONS(4469), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(4473), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(4475), 1, aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(4479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(4481), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, + ACTIONS(4489), 1, sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(10000), 1, sym_word, - ACTIONS(10124), 1, - anon_sym_DOLLAR, - ACTIONS(10130), 1, - sym__comment_word, - ACTIONS(8092), 2, + ACTIONS(10004), 1, + sym_test_operator, + STATE(2796), 1, + aux_sym__literal_repeat1, + STATE(2917), 1, + sym_concatenation, + ACTIONS(4485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10126), 2, - sym_test_operator, + ACTIONS(10002), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2413), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210673] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4918), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4920), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4922), 1, + anon_sym_DOLLAR, + ACTIONS(4926), 1, + anon_sym_DQUOTE, + ACTIONS(4930), 1, + aux_sym_number_token1, + ACTIONS(4932), 1, + aux_sym_number_token2, + ACTIONS(4934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4938), 1, + anon_sym_BQUOTE, + ACTIONS(4940), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4946), 1, + sym__brace_start, + ACTIONS(10006), 1, + sym_word, + ACTIONS(10008), 1, sym__special_character, - ACTIONS(10128), 3, - sym__bare_dollar, + ACTIONS(10012), 1, + sym_test_operator, + STATE(5147), 1, + aux_sym__literal_repeat1, + STATE(5426), 1, + sym_concatenation, + ACTIONS(4942), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10010), 2, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(5060), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251264,46 +253111,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209262] = 18, + [210744] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(5739), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(5741), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(5745), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(5755), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(10014), 1, + sym_word, + ACTIONS(10016), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(10018), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(10020), 1, + anon_sym_DOLLAR, + ACTIONS(10024), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(10028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(10030), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(10032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, - sym_word, - ACTIONS(10134), 1, - anon_sym_DOLLAR, - ACTIONS(10140), 1, + ACTIONS(10036), 1, sym__comment_word, - ACTIONS(9802), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(10022), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(10034), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10026), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(3354), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251313,46 +253160,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209329] = 18, + [210811] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(3325), 1, anon_sym_DOLLAR, - ACTIONS(2295), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(2301), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, + ACTIONS(3349), 1, sym__brace_start, - ACTIONS(10142), 1, + ACTIONS(10038), 1, sym_word, - ACTIONS(10144), 1, + ACTIONS(10040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(10042), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, + ACTIONS(10058), 1, sym__comment_word, - ACTIONS(10148), 2, + ACTIONS(10044), 2, sym_test_operator, sym__special_character, - ACTIONS(10160), 2, + ACTIONS(10056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, + ACTIONS(10048), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(1783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251362,46 +253209,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209396] = 18, - ACTIONS(3), 1, + [210878] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(5994), 1, + anon_sym_DOLLAR, + ACTIONS(6000), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(6002), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(6006), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(6016), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(10060), 1, + sym_word, + ACTIONS(10062), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(10064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(10066), 1, + sym__special_character, + ACTIONS(10068), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(10072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(10074), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(10076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, - sym_word, - ACTIONS(10112), 1, - sym__comment_word, - ACTIONS(10164), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(10080), 1, sym_test_operator, - sym__special_character, - ACTIONS(10110), 3, - sym__bare_dollar, + STATE(5572), 1, + aux_sym__literal_repeat1, + STATE(5618), 1, + sym_concatenation, + ACTIONS(10070), 2, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + ACTIONS(10078), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5514), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251411,46 +253260,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209463] = 18, - ACTIONS(3), 1, + [210949] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(5994), 1, anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(6000), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(6002), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(6006), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(6016), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(10062), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(10064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(10066), 1, + sym__special_character, + ACTIONS(10068), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(10072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(10074), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(10076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(10082), 1, sym_word, - ACTIONS(10172), 1, - sym__comment_word, - ACTIONS(10058), 2, + ACTIONS(10086), 1, + sym_test_operator, + STATE(5583), 1, + aux_sym__literal_repeat1, + STATE(5614), 1, + sym_concatenation, + ACTIONS(10078), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10170), 3, - sym__bare_dollar, + ACTIONS(10084), 2, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(5518), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251460,46 +253311,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209530] = 18, + [211020] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(5739), 1, + aux_sym_number_token1, + ACTIONS(5741), 1, + aux_sym_number_token2, + ACTIONS(5745), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5755), 1, + sym__brace_start, + ACTIONS(10014), 1, + sym_word, + ACTIONS(10016), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(10018), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4072), 1, + ACTIONS(10024), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, - aux_sym_number_token1, - ACTIONS(4078), 1, - aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(10028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(10030), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(10032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(10174), 1, - sym_word, - ACTIONS(10176), 1, - anon_sym_DOLLAR, - ACTIONS(10182), 1, + ACTIONS(10036), 1, sym__comment_word, - ACTIONS(4088), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10178), 2, + ACTIONS(10088), 1, + anon_sym_DOLLAR, + ACTIONS(10022), 2, sym_test_operator, sym__special_character, - ACTIONS(10180), 3, + ACTIONS(10034), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10026), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(3354), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251509,46 +253360,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209597] = 18, + [211087] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(2807), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, + ACTIONS(10090), 1, sym_word, - ACTIONS(10190), 1, + ACTIONS(10096), 1, sym__comment_word, - ACTIONS(9946), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10186), 2, + ACTIONS(10092), 2, sym_test_operator, sym__special_character, - ACTIONS(10188), 3, + ACTIONS(10094), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251558,46 +253409,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209664] = 18, - ACTIONS(3), 1, + [211154] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(5605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, + sym__special_character, + ACTIONS(5611), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(5615), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(5617), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(5619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(5621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(5623), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(5625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(5631), 1, sym__brace_start, - ACTIONS(10192), 1, + ACTIONS(10098), 1, sym_word, - ACTIONS(10194), 1, - anon_sym_DOLLAR, - ACTIONS(10200), 1, - sym__comment_word, - ACTIONS(69), 2, + ACTIONS(10102), 1, + sym_test_operator, + STATE(5417), 1, + aux_sym__literal_repeat1, + STATE(5601), 1, + sym_concatenation, + ACTIONS(5627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10196), 2, - sym_test_operator, + ACTIONS(10100), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5319), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211225] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5603), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5605), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5609), 1, sym__special_character, - ACTIONS(10198), 3, - sym__bare_dollar, + ACTIONS(5611), 1, + anon_sym_DQUOTE, + ACTIONS(5615), 1, + aux_sym_number_token1, + ACTIONS(5617), 1, + aux_sym_number_token2, + ACTIONS(5619), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5621), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5623), 1, + anon_sym_BQUOTE, + ACTIONS(5625), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5631), 1, + sym__brace_start, + ACTIONS(10104), 1, + sym_word, + ACTIONS(10108), 1, + sym_test_operator, + STATE(5419), 1, + aux_sym__literal_repeat1, + STATE(5587), 1, + sym_concatenation, + ACTIONS(5627), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10106), 2, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(5415), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251607,46 +253511,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209731] = 18, + [211296] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_DOLLAR, - ACTIONS(3129), 1, + ACTIONS(3630), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(3632), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(3646), 1, sym__brace_start, - ACTIONS(10202), 1, + ACTIONS(9968), 1, sym_word, - ACTIONS(10204), 1, + ACTIONS(9970), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(9972), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(9978), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(9982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(9984), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, + ACTIONS(9990), 1, sym__comment_word, - ACTIONS(10208), 2, + ACTIONS(10110), 1, + anon_sym_DOLLAR, + ACTIONS(9976), 2, sym_test_operator, sym__special_character, - ACTIONS(10220), 2, + ACTIONS(9988), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, + ACTIONS(9980), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(1950), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251656,46 +253560,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209798] = 18, + [211363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(1883), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(1885), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(1889), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(1903), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(8150), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(8154), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(8158), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(8160), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(8162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(10112), 1, sym_word, - ACTIONS(10140), 1, - sym__comment_word, - ACTIONS(10224), 1, + ACTIONS(10114), 1, anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(10120), 1, + sym__comment_word, + ACTIONS(8164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(10116), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(10118), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(1512), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251705,46 +253609,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209865] = 18, + [211430] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2343), 1, - aux_sym_number_token1, - ACTIONS(2345), 1, - aux_sym_number_token2, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, - sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(6130), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6138), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(6142), 1, + aux_sym_number_token1, + ACTIONS(6144), 1, + aux_sym_number_token2, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6150), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(6152), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, + ACTIONS(6158), 1, + sym__brace_start, + ACTIONS(9958), 1, sym_word, - ACTIONS(10232), 1, + ACTIONS(9966), 1, sym__comment_word, - ACTIONS(9644), 2, + ACTIONS(6154), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10228), 2, + ACTIONS(9962), 2, sym_test_operator, sym__special_character, - ACTIONS(10230), 3, + ACTIONS(9964), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(3463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251754,46 +253658,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209932] = 18, - ACTIONS(3), 1, + [211497] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(5399), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5401), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5403), 1, anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(5405), 1, + sym__special_character, + ACTIONS(5407), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(5413), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(5415), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5417), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(5419), 1, + anon_sym_BQUOTE, + ACTIONS(5421), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5427), 1, sym__brace_start, - ACTIONS(10234), 1, + ACTIONS(10122), 1, sym_word, - ACTIONS(10236), 1, + ACTIONS(10126), 1, + sym_test_operator, + STATE(5344), 1, + aux_sym__literal_repeat1, + STATE(5493), 1, + sym_concatenation, + ACTIONS(5423), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10124), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5188), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211568] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(5401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(5403), 1, + anon_sym_DOLLAR, + ACTIONS(5405), 1, + sym__special_character, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(5411), 1, + aux_sym_number_token1, + ACTIONS(5413), 1, + aux_sym_number_token2, + ACTIONS(5415), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(5417), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5419), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(5421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(10240), 2, + ACTIONS(5427), 1, + sym__brace_start, + ACTIONS(10128), 1, + sym_word, + ACTIONS(10132), 1, sym_test_operator, - sym__special_character, - ACTIONS(10252), 2, + STATE(5352), 1, + aux_sym__literal_repeat1, + STATE(5472), 1, + sym_concatenation, + ACTIONS(5423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, - sym__bare_dollar, + ACTIONS(10130), 2, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(5191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251803,46 +253760,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209999] = 18, + [211639] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(4334), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(4338), 1, + anon_sym_DOLLAR, + ACTIONS(4342), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(4346), 1, + aux_sym_number_token1, + ACTIONS(4348), 1, + aux_sym_number_token2, + ACTIONS(4350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(4352), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4354), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(4356), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, + ACTIONS(4362), 1, + sym__brace_start, + ACTIONS(10134), 1, sym_word, - ACTIONS(10258), 1, - anon_sym_DOLLAR, - ACTIONS(10264), 1, + ACTIONS(10140), 1, sym__comment_word, - ACTIONS(9778), 2, + ACTIONS(4358), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10260), 2, + ACTIONS(10136), 2, sym_test_operator, sym__special_character, - ACTIONS(10262), 3, + ACTIONS(10138), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, + STATE(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251852,46 +253809,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210066] = 18, - ACTIONS(3), 1, + [211706] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(701), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(705), 1, + ACTIONS(1980), 1, anon_sym_DOLLAR, - ACTIONS(709), 1, - anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(1986), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(1988), 1, aux_sym_number_token2, - ACTIONS(717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(1992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(2002), 1, + sym__brace_start, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8448), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8450), 1, + sym__special_character, + ACTIONS(8452), 1, + anon_sym_DQUOTE, + ACTIONS(8456), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8458), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(8460), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, - sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(10142), 1, sym_word, - ACTIONS(10272), 1, - sym__comment_word, - ACTIONS(725), 2, + ACTIONS(10146), 1, + sym_test_operator, + STATE(1396), 1, + aux_sym__literal_repeat1, + STATE(1641), 1, + sym_concatenation, + ACTIONS(8462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10268), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10270), 3, - sym__bare_dollar, + ACTIONS(10144), 2, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251901,46 +253860,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210133] = 18, - ACTIONS(3), 1, + [211777] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8188), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8192), 1, + ACTIONS(1980), 1, anon_sym_DOLLAR, - ACTIONS(8196), 1, - anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(1986), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(1988), 1, aux_sym_number_token2, - ACTIONS(8204), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(1992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(2002), 1, + sym__brace_start, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8448), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8450), 1, + sym__special_character, + ACTIONS(8452), 1, + anon_sym_DQUOTE, + ACTIONS(8456), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8458), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(8460), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, - sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(10148), 1, sym_word, - ACTIONS(10280), 1, - sym__comment_word, - ACTIONS(8212), 2, + ACTIONS(10152), 1, + sym_test_operator, + STATE(1401), 1, + aux_sym__literal_repeat1, + STATE(1649), 1, + sym_concatenation, + ACTIONS(8462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10278), 3, - sym__bare_dollar, + ACTIONS(10150), 2, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(1132), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251950,46 +253911,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210200] = 18, + [211848] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(1883), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1885), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(1889), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(1903), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(8150), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(8154), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(8158), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(8160), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(8162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, + ACTIONS(10112), 1, sym_word, - ACTIONS(10264), 1, + ACTIONS(10120), 1, sym__comment_word, - ACTIONS(10282), 1, + ACTIONS(10154), 1, anon_sym_DOLLAR, - ACTIONS(9778), 2, + ACTIONS(8164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10260), 2, + ACTIONS(10116), 2, sym_test_operator, sym__special_character, - ACTIONS(10262), 3, + ACTIONS(10118), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, + STATE(1512), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251999,46 +253960,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210267] = 18, + [211915] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8234), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(10284), 1, + ACTIONS(10156), 1, sym_word, - ACTIONS(10290), 1, + ACTIONS(10158), 1, + anon_sym_DOLLAR, + ACTIONS(10164), 1, sym__comment_word, - ACTIONS(8250), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, + ACTIONS(10160), 2, sym_test_operator, sym__special_character, - ACTIONS(10288), 3, + ACTIONS(10162), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(1134), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252048,46 +254009,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210334] = 18, + [211982] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, - aux_sym_number_token1, - ACTIONS(3320), 1, - aux_sym_number_token2, - ACTIONS(3324), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3336), 1, - sym__brace_start, - ACTIONS(10292), 1, - sym_word, - ACTIONS(10294), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10298), 1, + ACTIONS(111), 1, anon_sym_DOLLAR, - ACTIONS(10302), 1, + ACTIONS(115), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(119), 1, + aux_sym_number_token1, + ACTIONS(121), 1, + aux_sym_number_token2, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, + ACTIONS(139), 1, + sym__brace_start, + ACTIONS(10166), 1, + sym_word, + ACTIONS(10172), 1, sym__comment_word, - ACTIONS(10300), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10312), 2, + ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 3, + ACTIONS(10168), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10170), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(473), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252097,46 +254058,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210401] = 18, - ACTIONS(3), 1, + [212049] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(10316), 1, + ACTIONS(3233), 1, + anon_sym_DOLLAR, + ACTIONS(3239), 1, + aux_sym_number_token1, + ACTIONS(3241), 1, + aux_sym_number_token2, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3255), 1, + sym__brace_start, + ACTIONS(10174), 1, sym_word, - ACTIONS(10318), 1, + ACTIONS(10176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(10178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10322), 1, - anon_sym_DOLLAR, - ACTIONS(10326), 1, + ACTIONS(10180), 1, + sym__special_character, + ACTIONS(10182), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(10186), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(10188), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(10190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10324), 2, + ACTIONS(10194), 1, sym_test_operator, - sym__special_character, - ACTIONS(10342), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10328), 3, - sym__bare_dollar, + STATE(4536), 1, + aux_sym__literal_repeat1, + STATE(4948), 1, + sym_concatenation, + ACTIONS(10184), 2, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + ACTIONS(10192), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252146,46 +254109,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210468] = 18, - ACTIONS(3), 1, + [212120] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(3233), 1, anon_sym_DOLLAR, - ACTIONS(1889), 1, + ACTIONS(3239), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(3241), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(3255), 1, sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(10176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(10178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(10180), 1, + sym__special_character, + ACTIONS(10182), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(10186), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(10188), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(10190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(10196), 1, sym_word, - ACTIONS(10354), 1, - sym__comment_word, - ACTIONS(8280), 2, + ACTIONS(10200), 1, + sym_test_operator, + STATE(4384), 1, + aux_sym__literal_repeat1, + STATE(4767), 1, + sym_concatenation, + ACTIONS(10192), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10350), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10352), 3, - sym__bare_dollar, + ACTIONS(10198), 2, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(4301), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252195,46 +254160,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210535] = 18, + [212191] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(4209), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5019), 1, + ACTIONS(4211), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(4219), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(4221), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(4223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(4227), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, + ACTIONS(4239), 1, sym__brace_start, - ACTIONS(10356), 1, + ACTIONS(10202), 1, sym_word, - ACTIONS(10358), 1, - anon_sym_DOLLAR, - ACTIONS(10364), 1, + ACTIONS(10208), 1, sym__comment_word, - ACTIONS(5035), 2, + ACTIONS(4231), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(10204), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(10206), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(2565), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252244,46 +254209,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210602] = 18, - ACTIONS(3), 1, + [212258] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(2546), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(2552), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2564), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(10366), 1, - sym_word, - ACTIONS(10368), 1, + ACTIONS(9830), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, + ACTIONS(9832), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, + ACTIONS(9834), 1, + sym__special_character, + ACTIONS(9836), 1, anon_sym_DQUOTE, - ACTIONS(10378), 1, + ACTIONS(9840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(9842), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(9844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, - sym__comment_word, - ACTIONS(10372), 2, + ACTIONS(10210), 1, + sym_word, + ACTIONS(10214), 1, sym_test_operator, - sym__special_character, - ACTIONS(10384), 2, + STATE(1149), 1, + aux_sym__literal_repeat1, + STATE(1293), 1, + sym_concatenation, + ACTIONS(9846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 3, - sym__bare_dollar, + ACTIONS(10212), 2, sym_raw_string, sym_ansi_c_string, - STATE(1498), 9, + STATE(902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252293,46 +254260,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210669] = 18, - ACTIONS(3), 1, + [212329] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(1374), 1, + anon_sym_DOLLAR, + ACTIONS(1380), 1, + aux_sym_number_token1, + ACTIONS(1382), 1, + aux_sym_number_token2, + ACTIONS(1386), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1398), 1, + sym__brace_start, + ACTIONS(9830), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(9832), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4546), 1, + ACTIONS(9834), 1, + sym__special_character, + ACTIONS(9836), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(9840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(9842), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(9844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, - sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(10216), 1, sym_word, - ACTIONS(10390), 1, - anon_sym_DOLLAR, - ACTIONS(10396), 1, - sym__comment_word, - ACTIONS(4562), 2, + ACTIONS(10220), 1, + sym_test_operator, + STATE(1153), 1, + aux_sym__literal_repeat1, + STATE(1299), 1, + sym_concatenation, + ACTIONS(9846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10392), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10394), 3, - sym__bare_dollar, + ACTIONS(10218), 2, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(914), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252342,46 +254311,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210736] = 18, + [212400] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(115), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(119), 1, + aux_sym_number_token1, + ACTIONS(121), 1, + aux_sym_number_token2, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, + ACTIONS(139), 1, + sym__brace_start, + ACTIONS(10166), 1, sym_word, - ACTIONS(10264), 1, + ACTIONS(10172), 1, sym__comment_word, - ACTIONS(9778), 2, + ACTIONS(10222), 1, + anon_sym_DOLLAR, + ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10260), 2, + ACTIONS(10168), 2, sym_test_operator, sym__special_character, - ACTIONS(10262), 3, + ACTIONS(10170), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, + STATE(473), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252391,46 +254360,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210803] = 18, + [212467] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 1, - anon_sym_DOLLAR, - ACTIONS(3243), 1, - aux_sym_number_token1, - ACTIONS(3245), 1, - aux_sym_number_token2, - ACTIONS(3249), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, - sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(4802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(4804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(4806), 1, + anon_sym_DOLLAR, + ACTIONS(4810), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(4814), 1, + aux_sym_number_token1, + ACTIONS(4816), 1, + aux_sym_number_token2, + ACTIONS(4818), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(4820), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4822), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(4824), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, + ACTIONS(4832), 1, + sym__brace_start, + ACTIONS(10224), 1, sym_word, - ACTIONS(10404), 1, + ACTIONS(10230), 1, sym__comment_word, - ACTIONS(9740), 2, + ACTIONS(4826), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10400), 2, + ACTIONS(10226), 2, sym_test_operator, sym__special_character, - ACTIONS(10402), 3, + ACTIONS(10228), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(2769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252440,46 +254409,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210870] = 18, - ACTIONS(3), 1, + [212534] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(2772), 1, anon_sym_DOLLAR, - ACTIONS(3484), 1, + ACTIONS(2778), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(2780), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(2794), 1, sym__brace_start, - ACTIONS(10406), 1, + ACTIONS(10232), 1, sym_word, - ACTIONS(10408), 1, + ACTIONS(10234), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(10236), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(10238), 1, + sym__special_character, + ACTIONS(10240), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(10244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(10246), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(10248), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, - sym__comment_word, - ACTIONS(10412), 2, + ACTIONS(10252), 1, sym_test_operator, - sym__special_character, - ACTIONS(10424), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10416), 3, - sym__bare_dollar, + STATE(4332), 1, + aux_sym__literal_repeat1, + STATE(4544), 1, + sym_concatenation, + ACTIONS(10242), 2, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + ACTIONS(10250), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4176), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252489,46 +254460,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210937] = 18, - ACTIONS(3), 1, + [212605] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(2772), 1, anon_sym_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(2778), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(2780), 1, aux_sym_number_token2, - ACTIONS(2631), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2641), 1, + ACTIONS(2794), 1, sym__brace_start, - ACTIONS(9742), 1, + ACTIONS(10234), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(10236), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, + ACTIONS(10238), 1, + sym__special_character, + ACTIONS(10240), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(10244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(10246), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(10248), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(10254), 1, sym_word, - ACTIONS(10434), 1, - sym__comment_word, - ACTIONS(9758), 2, + ACTIONS(10258), 1, + sym_test_operator, + STATE(4335), 1, + aux_sym__literal_repeat1, + STATE(4564), 1, + sym_concatenation, + ACTIONS(10250), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10432), 3, - sym__bare_dollar, + ACTIONS(10256), 2, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(4148), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252538,46 +254511,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211004] = 18, + [212676] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3344), 1, - anon_sym_DOLLAR, - ACTIONS(3350), 1, + ACTIONS(6000), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(6002), 1, aux_sym_number_token2, - ACTIONS(3356), 1, + ACTIONS(6006), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, + ACTIONS(6016), 1, sym__brace_start, - ACTIONS(10436), 1, - sym_word, - ACTIONS(10438), 1, + ACTIONS(10062), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(10064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(10068), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(10072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(10074), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(10076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(10260), 1, + sym_word, + ACTIONS(10262), 1, + anon_sym_DOLLAR, + ACTIONS(10268), 1, sym__comment_word, - ACTIONS(10442), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10454), 2, + ACTIONS(10078), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(10264), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10266), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(5530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252587,46 +254560,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211071] = 18, + [212743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, - aux_sym_number_token1, - ACTIONS(3245), 1, - aux_sym_number_token2, - ACTIONS(3249), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, - sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(2854), 1, + aux_sym_number_token1, + ACTIONS(2856), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(2860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, + ACTIONS(2872), 1, + sym__brace_start, + ACTIONS(10270), 1, sym_word, - ACTIONS(10404), 1, + ACTIONS(10276), 1, sym__comment_word, - ACTIONS(10458), 1, - anon_sym_DOLLAR, - ACTIONS(9740), 2, + ACTIONS(2866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10400), 2, + ACTIONS(10272), 2, sym_test_operator, sym__special_character, - ACTIONS(10402), 3, + ACTIONS(10274), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(2294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252636,46 +254609,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211138] = 18, - ACTIONS(3), 1, + [212810] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8374), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR, - ACTIONS(8378), 1, - anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(8386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(2417), 1, + sym__brace_start, + ACTIONS(8120), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8124), 1, + sym__special_character, + ACTIONS(8126), 1, + anon_sym_DQUOTE, + ACTIONS(8130), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8132), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(8134), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, - sym__brace_start, - ACTIONS(10460), 1, + ACTIONS(10278), 1, sym_word, - ACTIONS(10466), 1, - sym__comment_word, - ACTIONS(8394), 2, + ACTIONS(10282), 1, + sym_test_operator, + STATE(1705), 1, + aux_sym__literal_repeat1, + STATE(1859), 1, + sym_concatenation, + ACTIONS(8136), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10462), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10464), 3, - sym__bare_dollar, + ACTIONS(10280), 2, sym_raw_string, sym_ansi_c_string, - STATE(4362), 9, + STATE(1315), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252685,46 +254660,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211205] = 18, - ACTIONS(3), 1, + [212881] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(2395), 1, + anon_sym_DOLLAR, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, + ACTIONS(2417), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(8120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(8122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(8124), 1, + sym__special_character, + ACTIONS(8126), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(8130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(8132), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(8134), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, + ACTIONS(10284), 1, sym_word, - ACTIONS(10404), 1, - sym__comment_word, - ACTIONS(10468), 1, - anon_sym_DOLLAR, - ACTIONS(9740), 2, + ACTIONS(10288), 1, + sym_test_operator, + STATE(1712), 1, + aux_sym__literal_repeat1, + STATE(1962), 1, + sym_concatenation, + ACTIONS(8136), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10400), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10402), 3, - sym__bare_dollar, + ACTIONS(10286), 2, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(1317), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252734,46 +254711,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211272] = 18, + [212952] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(6000), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(6002), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(6006), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(6016), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(10062), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(10064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(10068), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(10072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(10074), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(10076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, + ACTIONS(10260), 1, sym_word, - ACTIONS(10472), 1, - anon_sym_DOLLAR, - ACTIONS(10478), 1, + ACTIONS(10268), 1, sym__comment_word, - ACTIONS(9890), 2, + ACTIONS(10290), 1, + anon_sym_DOLLAR, + ACTIONS(10078), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(10264), 2, sym_test_operator, sym__special_character, - ACTIONS(10476), 3, + ACTIONS(10266), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3342), 9, + STATE(5530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252783,46 +254760,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211339] = 18, + [213019] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10292), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(10294), 1, + anon_sym_DOLLAR, + ACTIONS(10300), 1, sym__comment_word, - ACTIONS(1125), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10296), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10298), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(6433), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252832,46 +254809,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211406] = 18, + [213086] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10494), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR, - ACTIONS(10498), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(1069), 1, + sym__brace_start, + ACTIONS(10302), 1, + sym_word, + ACTIONS(10308), 1, sym__comment_word, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(10304), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(1986), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252881,46 +254858,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211473] = 18, - ACTIONS(3), 1, + [213153] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3924), 1, + anon_sym_DOLLAR, + ACTIONS(3930), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3932), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3936), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3946), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(10310), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(10312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10316), 1, + sym__special_character, + ACTIONS(10318), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10322), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10324), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10326), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(10512), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(10330), 1, sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + STATE(4621), 1, + aux_sym__literal_repeat1, + STATE(4981), 1, + sym_concatenation, + ACTIONS(10320), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + ACTIONS(10328), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4456), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252930,46 +254909,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211540] = 18, - ACTIONS(3), 1, + [213224] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3924), 1, + anon_sym_DOLLAR, + ACTIONS(3930), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3932), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3936), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3946), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(10312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10520), 1, - anon_sym_DOLLAR, - ACTIONS(10524), 1, + ACTIONS(10316), 1, + sym__special_character, + ACTIONS(10318), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10322), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10324), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10326), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(10522), 2, + ACTIONS(10332), 1, + sym_word, + ACTIONS(10336), 1, sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + STATE(4594), 1, + aux_sym__literal_repeat1, + STATE(5029), 1, + sym_concatenation, + ACTIONS(10328), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(10334), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4422), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252979,46 +254960,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211607] = 18, + [213295] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3879), 1, + anon_sym_DOLLAR, + ACTIONS(3885), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3887), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3891), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3901), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(10338), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(10340), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10342), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10346), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10352), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10354), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(10358), 1, sym__comment_word, - ACTIONS(10538), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(10344), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10356), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10348), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1991), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253028,46 +255009,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211674] = 18, - ACTIONS(3), 1, + [213362] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9778), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(9780), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(9782), 1, + sym__special_character, + ACTIONS(9784), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(9788), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(9790), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9792), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(10360), 1, sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(10540), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(10364), 1, + sym_test_operator, + STATE(1338), 1, + aux_sym__literal_repeat1, + STATE(1344), 1, + sym_concatenation, + ACTIONS(9794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, + ACTIONS(10362), 2, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1036), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253077,48 +255060,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211741] = 20, + [213433] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(9778), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(9780), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, + ACTIONS(9782), 1, sym__special_character, - ACTIONS(9654), 1, + ACTIONS(9784), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(9788), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(9790), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(9792), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10542), 1, + ACTIONS(10366), 1, sym_word, - ACTIONS(10546), 1, + ACTIONS(10370), 1, sym_test_operator, - STATE(1360), 1, + STATE(1330), 1, aux_sym__literal_repeat1, - STATE(1612), 1, + STATE(1520), 1, sym_concatenation, - ACTIONS(9664), 2, + ACTIONS(9794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10544), 2, + ACTIONS(10368), 2, sym_raw_string, sym_ansi_c_string, - STATE(1100), 9, + STATE(1037), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253128,46 +255111,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211812] = 18, + [213504] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4637), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, - aux_sym_number_token1, - ACTIONS(4643), 1, - aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(10548), 1, - sym_word, - ACTIONS(10550), 1, - anon_sym_DOLLAR, - ACTIONS(10556), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(4653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10552), 2, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(10554), 3, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253177,46 +255160,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211879] = 18, - ACTIONS(3), 1, + [213571] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(3414), 1, + anon_sym_DOLLAR, + ACTIONS(3420), 1, + aux_sym_number_token1, + ACTIONS(3422), 1, + aux_sym_number_token2, + ACTIONS(3426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3436), 1, + sym__brace_start, + ACTIONS(10394), 1, + sym_word, + ACTIONS(10396), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(10398), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(10400), 1, + sym__special_character, + ACTIONS(10402), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(10406), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(10408), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(10410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, - sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(10558), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(10414), 1, sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, + STATE(4381), 1, + aux_sym__literal_repeat1, + STATE(4731), 1, + sym_concatenation, + ACTIONS(10404), 2, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + ACTIONS(10412), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4274), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253226,48 +255211,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211946] = 20, + [213642] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(3414), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(3420), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(3422), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(3426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(3436), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(10396), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(10398), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, + ACTIONS(10400), 1, sym__special_character, - ACTIONS(9654), 1, + ACTIONS(10402), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(10406), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(10408), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(10410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10560), 1, + ACTIONS(10416), 1, sym_word, - ACTIONS(10564), 1, + ACTIONS(10420), 1, sym_test_operator, - STATE(1366), 1, + STATE(4403), 1, aux_sym__literal_repeat1, - STATE(1613), 1, + STATE(4692), 1, sym_concatenation, - ACTIONS(9664), 2, + ACTIONS(10412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10562), 2, + ACTIONS(10418), 2, sym_raw_string, sym_ansi_c_string, - STATE(1102), 9, + STATE(4298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253277,46 +255262,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212017] = 18, + [213713] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(3624), 1, + anon_sym_DOLLAR, + ACTIONS(3630), 1, + aux_sym_number_token1, + ACTIONS(3632), 1, + aux_sym_number_token2, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3646), 1, + sym__brace_start, + ACTIONS(9968), 1, + sym_word, + ACTIONS(9970), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(9972), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4637), 1, + ACTIONS(9978), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, - aux_sym_number_token1, - ACTIONS(4643), 1, - aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(9982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(9984), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(10548), 1, - sym_word, - ACTIONS(10556), 1, + ACTIONS(9990), 1, sym__comment_word, - ACTIONS(10566), 1, - anon_sym_DOLLAR, - ACTIONS(4653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10552), 2, + ACTIONS(9976), 2, sym_test_operator, sym__special_character, - ACTIONS(10554), 3, + ACTIONS(9988), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9980), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(1950), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253326,46 +255311,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212084] = 18, + [213780] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(10422), 1, + sym_word, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10570), 1, - anon_sym_DOLLAR, - ACTIONS(10576), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10440), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253375,46 +255360,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212151] = 18, + [213847] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10448), 1, + anon_sym_LT_LT_LT, + ACTIONS(10450), 1, + sym_file_descriptor, + STATE(5008), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4316), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4318), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4364), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(10446), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2329), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [213904] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8757), 1, + anon_sym_DOLLAR, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(10452), 1, sym_word, - ACTIONS(10580), 1, - anon_sym_DOLLAR, - ACTIONS(10586), 1, + ACTIONS(10458), 1, sym__comment_word, - ACTIONS(7998), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(10454), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(10456), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(5250), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253424,46 +255453,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212218] = 18, + [213971] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3124), 1, + anon_sym_DOLLAR, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(9856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(9858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(10460), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(10466), 1, sym__comment_word, - ACTIONS(10588), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(9872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10462), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10464), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(4770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253473,46 +255502,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212285] = 18, + [214038] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, + ACTIONS(10292), 1, sym_word, - ACTIONS(10478), 1, + ACTIONS(10300), 1, sym__comment_word, - ACTIONS(10590), 1, + ACTIONS(10468), 1, anon_sym_DOLLAR, - ACTIONS(9890), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(10296), 2, sym_test_operator, sym__special_character, - ACTIONS(10476), 3, + ACTIONS(10298), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3342), 9, + STATE(6433), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253522,46 +255551,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212352] = 18, + [214105] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, + ACTIONS(3688), 1, + anon_sym_DOLLAR, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(10406), 1, + ACTIONS(10470), 1, sym_word, - ACTIONS(10408), 1, + ACTIONS(10472), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(10474), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, + ACTIONS(10490), 1, sym__comment_word, - ACTIONS(10592), 1, - anon_sym_DOLLAR, - ACTIONS(10412), 2, + ACTIONS(10476), 2, sym_test_operator, sym__special_character, - ACTIONS(10424), 2, + ACTIONS(10488), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, + ACTIONS(10480), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(2023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253571,48 +255600,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212419] = 20, - ACTIONS(71), 1, + [214172] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(4209), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, + ACTIONS(4215), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(4219), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(4221), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(4223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(4227), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(10594), 1, - sym_word, - ACTIONS(10598), 1, - sym_test_operator, - STATE(1790), 1, - aux_sym__literal_repeat1, - STATE(1987), 1, - sym_concatenation, - ACTIONS(7890), 2, + ACTIONS(4239), 1, + sym__brace_start, + ACTIONS(10202), 1, + sym_word, + ACTIONS(10208), 1, + sym__comment_word, + ACTIONS(10492), 1, + anon_sym_DOLLAR, + ACTIONS(4231), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10596), 2, + ACTIONS(10204), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10206), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1307), 9, + STATE(2565), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253622,46 +255649,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212490] = 18, + [214239] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - aux_sym_number_token1, - ACTIONS(5775), 1, - aux_sym_number_token2, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, - sym__brace_start, - ACTIONS(10600), 1, - sym_word, - ACTIONS(10602), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10606), 1, - anon_sym_DOLLAR, - ACTIONS(10610), 1, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(414), 1, + aux_sym_number_token1, + ACTIONS(416), 1, + aux_sym_number_token2, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(420), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, + ACTIONS(434), 1, + sym__brace_start, + ACTIONS(10494), 1, + sym_word, + ACTIONS(10496), 1, + anon_sym_DOLLAR, + ACTIONS(10502), 1, sym__comment_word, - ACTIONS(10608), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10620), 2, + ACTIONS(426), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, + ACTIONS(10498), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10500), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(862), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253671,46 +255698,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212557] = 18, + [214306] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, + ACTIONS(3265), 1, + anon_sym_DOLLAR, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(10406), 1, + ACTIONS(10504), 1, sym_word, - ACTIONS(10408), 1, + ACTIONS(10506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(10508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(10512), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(10516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(10518), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(10520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, + ACTIONS(10524), 1, sym__comment_word, - ACTIONS(10624), 1, - anon_sym_DOLLAR, - ACTIONS(10412), 2, + ACTIONS(10510), 2, sym_test_operator, sym__special_character, - ACTIONS(10424), 2, + ACTIONS(10522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, + ACTIONS(10514), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253720,46 +255747,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212624] = 18, + [214373] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + ACTIONS(6622), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(6624), 1, aux_sym_number_token2, - ACTIONS(2079), 1, + ACTIONS(6628), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + ACTIONS(6640), 1, sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(7676), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(7678), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(7686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(7688), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(10292), 1, sym_word, - ACTIONS(10628), 1, - anon_sym_DOLLAR, - ACTIONS(10634), 1, + ACTIONS(10300), 1, sym__comment_word, - ACTIONS(7924), 2, + ACTIONS(7692), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(10296), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(10298), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(6433), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253769,99 +255796,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212691] = 22, + [214440] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10644), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10648), 1, + ACTIONS(402), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(404), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4149), 1, - sym__c_terminator, - STATE(6267), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(6712), 1, - sym__for_body, - ACTIONS(10636), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, + ACTIONS(434), 1, + sym__brace_start, + ACTIONS(10494), 1, + sym_word, + ACTIONS(10502), 1, + sym__comment_word, + ACTIONS(10526), 1, + anon_sym_DOLLAR, + ACTIONS(426), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10498), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10500), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(862), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [212766] = 18, + sym_process_substitution, + [214507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(4461), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, + ACTIONS(4463), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(115), 1, + ACTIONS(4465), 1, + anon_sym_DOLLAR, + ACTIONS(4469), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(4473), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(4475), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(4479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(4481), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, + ACTIONS(4489), 1, sym__brace_start, - ACTIONS(10662), 1, + ACTIONS(10528), 1, sym_word, - ACTIONS(10664), 1, - anon_sym_DOLLAR, - ACTIONS(10670), 1, + ACTIONS(10534), 1, sym__comment_word, - ACTIONS(131), 2, + ACTIONS(4485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(10530), 2, sym_test_operator, sym__special_character, - ACTIONS(10668), 3, + ACTIONS(10532), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + STATE(2495), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253871,48 +255894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212833] = 20, - ACTIONS(71), 1, + [214574] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(2854), 1, + aux_sym_number_token1, + ACTIONS(2856), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(2860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10672), 1, + ACTIONS(2872), 1, + sym__brace_start, + ACTIONS(10270), 1, sym_word, - ACTIONS(10674), 1, - sym__special_character, - ACTIONS(10678), 1, - sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10276), 1, + sym__comment_word, + ACTIONS(10536), 1, + anon_sym_DOLLAR, + ACTIONS(2866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10676), 2, + ACTIONS(10272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10274), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4570), 9, + STATE(2294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253922,48 +255943,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212904] = 20, - ACTIONS(71), 1, + [214641] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(4867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(4871), 1, + anon_sym_DOLLAR, + ACTIONS(4875), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(4879), 1, + aux_sym_number_token1, + ACTIONS(4881), 1, + aux_sym_number_token2, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(4885), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4887), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10674), 1, - sym__special_character, - ACTIONS(10680), 1, + ACTIONS(4895), 1, + sym__brace_start, + ACTIONS(10538), 1, sym_word, - ACTIONS(10684), 1, - sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10544), 1, + sym__comment_word, + ACTIONS(4891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10682), 2, + ACTIONS(10540), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10542), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4574), 9, + STATE(2632), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253973,48 +255992,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212975] = 20, - ACTIONS(71), 1, + [214708] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10686), 1, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(10156), 1, sym_word, - ACTIONS(10688), 1, - sym__special_character, - ACTIONS(10692), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10164), 1, + sym__comment_word, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10690), 2, + ACTIONS(10160), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10162), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4459), 9, + STATE(1134), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254024,48 +256041,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213046] = 20, - ACTIONS(71), 1, + [214775] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(10554), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10556), 1, + anon_sym_LT_LT_LT, + ACTIONS(10559), 1, + sym_file_descriptor, + ACTIONS(10551), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3865), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10548), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(10546), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [214822] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5232), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5236), 1, + aux_sym_number_token1, + ACTIONS(5238), 1, + aux_sym_number_token2, + ACTIONS(5240), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5242), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5244), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5246), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10688), 1, - sym__special_character, - ACTIONS(10694), 1, + ACTIONS(5252), 1, + sym__brace_start, + ACTIONS(10562), 1, sym_word, - ACTIONS(10698), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10568), 1, + sym__comment_word, + ACTIONS(5248), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10696), 2, + ACTIONS(10564), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10566), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4461), 9, + STATE(5310), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254075,48 +256129,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213117] = 20, - ACTIONS(71), 1, + [214889] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(4511), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(4513), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(4515), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(4519), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(4523), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(4525), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(4527), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(4531), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(4533), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(4539), 1, sym__brace_start, - ACTIONS(10700), 1, + ACTIONS(10570), 1, sym_word, - ACTIONS(10704), 1, - sym_test_operator, - STATE(3449), 1, - aux_sym__literal_repeat1, - STATE(3696), 1, - sym_concatenation, - ACTIONS(7998), 2, + ACTIONS(10576), 1, + sym__comment_word, + ACTIONS(4535), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10702), 2, + ACTIONS(10572), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10574), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3356), 9, + STATE(2512), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254126,46 +256178,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213188] = 18, + [214956] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, - aux_sym_number_token1, - ACTIONS(2075), 1, - aux_sym_number_token2, - ACTIONS(2079), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, - sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(4922), 1, + anon_sym_DOLLAR, + ACTIONS(4926), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(4930), 1, + aux_sym_number_token1, + ACTIONS(4932), 1, + aux_sym_number_token2, + ACTIONS(4934), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4938), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(4940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(4946), 1, + sym__brace_start, + ACTIONS(10578), 1, sym_word, - ACTIONS(10634), 1, + ACTIONS(10584), 1, sym__comment_word, - ACTIONS(10706), 1, - anon_sym_DOLLAR, - ACTIONS(7924), 2, + ACTIONS(4942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(10580), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(10582), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(5173), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254175,46 +256227,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213255] = 18, + [215023] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7982), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(10302), 1, sym_word, - ACTIONS(10586), 1, + ACTIONS(10308), 1, sym__comment_word, - ACTIONS(10708), 1, + ACTIONS(10586), 1, anon_sym_DOLLAR, - ACTIONS(7998), 2, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(10304), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(10306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(1986), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254224,48 +256276,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213322] = 20, - ACTIONS(71), 1, + [215090] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(5312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(5320), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(5324), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(5326), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(5328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(5330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(5332), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(5334), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(5340), 1, sym__brace_start, - ACTIONS(10710), 1, + ACTIONS(10588), 1, sym_word, - ACTIONS(10714), 1, - sym_test_operator, - STATE(3432), 1, - aux_sym__literal_repeat1, - STATE(3520), 1, - sym_concatenation, - ACTIONS(7998), 2, + ACTIONS(10590), 1, + anon_sym_DOLLAR, + ACTIONS(10596), 1, + sym__comment_word, + ACTIONS(5336), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10712), 2, + ACTIONS(10592), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10594), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3351), 9, + STATE(3059), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254275,46 +256325,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213393] = 18, + [215157] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - aux_sym_number_token1, - ACTIONS(2627), 1, - aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2641), 1, - sym__brace_start, - ACTIONS(9742), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10598), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(10716), 1, - anon_sym_DOLLAR, - ACTIONS(9758), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(10600), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254324,46 +256374,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213460] = 18, + [215224] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - aux_sym_number_token1, - ACTIONS(2627), 1, - aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2641), 1, - sym__brace_start, - ACTIONS(9742), 1, + ACTIONS(5312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, + ACTIONS(5320), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(5324), 1, + aux_sym_number_token1, + ACTIONS(5326), 1, + aux_sym_number_token2, + ACTIONS(5328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(5330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5332), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(5334), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(5340), 1, + sym__brace_start, + ACTIONS(10588), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(10596), 1, sym__comment_word, - ACTIONS(10718), 1, + ACTIONS(10606), 1, anon_sym_DOLLAR, - ACTIONS(9758), 2, + ACTIONS(5336), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(10592), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(10594), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(3059), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254373,46 +256423,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213527] = 18, + [215291] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(8388), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2661), 1, + ACTIONS(8392), 1, + anon_sym_DOLLAR, + ACTIONS(8396), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(8400), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(8402), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(8404), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(8406), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(8408), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(8420), 1, sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(10608), 1, sym_word, - ACTIONS(10722), 1, - anon_sym_DOLLAR, - ACTIONS(10728), 1, + ACTIONS(10614), 1, sym__comment_word, - ACTIONS(2677), 2, + ACTIONS(8412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(10610), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(10612), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(5338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254422,46 +256472,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213594] = 18, + [215358] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 1, + ACTIONS(5733), 1, anon_sym_DOLLAR, - ACTIONS(2073), 1, + ACTIONS(5739), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(5741), 1, aux_sym_number_token2, - ACTIONS(2079), 1, + ACTIONS(5745), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + ACTIONS(5755), 1, sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(10014), 1, + sym_word, + ACTIONS(10016), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(10018), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(10024), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(10028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(10030), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(10032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, - sym_word, - ACTIONS(10634), 1, + ACTIONS(10036), 1, sym__comment_word, - ACTIONS(7924), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(10022), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(10034), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10026), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(3354), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254471,46 +256521,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213661] = 18, + [215425] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(5994), 1, + anon_sym_DOLLAR, + ACTIONS(6000), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(6002), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(6006), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, + ACTIONS(6016), 1, sym__brace_start, - ACTIONS(8160), 1, + ACTIONS(10062), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(10064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(10068), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(10072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(10074), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(10076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, + ACTIONS(10260), 1, sym_word, - ACTIONS(10120), 1, + ACTIONS(10268), 1, sym__comment_word, - ACTIONS(10730), 1, - anon_sym_DOLLAR, - ACTIONS(8176), 2, + ACTIONS(10078), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(10264), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(10266), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(5530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254520,46 +256570,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213728] = 18, + [215492] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(115), 1, + ACTIONS(406), 1, + anon_sym_DOLLAR, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, + ACTIONS(434), 1, sym__brace_start, - ACTIONS(10662), 1, + ACTIONS(10494), 1, sym_word, - ACTIONS(10670), 1, + ACTIONS(10502), 1, sym__comment_word, - ACTIONS(10732), 1, - anon_sym_DOLLAR, - ACTIONS(131), 2, + ACTIONS(426), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(10498), 2, sym_test_operator, sym__special_character, - ACTIONS(10668), 3, + ACTIONS(10500), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + STATE(862), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254569,46 +256619,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213795] = 18, + [215559] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(5312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2661), 1, + ACTIONS(5316), 1, + anon_sym_DOLLAR, + ACTIONS(5320), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(5324), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(5326), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(5328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(5330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(5332), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(5334), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(5340), 1, sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(10588), 1, sym_word, - ACTIONS(10728), 1, + ACTIONS(10596), 1, sym__comment_word, - ACTIONS(10734), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 2, + ACTIONS(5336), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(10592), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(10594), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(3059), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254618,48 +256668,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213862] = 20, - ACTIONS(71), 1, + [215626] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5607), 1, + anon_sym_DOLLAR, + ACTIONS(5611), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5615), 1, + aux_sym_number_token1, + ACTIONS(5617), 1, + aux_sym_number_token2, + ACTIONS(5619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5623), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10736), 1, + ACTIONS(5631), 1, + sym__brace_start, + ACTIONS(10616), 1, sym_word, - ACTIONS(10738), 1, - sym__special_character, - ACTIONS(10742), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10622), 1, + sym__comment_word, + ACTIONS(5627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10740), 2, + ACTIONS(10618), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10620), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4382), 9, + STATE(5464), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254669,48 +256717,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213933] = 20, - ACTIONS(71), 1, + [215693] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(5071), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5073), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5075), 1, + anon_sym_DOLLAR, + ACTIONS(5079), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5083), 1, + aux_sym_number_token1, + ACTIONS(5085), 1, + aux_sym_number_token2, + ACTIONS(5087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5089), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5091), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10738), 1, - sym__special_character, - ACTIONS(10744), 1, + ACTIONS(5099), 1, + sym__brace_start, + ACTIONS(10624), 1, sym_word, - ACTIONS(10748), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10630), 1, + sym__comment_word, + ACTIONS(5095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10746), 2, + ACTIONS(10626), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10628), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4342), 9, + STATE(2708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254720,48 +256766,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214004] = 20, - ACTIONS(71), 1, + [215760] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(5399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(5401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(5403), 1, + anon_sym_DOLLAR, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(5411), 1, + aux_sym_number_token1, + ACTIONS(5413), 1, + aux_sym_number_token2, + ACTIONS(5415), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(5417), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5419), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(5421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10750), 1, + ACTIONS(5427), 1, + sym__brace_start, + ACTIONS(10632), 1, sym_word, - ACTIONS(10752), 1, - sym__special_character, - ACTIONS(10756), 1, - sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10638), 1, + sym__comment_word, + ACTIONS(5423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10754), 2, + ACTIONS(10634), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10636), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4878), 9, + STATE(5373), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254771,48 +256815,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214075] = 20, - ACTIONS(71), 1, + [215827] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10752), 1, - sym__special_character, - ACTIONS(10758), 1, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(10640), 1, sym_word, - ACTIONS(10762), 1, - sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10642), 1, + anon_sym_DOLLAR, + ACTIONS(10648), 1, + sym__comment_word, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10760), 2, + ACTIONS(10644), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10646), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4882), 9, + STATE(1095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254822,48 +256864,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214146] = 20, - ACTIONS(71), 1, + [215894] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5611), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5615), 1, + aux_sym_number_token1, + ACTIONS(5617), 1, + aux_sym_number_token2, + ACTIONS(5619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5623), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10764), 1, + ACTIONS(5631), 1, + sym__brace_start, + ACTIONS(10616), 1, sym_word, - ACTIONS(10766), 1, - sym__special_character, - ACTIONS(10770), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10622), 1, + sym__comment_word, + ACTIONS(10650), 1, + anon_sym_DOLLAR, + ACTIONS(5627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10768), 2, + ACTIONS(10618), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10620), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4630), 9, + STATE(5464), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254873,48 +256913,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214217] = 20, - ACTIONS(71), 1, + [215961] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(1980), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(1986), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1988), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(1992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2002), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(8446), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8448), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8452), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8456), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8458), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8460), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10766), 1, - sym__special_character, - ACTIONS(10772), 1, + ACTIONS(10652), 1, sym_word, - ACTIONS(10776), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10658), 1, + sym__comment_word, + ACTIONS(8462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10774), 2, + ACTIONS(10654), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10656), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4632), 9, + STATE(1257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254924,46 +256962,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214288] = 18, + [216028] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, + ACTIONS(2979), 1, + anon_sym_DOLLAR, + ACTIONS(2985), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(2987), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(3001), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(8506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(8512), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(8518), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(8520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, + ACTIONS(10660), 1, sym_word, - ACTIONS(10232), 1, + ACTIONS(10666), 1, sym__comment_word, - ACTIONS(10778), 1, - anon_sym_DOLLAR, - ACTIONS(9644), 2, + ACTIONS(8522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10228), 2, + ACTIONS(10662), 2, sym_test_operator, sym__special_character, - ACTIONS(10230), 3, + ACTIONS(10664), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(1677), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254973,46 +257011,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214355] = 18, + [216095] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1607), 1, + aux_sym_number_token1, + ACTIONS(1609), 1, + aux_sym_number_token2, + ACTIONS(1613), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1627), 1, + sym__brace_start, + ACTIONS(8054), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(8056), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(8060), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(8064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(8066), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(8068), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(10192), 1, + ACTIONS(10668), 1, sym_word, - ACTIONS(10200), 1, + ACTIONS(10674), 1, sym__comment_word, - ACTIONS(10780), 1, - anon_sym_DOLLAR, - ACTIONS(69), 2, + ACTIONS(8070), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10196), 2, + ACTIONS(10670), 2, sym_test_operator, sym__special_character, - ACTIONS(10198), 3, + ACTIONS(10672), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(1335), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255022,46 +257060,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214422] = 18, + [216162] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(5605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8196), 1, + ACTIONS(5611), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(5615), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(5617), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(5619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(5621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(5623), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(5625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, + ACTIONS(5631), 1, sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(10616), 1, sym_word, - ACTIONS(10280), 1, + ACTIONS(10622), 1, sym__comment_word, - ACTIONS(10782), 1, + ACTIONS(10676), 1, anon_sym_DOLLAR, - ACTIONS(8212), 2, + ACTIONS(5627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(10618), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(10620), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(5464), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255071,46 +257109,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214489] = 18, + [216229] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(2297), 1, + anon_sym_DOLLAR, + ACTIONS(2303), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(2305), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(2309), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, + ACTIONS(2321), 1, sym__brace_start, - ACTIONS(8160), 1, + ACTIONS(10678), 1, + sym_word, + ACTIONS(10680), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(10682), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(10686), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(10690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(10692), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(10694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, - sym_word, - ACTIONS(10120), 1, + ACTIONS(10698), 1, sym__comment_word, - ACTIONS(10784), 1, - anon_sym_DOLLAR, - ACTIONS(8176), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(10684), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(10696), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10688), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(1463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255120,46 +257158,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214556] = 18, + [216296] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(1374), 1, + anon_sym_DOLLAR, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(9830), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(9832), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10792), 1, - anon_sym_DOLLAR, - ACTIONS(10796), 1, + ACTIONS(9836), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(9840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(9842), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(9844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(10700), 1, + sym_word, + ACTIONS(10706), 1, sym__comment_word, - ACTIONS(10794), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + ACTIONS(9846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(10702), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10704), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255169,48 +257207,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214623] = 20, - ACTIONS(71), 1, + [216363] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, - anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(2703), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(2705), 1, aux_sym_number_token2, - ACTIONS(7882), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(2709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(2719), 1, sym__brace_start, - ACTIONS(10810), 1, + ACTIONS(10708), 1, sym_word, - ACTIONS(10814), 1, + ACTIONS(10710), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10712), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10716), 1, + anon_sym_DQUOTE, + ACTIONS(10720), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10722), 1, + anon_sym_BQUOTE, + ACTIONS(10724), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10728), 1, + sym__comment_word, + ACTIONS(10714), 2, sym_test_operator, - STATE(1818), 1, - aux_sym__literal_repeat1, - STATE(2034), 1, - sym_concatenation, - ACTIONS(7890), 2, + sym__special_character, + ACTIONS(10726), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10812), 2, + ACTIONS(10718), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1357), 9, + STATE(1735), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255220,46 +257256,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214694] = 18, + [216430] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(3233), 1, + anon_sym_DOLLAR, + ACTIONS(3239), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(3241), 1, aux_sym_number_token2, - ACTIONS(3356), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, + ACTIONS(3255), 1, sym__brace_start, - ACTIONS(10436), 1, - sym_word, - ACTIONS(10438), 1, + ACTIONS(10176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(10178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(10182), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(10186), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(10188), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(10190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(10730), 1, + sym_word, + ACTIONS(10736), 1, sym__comment_word, - ACTIONS(10816), 1, - anon_sym_DOLLAR, - ACTIONS(10442), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10454), 2, + ACTIONS(10192), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(10732), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10734), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(4482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255269,48 +257305,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214761] = 20, - ACTIONS(71), 1, + [216497] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(2355), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2361), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2363), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2367), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2377), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(10738), 1, + sym_word, + ACTIONS(10740), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10746), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10750), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10752), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10818), 1, - sym_word, - ACTIONS(10820), 1, - sym__special_character, - ACTIONS(10824), 1, + ACTIONS(10758), 1, + sym__comment_word, + ACTIONS(10744), 2, sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + sym__special_character, + ACTIONS(10756), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10822), 2, + ACTIONS(10748), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4652), 9, + STATE(1444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255320,48 +257354,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214832] = 20, - ACTIONS(71), 1, + [216564] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(10422), 1, + sym_word, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10820), 1, - sym__special_character, - ACTIONS(10826), 1, - sym_word, - ACTIONS(10830), 1, + ACTIONS(10442), 1, + sym__comment_word, + ACTIONS(10760), 1, + anon_sym_DOLLAR, + ACTIONS(10428), 2, sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + sym__special_character, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10828), 2, + ACTIONS(10432), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4656), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255371,48 +257403,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214903] = 20, - ACTIONS(71), 1, + [216631] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(2772), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(2778), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2780), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2794), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(10234), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10236), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10240), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10246), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10248), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10832), 1, + ACTIONS(10762), 1, sym_word, - ACTIONS(10834), 1, - sym__special_character, - ACTIONS(10838), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10768), 1, + sym__comment_word, + ACTIONS(10250), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10836), 2, + ACTIONS(10764), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10766), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4499), 9, + STATE(4258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255422,48 +257452,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214974] = 20, - ACTIONS(71), 1, + [216698] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(658), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(660), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(662), 1, + anon_sym_DOLLAR, + ACTIONS(666), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(670), 1, + aux_sym_number_token1, + ACTIONS(672), 1, + aux_sym_number_token2, + ACTIONS(674), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(676), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(678), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(680), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10834), 1, - sym__special_character, - ACTIONS(10840), 1, + ACTIONS(690), 1, + sym__brace_start, + ACTIONS(10770), 1, sym_word, - ACTIONS(10844), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10776), 1, + sym__comment_word, + ACTIONS(682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10842), 2, + ACTIONS(10772), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10774), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4501), 9, + STATE(943), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255473,46 +257501,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215045] = 18, + [216765] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(3694), 1, + aux_sym_number_token1, + ACTIONS(3696), 1, + aux_sym_number_token2, + ACTIONS(3700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(10470), 1, + sym_word, + ACTIONS(10472), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(10474), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7874), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, - aux_sym_number_token1, - ACTIONS(7880), 1, - aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(10846), 1, - sym_word, - ACTIONS(10852), 1, + ACTIONS(10490), 1, sym__comment_word, - ACTIONS(7890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(10778), 1, + anon_sym_DOLLAR, + ACTIONS(10476), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(10488), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10480), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(2023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255522,46 +257550,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215112] = 18, + [216832] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(8082), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1047), 1, + ACTIONS(8086), 1, + anon_sym_DOLLAR, + ACTIONS(8090), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(8094), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(8096), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(8098), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(8100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(8102), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(8114), 1, sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(10780), 1, sym_word, - ACTIONS(10856), 1, - anon_sym_DOLLAR, - ACTIONS(10862), 1, + ACTIONS(10786), 1, sym__comment_word, - ACTIONS(1063), 2, + ACTIONS(8106), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(10782), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(10784), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(4248), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255571,46 +257599,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215179] = 18, + [216899] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 1, - anon_sym_DOLLAR, - ACTIONS(3318), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3324), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3336), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10292), 1, + ACTIONS(10422), 1, sym_word, - ACTIONS(10294), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10302), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(10300), 2, + ACTIONS(10788), 1, + anon_sym_DOLLAR, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(10312), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 3, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255620,46 +257648,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215246] = 18, + [216966] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(5071), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(5073), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9904), 1, + ACTIONS(5079), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(5083), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(5085), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(5087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(5089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(5091), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(5093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(5099), 1, sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(10624), 1, sym_word, - ACTIONS(10866), 1, - anon_sym_DOLLAR, - ACTIONS(10872), 1, + ACTIONS(10630), 1, sym__comment_word, - ACTIONS(9920), 2, + ACTIONS(10790), 1, + anon_sym_DOLLAR, + ACTIONS(5095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(10626), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(10628), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(2708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255669,48 +257697,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215313] = 20, - ACTIONS(71), 1, + [217033] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2417), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(8120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8126), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8132), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8134), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10874), 1, + ACTIONS(10792), 1, sym_word, - ACTIONS(10876), 1, - sym__special_character, - ACTIONS(10880), 1, - sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10798), 1, + sym__comment_word, + ACTIONS(8136), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10878), 2, + ACTIONS(10794), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10796), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5239), 9, + STATE(1379), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255720,48 +257746,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215384] = 20, - ACTIONS(71), 1, + [217100] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(2854), 1, + aux_sym_number_token1, + ACTIONS(2856), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(2860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10876), 1, - sym__special_character, - ACTIONS(10882), 1, + ACTIONS(2872), 1, + sym__brace_start, + ACTIONS(10270), 1, sym_word, - ACTIONS(10886), 1, - sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10276), 1, + sym__comment_word, + ACTIONS(10800), 1, + anon_sym_DOLLAR, + ACTIONS(2866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10884), 2, + ACTIONS(10272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10274), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5243), 9, + STATE(2294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255771,48 +257795,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215455] = 20, - ACTIONS(71), 1, + [217167] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(5071), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5073), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5079), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5083), 1, + aux_sym_number_token1, + ACTIONS(5085), 1, + aux_sym_number_token2, + ACTIONS(5087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5089), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5091), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10888), 1, + ACTIONS(5099), 1, + sym__brace_start, + ACTIONS(10624), 1, sym_word, - ACTIONS(10890), 1, - sym__special_character, - ACTIONS(10894), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10630), 1, + sym__comment_word, + ACTIONS(10802), 1, + anon_sym_DOLLAR, + ACTIONS(5095), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10892), 2, + ACTIONS(10626), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10628), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5112), 9, + STATE(2708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255822,48 +257844,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215526] = 20, - ACTIONS(71), 1, + [217234] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(1883), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1885), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(1889), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(1903), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8150), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8154), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8158), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8160), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10890), 1, - sym__special_character, - ACTIONS(10896), 1, + ACTIONS(10112), 1, sym_word, - ACTIONS(10900), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10120), 1, + sym__comment_word, + ACTIONS(8164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10898), 2, + ACTIONS(10116), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10118), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5067), 9, + STATE(1512), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255873,48 +257893,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215597] = 20, - ACTIONS(71), 1, + [217301] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3009), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3015), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3017), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3021), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3033), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10804), 1, + sym_word, + ACTIONS(10806), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10808), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10812), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10818), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10820), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10070), 1, - sym__special_character, - ACTIONS(10902), 1, - sym_word, - ACTIONS(10906), 1, + ACTIONS(10824), 1, + sym__comment_word, + ACTIONS(10810), 2, sym_test_operator, - STATE(1463), 1, - aux_sym__literal_repeat1, - STATE(1628), 1, - sym_concatenation, - ACTIONS(9990), 2, + sym__special_character, + ACTIONS(10822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10904), 2, + ACTIONS(10814), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1106), 9, + STATE(1533), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255924,46 +257942,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215668] = 18, + [217368] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(9778), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(9780), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1047), 1, + ACTIONS(9784), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(9788), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(9790), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(9792), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(10826), 1, sym_word, - ACTIONS(10862), 1, + ACTIONS(10832), 1, sym__comment_word, - ACTIONS(10908), 1, - anon_sym_DOLLAR, - ACTIONS(1063), 2, + ACTIONS(9794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(10828), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(10830), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(1041), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255973,48 +257991,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215735] = 20, - ACTIONS(71), 1, + [217435] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3295), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3301), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3303), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3307), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3317), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10834), 1, + sym_word, + ACTIONS(10836), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10838), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10842), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10846), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10848), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10070), 1, - sym__special_character, - ACTIONS(10910), 1, - sym_word, - ACTIONS(10914), 1, + ACTIONS(10854), 1, + sym__comment_word, + ACTIONS(10840), 2, sym_test_operator, - STATE(1387), 1, - aux_sym__literal_repeat1, - STATE(1635), 1, - sym_concatenation, - ACTIONS(9990), 2, + sym__special_character, + ACTIONS(10852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10912), 2, + ACTIONS(10844), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1108), 9, + STATE(1907), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256024,46 +258040,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215806] = 18, + [217502] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(3694), 1, + aux_sym_number_token1, + ACTIONS(3696), 1, + aux_sym_number_token2, + ACTIONS(3700), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3710), 1, + sym__brace_start, + ACTIONS(10470), 1, + sym_word, + ACTIONS(10472), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(10474), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8196), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, - aux_sym_number_token1, - ACTIONS(8202), 1, - aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, - sym__brace_start, - ACTIONS(10274), 1, - sym_word, - ACTIONS(10280), 1, + ACTIONS(10490), 1, sym__comment_word, - ACTIONS(10916), 1, + ACTIONS(10856), 1, anon_sym_DOLLAR, - ACTIONS(8212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(10476), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(10488), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10480), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(2023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256073,46 +258089,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215873] = 18, + [217569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9904), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, - anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, sym_word, - ACTIONS(10872), 1, - sym__comment_word, - ACTIONS(10918), 1, + ACTIONS(10860), 1, anon_sym_DOLLAR, - ACTIONS(9920), 2, + ACTIONS(10866), 1, + sym__comment_word, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(10862), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(10864), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(2288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256122,46 +258138,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215940] = 18, + [217636] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + ACTIONS(3924), 1, anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(3930), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(3932), 1, aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(3936), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(3946), 1, + sym__brace_start, + ACTIONS(10312), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10314), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10318), 1, + anon_sym_DQUOTE, + ACTIONS(10322), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10324), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(10326), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(10868), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(10874), 1, sym__comment_word, - ACTIONS(332), 2, + ACTIONS(10328), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(10870), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(10872), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(4576), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256171,46 +258187,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216007] = 18, + [217703] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, + ACTIONS(2806), 1, + anon_sym_DOLLAR, + ACTIONS(2812), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(2814), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(2818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(2828), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(10876), 1, + sym_word, + ACTIONS(10878), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(10880), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(10884), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(10888), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(10890), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(10892), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, - sym_word, - ACTIONS(10232), 1, + ACTIONS(10896), 1, sym__comment_word, - ACTIONS(10928), 1, - anon_sym_DOLLAR, - ACTIONS(9644), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10228), 2, + ACTIONS(10882), 2, sym_test_operator, sym__special_character, - ACTIONS(10230), 3, + ACTIONS(10894), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10886), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(1671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256220,127 +258236,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - STATE(4815), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [216117] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(10934), 1, - sym_file_descriptor, - STATE(4815), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4169), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4171), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2503), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [216174] = 18, - ACTIONS(3), 1, + [217770] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(8308), 1, + sym__special_character, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, + ACTIONS(10898), 1, sym_word, - ACTIONS(10942), 1, - sym__comment_word, - ACTIONS(9664), 2, + ACTIONS(10902), 1, + sym_test_operator, + STATE(1910), 1, + aux_sym__literal_repeat1, + STATE(2190), 1, + sym_concatenation, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10940), 3, - sym__bare_dollar, + ACTIONS(10900), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(1414), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256350,48 +258287,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216241] = 20, - ACTIONS(71), 1, + [217841] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(3414), 1, anon_sym_DOLLAR, - ACTIONS(5224), 1, - anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(3420), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(3422), 1, aux_sym_number_token2, - ACTIONS(5232), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(3426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(3436), 1, + sym__brace_start, + ACTIONS(10396), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10398), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10402), 1, + anon_sym_DQUOTE, + ACTIONS(10406), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10408), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(10410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, - sym__brace_start, - ACTIONS(10944), 1, + ACTIONS(10904), 1, sym_word, - ACTIONS(10946), 1, - sym__special_character, - ACTIONS(10950), 1, - sym_test_operator, - STATE(5263), 1, - aux_sym__literal_repeat1, - STATE(5502), 1, - sym_concatenation, - ACTIONS(5240), 2, + ACTIONS(10910), 1, + sym__comment_word, + ACTIONS(10412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10948), 2, + ACTIONS(10906), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10908), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5118), 9, + STATE(4402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256401,48 +258336,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216312] = 20, - ACTIONS(71), 1, + [217908] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(8214), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(8216), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(8218), 1, anon_sym_DOLLAR, - ACTIONS(5224), 1, + ACTIONS(8222), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(8226), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(8228), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(8230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(8232), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(8234), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(8246), 1, sym__brace_start, - ACTIONS(10946), 1, - sym__special_character, - ACTIONS(10952), 1, + ACTIONS(10912), 1, sym_word, - ACTIONS(10956), 1, - sym_test_operator, - STATE(5276), 1, - aux_sym__literal_repeat1, - STATE(5505), 1, - sym_concatenation, - ACTIONS(5240), 2, + ACTIONS(10918), 1, + sym__comment_word, + ACTIONS(8238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10954), 2, + ACTIONS(10914), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10916), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5122), 9, + STATE(4505), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256452,46 +258385,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216383] = 18, - ACTIONS(3), 1, + [217975] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2622), 1, + anon_sym_DOLLAR, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(10234), 1, - sym_word, - ACTIONS(10236), 1, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(8308), 1, + sym__special_character, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(10958), 1, - anon_sym_DOLLAR, - ACTIONS(10240), 2, + ACTIONS(10920), 1, + sym_word, + ACTIONS(10924), 1, sym_test_operator, - sym__special_character, - ACTIONS(10252), 2, + STATE(1830), 1, + aux_sym__literal_repeat1, + STATE(2209), 1, + sym_concatenation, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, - sym__bare_dollar, + ACTIONS(10922), 2, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(1384), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256501,46 +258436,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216450] = 18, + [218046] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, - aux_sym_number_token1, - ACTIONS(2936), 1, - aux_sym_number_token2, - ACTIONS(2940), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, - sym__brace_start, - ACTIONS(10234), 1, - sym_word, - ACTIONS(10236), 1, + ACTIONS(5399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(5401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(5411), 1, + aux_sym_number_token1, + ACTIONS(5413), 1, + aux_sym_number_token2, + ACTIONS(5415), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(5417), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5419), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(5421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, + ACTIONS(5427), 1, + sym__brace_start, + ACTIONS(10632), 1, + sym_word, + ACTIONS(10638), 1, sym__comment_word, - ACTIONS(10960), 1, + ACTIONS(10926), 1, anon_sym_DOLLAR, - ACTIONS(10240), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10252), 2, + ACTIONS(5423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, + ACTIONS(10634), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10636), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(5373), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256550,46 +258485,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216517] = 18, + [218113] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10316), 1, - sym_word, - ACTIONS(10318), 1, + ACTIONS(5399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(5401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(5411), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(5413), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(5415), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(5417), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(5419), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(5421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, + ACTIONS(5427), 1, sym__brace_start, - ACTIONS(10962), 1, + ACTIONS(10632), 1, + sym_word, + ACTIONS(10638), 1, + sym__comment_word, + ACTIONS(10928), 1, anon_sym_DOLLAR, - ACTIONS(10324), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10342), 2, + ACTIONS(5423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, + ACTIONS(10634), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10636), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(5373), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256599,46 +258534,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216584] = 18, + [218180] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, - aux_sym_number_token1, - ACTIONS(3352), 1, - aux_sym_number_token2, - ACTIONS(3356), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(10436), 1, - sym_word, - ACTIONS(10438), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(4209), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(4215), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(4219), 1, + aux_sym_number_token1, + ACTIONS(4221), 1, + aux_sym_number_token2, + ACTIONS(4223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(4225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4227), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(4239), 1, + sym__brace_start, + ACTIONS(10202), 1, + sym_word, + ACTIONS(10208), 1, sym__comment_word, - ACTIONS(10964), 1, + ACTIONS(10930), 1, anon_sym_DOLLAR, - ACTIONS(10442), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10454), 2, + ACTIONS(4231), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(10204), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10206), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(2565), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256648,48 +258583,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216651] = 20, - ACTIONS(71), 1, + [218247] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(3015), 1, + aux_sym_number_token1, + ACTIONS(3017), 1, + aux_sym_number_token2, + ACTIONS(3021), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3033), 1, + sym__brace_start, + ACTIONS(10804), 1, + sym_word, + ACTIONS(10806), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(10808), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(10812), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(10816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(10818), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(10820), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10962), 1, + ACTIONS(10824), 1, + sym__comment_word, + ACTIONS(10932), 1, anon_sym_DOLLAR, - ACTIONS(10966), 1, - sym_word, - ACTIONS(10968), 1, - sym__special_character, - ACTIONS(10972), 1, + ACTIONS(10810), 2, sym_test_operator, - STATE(6136), 1, - aux_sym__literal_repeat1, - STATE(6301), 1, - sym_concatenation, - ACTIONS(10342), 2, + sym__special_character, + ACTIONS(10822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10970), 2, + ACTIONS(10814), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6108), 9, + STATE(1533), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256699,46 +258632,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216722] = 18, + [218314] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(4461), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(4463), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(4469), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(4473), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(4475), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(4479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(4481), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(4489), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(10528), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(10534), 1, sym__comment_word, - ACTIONS(10974), 1, + ACTIONS(10934), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(4485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(10530), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(10532), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(2495), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256748,46 +258681,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216789] = 18, + [218381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(1986), 1, + aux_sym_number_token1, + ACTIONS(1988), 1, + aux_sym_number_token2, + ACTIONS(1992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2002), 1, + sym__brace_start, + ACTIONS(8446), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(8448), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(8452), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(8456), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(8458), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(8460), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(10652), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(10658), 1, sym__comment_word, - ACTIONS(10976), 1, + ACTIONS(10936), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(8462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(10654), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(10656), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256797,46 +258730,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216856] = 18, + [218448] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(4461), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(4463), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(4469), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(4473), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(4475), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(4479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(4481), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(4489), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(10528), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(10534), 1, sym__comment_word, - ACTIONS(10978), 1, + ACTIONS(10938), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(4485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(10530), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(10532), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(2495), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256846,46 +258779,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216923] = 18, + [218515] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(1986), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(1988), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(1992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(2002), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8446), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8448), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8452), 1, + anon_sym_DQUOTE, + ACTIONS(8456), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8458), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8460), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10652), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(10658), 1, sym__comment_word, - ACTIONS(393), 2, + ACTIONS(10940), 1, + anon_sym_DOLLAR, + ACTIONS(8462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(10654), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(10656), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256895,46 +258828,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216990] = 18, + [218582] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(8765), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(8767), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(8771), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(8781), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(10452), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(10458), 1, sym__comment_word, - ACTIONS(10980), 1, + ACTIONS(10942), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(10454), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(10456), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(5250), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256944,48 +258877,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217057] = 20, - ACTIONS(71), 1, + [218649] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(3015), 1, + aux_sym_number_token1, + ACTIONS(3017), 1, + aux_sym_number_token2, + ACTIONS(3021), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3033), 1, + sym__brace_start, + ACTIONS(10804), 1, + sym_word, + ACTIONS(10806), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(10808), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, - anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, + ACTIONS(10812), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, - aux_sym_number_token1, - ACTIONS(2667), 1, - aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(10816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(10818), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(10820), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10982), 1, - sym_word, - ACTIONS(10986), 1, + ACTIONS(10824), 1, + sym__comment_word, + ACTIONS(10944), 1, + anon_sym_DOLLAR, + ACTIONS(10810), 2, sym_test_operator, - STATE(2323), 1, - aux_sym__literal_repeat1, - STATE(2497), 1, - sym_concatenation, - ACTIONS(2677), 2, + sym__special_character, + ACTIONS(10822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10984), 2, + ACTIONS(10814), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2114), 9, + STATE(1533), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256995,46 +258926,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217128] = 18, + [218716] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(8753), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(8755), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(8761), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(8765), 1, + aux_sym_number_token1, + ACTIONS(8767), 1, + aux_sym_number_token2, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8771), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(8775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8781), 1, + sym__brace_start, + ACTIONS(10452), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(10458), 1, sym__comment_word, - ACTIONS(10988), 1, + ACTIONS(10946), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(8777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10454), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10456), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(5250), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257044,48 +258975,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217195] = 20, - ACTIONS(71), 1, + [218783] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(10948), 1, + sym_word, + ACTIONS(10950), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(10952), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(10954), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, + ACTIONS(10958), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(10962), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(10964), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(10966), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(10968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(10970), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(10972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(10976), 1, + sym__comment_word, + ACTIONS(10978), 1, sym__brace_start, - ACTIONS(10990), 1, - sym_word, - ACTIONS(10994), 1, + ACTIONS(10956), 2, sym_test_operator, - STATE(2329), 1, - aux_sym__literal_repeat1, - STATE(2509), 1, - sym_concatenation, - ACTIONS(2677), 2, + sym__special_character, + ACTIONS(10974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10992), 2, + ACTIONS(10960), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2117), 9, + STATE(6113), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257095,46 +259024,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217266] = 18, + [218850] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(1627), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(8056), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(8060), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(8064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8066), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(8068), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10668), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(10674), 1, sym__comment_word, - ACTIONS(10996), 1, + ACTIONS(10980), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(8070), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10670), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10672), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(1335), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257144,46 +259073,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217333] = 18, - ACTIONS(3), 1, + [218917] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, + ACTIONS(10982), 1, sym_word, - ACTIONS(11000), 1, - anon_sym_DOLLAR, - ACTIONS(11006), 1, - sym__comment_word, - ACTIONS(9722), 2, + ACTIONS(10984), 1, + sym__special_character, + ACTIONS(10988), 1, + sym_test_operator, + STATE(4432), 1, + aux_sym__literal_repeat1, + STATE(4833), 1, + sym_concatenation, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11002), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11004), 3, - sym__bare_dollar, + ACTIONS(10986), 2, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(4639), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257193,46 +259124,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217400] = 18, - ACTIONS(3), 1, + [218988] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(10984), 1, + sym__special_character, + ACTIONS(10990), 1, sym_word, - ACTIONS(11010), 1, - anon_sym_DOLLAR, - ACTIONS(11016), 1, - sym__comment_word, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(10994), 1, sym_test_operator, - sym__special_character, - ACTIONS(11014), 3, - sym__bare_dollar, + STATE(4420), 1, + aux_sym__literal_repeat1, + STATE(4696), 1, + sym_concatenation, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10992), 2, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(4643), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257242,46 +259175,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217467] = 18, - ACTIONS(3), 1, + [219059] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, + aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(10996), 1, sym_word, - ACTIONS(11016), 1, - sym__comment_word, - ACTIONS(11018), 1, - anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(10998), 1, + sym__special_character, + ACTIONS(11002), 1, + sym_test_operator, + STATE(4282), 1, + aux_sym__literal_repeat1, + STATE(4603), 1, + sym_concatenation, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11014), 3, - sym__bare_dollar, + ACTIONS(11000), 2, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(4489), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257291,46 +259226,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217534] = 18, - ACTIONS(3), 1, + [219130] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(11020), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, + ACTIONS(10998), 1, sym__special_character, - ACTIONS(10806), 2, + ACTIONS(11004), 1, + sym_word, + ACTIONS(11008), 1, + sym_test_operator, + STATE(4226), 1, + aux_sym__literal_repeat1, + STATE(4548), 1, + sym_concatenation, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(11006), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4491), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257340,46 +259277,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217601] = 18, + [219201] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, + ACTIONS(1627), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(8056), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(8060), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(8064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(8066), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(8068), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, + ACTIONS(10668), 1, sym_word, - ACTIONS(11006), 1, + ACTIONS(10674), 1, sym__comment_word, - ACTIONS(11022), 1, + ACTIONS(11010), 1, anon_sym_DOLLAR, - ACTIONS(9722), 2, + ACTIONS(8070), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11002), 2, + ACTIONS(10670), 2, sym_test_operator, sym__special_character, - ACTIONS(11004), 3, + ACTIONS(10672), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(1335), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257389,46 +259326,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217668] = 18, + [219268] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(4802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(4804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(4810), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(4814), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(4816), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(4818), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(4820), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(4822), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(4824), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(4832), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(10224), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(10230), 1, sym__comment_word, - ACTIONS(8324), 2, + ACTIONS(11012), 1, + anon_sym_DOLLAR, + ACTIONS(4826), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(10226), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(10228), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(2769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257438,46 +259375,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217735] = 18, + [219335] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(3207), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(3209), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(3213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(3225), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(11014), 1, + sym_word, + ACTIONS(11016), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(11018), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(11020), 1, + anon_sym_DOLLAR, + ACTIONS(11024), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(11028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(11030), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(11032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, - sym_word, - ACTIONS(10112), 1, + ACTIONS(11036), 1, sym__comment_word, - ACTIONS(11024), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(11022), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(11034), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11026), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257487,48 +259424,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217802] = 20, - ACTIONS(71), 1, + [219402] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(3885), 1, + aux_sym_number_token1, + ACTIONS(3887), 1, + aux_sym_number_token2, + ACTIONS(3891), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3901), 1, + sym__brace_start, + ACTIONS(10338), 1, + sym_word, + ACTIONS(10340), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(10342), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(10346), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, - aux_sym_number_token1, - ACTIONS(4849), 1, - aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(10350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(10352), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(10354), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11026), 1, - sym_word, - ACTIONS(11028), 1, - sym__special_character, - ACTIONS(11032), 1, + ACTIONS(10358), 1, + sym__comment_word, + ACTIONS(11038), 1, + anon_sym_DOLLAR, + ACTIONS(10344), 2, sym_test_operator, - STATE(5134), 1, - aux_sym__literal_repeat1, - STATE(5407), 1, - sym_concatenation, - ACTIONS(4859), 2, + sym__special_character, + ACTIONS(10356), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11030), 2, + ACTIONS(10348), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5045), 9, + STATE(1991), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257538,46 +259473,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217873] = 18, + [219469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, - anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(10866), 1, sym__comment_word, - ACTIONS(11034), 1, + ACTIONS(11040), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(10862), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(10864), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(2288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257587,46 +259522,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217940] = 18, + [219536] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(4802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(4804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7874), 1, + ACTIONS(4810), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(4814), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(4816), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(4818), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(4820), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(4822), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(4824), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(4832), 1, sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(10224), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(10230), 1, sym__comment_word, - ACTIONS(11036), 1, + ACTIONS(11042), 1, anon_sym_DOLLAR, - ACTIONS(7890), 2, + ACTIONS(4826), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(10226), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(10228), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(2769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257636,48 +259571,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218007] = 20, - ACTIONS(71), 1, + [219603] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(3885), 1, + aux_sym_number_token1, + ACTIONS(3887), 1, + aux_sym_number_token2, + ACTIONS(3891), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3901), 1, + sym__brace_start, + ACTIONS(10338), 1, + sym_word, + ACTIONS(10340), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(10342), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(10346), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, - aux_sym_number_token1, - ACTIONS(4849), 1, - aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(10350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(10352), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(10354), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11028), 1, - sym__special_character, - ACTIONS(11038), 1, - sym_word, - ACTIONS(11042), 1, + ACTIONS(10358), 1, + sym__comment_word, + ACTIONS(11044), 1, + anon_sym_DOLLAR, + ACTIONS(10344), 2, sym_test_operator, - STATE(5137), 1, - aux_sym__literal_repeat1, - STATE(5415), 1, - sym_concatenation, - ACTIONS(4859), 2, + sym__special_character, + ACTIONS(10356), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11040), 2, + ACTIONS(10348), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5048), 9, + STATE(1991), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257687,46 +259620,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218078] = 18, + [219670] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3207), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3209), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3225), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(11014), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(11016), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(11018), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(11024), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(11028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(11030), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(11032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(11036), 1, sym__comment_word, - ACTIONS(11044), 1, + ACTIONS(11046), 1, anon_sym_DOLLAR, - ACTIONS(10794), 2, + ACTIONS(11022), 2, sym_test_operator, sym__special_character, - ACTIONS(10806), 2, + ACTIONS(11034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(11026), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257736,46 +259669,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218145] = 18, + [219737] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(9856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(9858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(10460), 1, + sym_word, + ACTIONS(10466), 1, sym__comment_word, - ACTIONS(11046), 1, + ACTIONS(11048), 1, anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + ACTIONS(9872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(10462), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10464), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257785,46 +259718,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218212] = 18, + [219804] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3130), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3132), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3148), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(10460), 1, sym_word, + ACTIONS(10466), 1, + sym__comment_word, ACTIONS(11050), 1, anon_sym_DOLLAR, - ACTIONS(11056), 1, - sym__comment_word, - ACTIONS(9990), 2, + ACTIONS(9872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(10462), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(10464), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257834,46 +259767,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218279] = 18, + [219871] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(2303), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2305), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(2309), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(2321), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10678), 1, + sym_word, + ACTIONS(10680), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10682), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10686), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10692), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, - sym_word, - ACTIONS(11056), 1, + ACTIONS(10698), 1, sym__comment_word, - ACTIONS(11058), 1, + ACTIONS(11052), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(10684), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(10696), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10688), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(1463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257883,46 +259816,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218346] = 18, + [219938] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(2039), 1, - aux_sym_number_token1, - ACTIONS(2041), 1, - aux_sym_number_token2, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(199), 1, + aux_sym_number_token1, + ACTIONS(201), 1, + aux_sym_number_token2, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(219), 1, + sym__brace_start, + ACTIONS(11054), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(11056), 1, + anon_sym_DOLLAR, + ACTIONS(11062), 1, sym__comment_word, - ACTIONS(8028), 2, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(11058), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(11060), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257932,46 +259865,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218413] = 18, + [220005] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(2303), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(2305), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(2309), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(2321), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(10678), 1, + sym_word, + ACTIONS(10680), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(10682), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(10686), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(10690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(10692), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, + ACTIONS(10694), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10698), 1, sym__comment_word, - ACTIONS(11060), 1, + ACTIONS(11064), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10684), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10696), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10688), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(1463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257981,48 +259914,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218480] = 20, + [220072] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7828), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(4083), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, - anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(7844), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(10374), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10376), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10380), 1, + anon_sym_DQUOTE, + ACTIONS(10384), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(11062), 1, - sym_word, ACTIONS(11066), 1, + sym_word, + ACTIONS(11068), 1, + sym__special_character, + ACTIONS(11072), 1, sym_test_operator, - STATE(2632), 1, + STATE(4432), 1, aux_sym__literal_repeat1, - STATE(2871), 1, + STATE(4833), 1, sym_concatenation, - ACTIONS(7852), 2, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11064), 2, + ACTIONS(11070), 2, sym_raw_string, sym_ansi_c_string, - STATE(2391), 9, + STATE(4890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258032,46 +259965,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218551] = 18, - ACTIONS(3), 1, + [220143] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, - sym__comment_word, + ACTIONS(10388), 1, + anon_sym_DOLLAR_BQUOTE, ACTIONS(11068), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, + sym__special_character, + ACTIONS(11074), 1, + sym_word, + ACTIONS(11078), 1, + sym_test_operator, + STATE(4420), 1, + aux_sym__literal_repeat1, + STATE(4696), 1, + sym_concatenation, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10484), 3, - sym__bare_dollar, + ACTIONS(11076), 2, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4894), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258081,48 +260016,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218618] = 20, + [220214] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7828), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, - anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(7844), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(10424), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10426), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10430), 1, + anon_sym_DQUOTE, + ACTIONS(10434), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(11070), 1, + ACTIONS(11080), 1, sym_word, - ACTIONS(11074), 1, + ACTIONS(11082), 1, + sym__special_character, + ACTIONS(11086), 1, sym_test_operator, - STATE(2633), 1, + STATE(4282), 1, aux_sym__literal_repeat1, - STATE(2874), 1, + STATE(4603), 1, sym_concatenation, - ACTIONS(7852), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11072), 2, + ACTIONS(11084), 2, sym_raw_string, sym_ansi_c_string, - STATE(2423), 9, + STATE(4668), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258132,46 +260067,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218689] = 18, - ACTIONS(3), 1, + [220285] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(11076), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, + ACTIONS(11082), 1, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(11088), 1, + sym_word, + ACTIONS(11092), 1, + sym_test_operator, + STATE(4226), 1, + aux_sym__literal_repeat1, + STATE(4548), 1, + sym_concatenation, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(11090), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258181,46 +260118,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218756] = 18, + [220356] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(4867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5099), 1, + ACTIONS(4875), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(4879), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(4881), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(4887), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(4895), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(10538), 1, sym_word, - ACTIONS(10092), 1, + ACTIONS(10544), 1, sym__comment_word, - ACTIONS(11078), 1, + ACTIONS(11094), 1, anon_sym_DOLLAR, - ACTIONS(5115), 2, + ACTIONS(4891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, + ACTIONS(10540), 2, sym_test_operator, sym__special_character, - ACTIONS(10090), 3, + ACTIONS(10542), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(2632), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258230,46 +260167,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218823] = 18, + [220423] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(2985), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2987), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3001), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(8506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8512), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8518), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(10660), 1, + sym_word, + ACTIONS(10666), 1, sym__comment_word, - ACTIONS(11080), 1, + ACTIONS(11096), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(8522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(10662), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10664), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(1677), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258279,46 +260216,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218890] = 18, + [220490] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(10640), 1, + sym_word, + ACTIONS(10648), 1, sym__comment_word, - ACTIONS(11082), 1, + ACTIONS(11098), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10644), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10646), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258328,46 +260265,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218957] = 18, + [220557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(4867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(4869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(4875), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(4879), 1, + aux_sym_number_token1, + ACTIONS(4881), 1, + aux_sym_number_token2, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(4885), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4887), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(4895), 1, + sym__brace_start, + ACTIONS(10538), 1, + sym_word, + ACTIONS(10544), 1, sym__comment_word, - ACTIONS(11084), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(4891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(10540), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10542), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(2632), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258377,46 +260314,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219024] = 18, - ACTIONS(3), 1, + [220624] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3085), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(2985), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(2987), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3001), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(8506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(8510), 1, + sym__special_character, + ACTIONS(8512), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(8518), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(8520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(10794), 2, + ACTIONS(11102), 1, + sym_word, + ACTIONS(11106), 1, sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + STATE(1933), 1, + aux_sym__literal_repeat1, + STATE(2240), 1, + sym_concatenation, + ACTIONS(8522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(11104), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(1476), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258426,46 +260365,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219091] = 18, + [220695] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(10640), 1, + sym_word, + ACTIONS(10648), 1, sym__comment_word, - ACTIONS(11086), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10644), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10646), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258475,46 +260414,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219158] = 18, - ACTIONS(3), 1, + [220762] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(11088), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, + ACTIONS(11108), 1, + sym_word, + ACTIONS(11110), 1, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(11114), 1, + sym_test_operator, + STATE(4432), 1, + aux_sym__literal_repeat1, + STATE(4833), 1, + sym_concatenation, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(11112), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4678), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258524,95 +260465,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219225] = 18, - ACTIONS(3), 1, + [220833] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, - anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(8386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, - anon_sym_BQUOTE, - ACTIONS(8392), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(10460), 1, - sym_word, - ACTIONS(10466), 1, - sym__comment_word, - ACTIONS(11090), 1, - anon_sym_DOLLAR, - ACTIONS(8394), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10462), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10464), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4362), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [219292] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8370), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, - aux_sym_number_token1, - ACTIONS(8384), 1, - aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, - sym__brace_start, - ACTIONS(10460), 1, + ACTIONS(11110), 1, + sym__special_character, + ACTIONS(11116), 1, sym_word, - ACTIONS(10466), 1, - sym__comment_word, - ACTIONS(11092), 1, - anon_sym_DOLLAR, - ACTIONS(8394), 2, + ACTIONS(11120), 1, + sym_test_operator, + STATE(4420), 1, + aux_sym__literal_repeat1, + STATE(4696), 1, + sym_concatenation, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10462), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10464), 3, - sym__bare_dollar, + ACTIONS(11118), 2, sym_raw_string, sym_ansi_c_string, - STATE(4362), 9, + STATE(4682), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258622,48 +260516,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219359] = 20, + [220904] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5767), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(5773), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10602), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11094), 1, + ACTIONS(11122), 1, sym_word, - ACTIONS(11096), 1, + ACTIONS(11124), 1, sym__special_character, - ACTIONS(11100), 1, + ACTIONS(11128), 1, sym_test_operator, - STATE(5596), 1, + STATE(4282), 1, aux_sym__literal_repeat1, - STATE(5614), 1, + STATE(4603), 1, sym_concatenation, - ACTIONS(10620), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11098), 2, + ACTIONS(11126), 2, sym_raw_string, sym_ansi_c_string, - STATE(5525), 9, + STATE(4526), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258673,96 +260567,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219430] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7822), 1, - anon_sym_AT, - ACTIONS(8880), 1, - anon_sym_LBRACK, - STATE(7037), 1, - sym__expansion_max_length, - STATE(7105), 1, - sym__expansion_operator, - STATE(7315), 1, - sym__expansion_expression, - STATE(7344), 1, - sym__expansion_regex, - STATE(7405), 1, - sym__expansion_regex_replacement, - STATE(7507), 1, - sym__expansion_regex_removal, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [219495] = 20, + [220975] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5767), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR, - ACTIONS(5773), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10602), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11096), 1, + ACTIONS(11124), 1, sym__special_character, - ACTIONS(11102), 1, + ACTIONS(11130), 1, sym_word, - ACTIONS(11106), 1, + ACTIONS(11134), 1, sym_test_operator, - STATE(5600), 1, + STATE(4226), 1, aux_sym__literal_repeat1, - STATE(5611), 1, + STATE(4548), 1, sym_concatenation, - ACTIONS(10620), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11104), 2, + ACTIONS(11132), 2, sym_raw_string, sym_ansi_c_string, - STATE(5513), 9, + STATE(4528), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258772,46 +260618,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219566] = 18, + [221046] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(9778), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9780), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9784), 1, + anon_sym_DQUOTE, + ACTIONS(9788), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9790), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(9792), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10826), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(10832), 1, sym__comment_word, - ACTIONS(11108), 1, + ACTIONS(11136), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(9794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(10828), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(10830), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1041), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258821,46 +260667,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219633] = 18, + [221113] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(10640), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(10648), 1, sym__comment_word, - ACTIONS(11110), 1, + ACTIONS(11138), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(10644), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(10646), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258870,46 +260716,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219700] = 18, + [221180] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(10192), 1, + ACTIONS(10640), 1, sym_word, - ACTIONS(10200), 1, + ACTIONS(10648), 1, sym__comment_word, - ACTIONS(69), 2, + ACTIONS(11140), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10196), 2, + ACTIONS(10644), 2, sym_test_operator, sym__special_character, - ACTIONS(10198), 3, + ACTIONS(10646), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(1095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258919,46 +260765,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219767] = 18, + [221247] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(10866), 1, sym__comment_word, - ACTIONS(11112), 1, + ACTIONS(11142), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(10862), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(10864), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258968,46 +260814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219834] = 18, + [221314] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, - anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(10866), 1, sym__comment_word, - ACTIONS(9990), 2, + ACTIONS(11144), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(10862), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(10864), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(2288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259017,46 +260863,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219901] = 18, + [221381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9768), 1, sym__comment_word, - ACTIONS(11114), 1, + ACTIONS(11146), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9772), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9770), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259066,48 +260912,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219968] = 20, - ACTIONS(71), 1, + [221448] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, - anon_sym_DOLLAR, - ACTIONS(5325), 1, - sym__special_character, - ACTIONS(5327), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, - anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(11116), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(11120), 1, - sym_test_operator, - STATE(5434), 1, - aux_sym__literal_repeat1, - STATE(5543), 1, - sym_concatenation, - ACTIONS(5343), 2, + ACTIONS(9768), 1, + sym__comment_word, + ACTIONS(11148), 1, + anon_sym_DOLLAR, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11118), 2, + ACTIONS(9772), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5253), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259117,46 +260961,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220039] = 18, - ACTIONS(3), 1, + [221515] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(4083), 1, + anon_sym_DOLLAR, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(10374), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10376), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10380), 1, + anon_sym_DQUOTE, + ACTIONS(10384), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(10388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11150), 1, sym_word, - ACTIONS(9680), 1, - sym__comment_word, - ACTIONS(11122), 1, - anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(11152), 1, + sym__special_character, + ACTIONS(11156), 1, + sym_test_operator, + STATE(4432), 1, + aux_sym__literal_repeat1, + STATE(4833), 1, + sym_concatenation, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(11154), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(5240), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259166,48 +261012,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220106] = 20, + [221586] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5319), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, + ACTIONS(4083), 1, anon_sym_DOLLAR, - ACTIONS(5325), 1, - sym__special_character, - ACTIONS(5327), 1, - anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(5335), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(10374), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10376), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10380), 1, + anon_sym_DQUOTE, + ACTIONS(10384), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(11124), 1, + ACTIONS(11152), 1, + sym__special_character, + ACTIONS(11158), 1, sym_word, - ACTIONS(11128), 1, + ACTIONS(11162), 1, sym_test_operator, - STATE(5444), 1, + STATE(4420), 1, aux_sym__literal_repeat1, - STATE(5581), 1, + STATE(4696), 1, sym_concatenation, - ACTIONS(5343), 2, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11126), 2, + ACTIONS(11160), 2, sym_raw_string, sym_ansi_c_string, - STATE(5271), 9, + STATE(5244), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259217,46 +261063,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220177] = 18, - ACTIONS(3), 1, + [221657] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, + aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(11164), 1, sym_word, - ACTIONS(11016), 1, - sym__comment_word, - ACTIONS(11130), 1, - anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(11166), 1, + sym__special_character, + ACTIONS(11170), 1, + sym_test_operator, + STATE(4282), 1, + aux_sym__literal_repeat1, + STATE(4603), 1, + sym_concatenation, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11014), 3, - sym__bare_dollar, + ACTIONS(11168), 2, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(5133), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259266,46 +261114,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220244] = 18, - ACTIONS(3), 1, + [221728] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, + aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8234), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(10284), 1, + ACTIONS(11166), 1, + sym__special_character, + ACTIONS(11172), 1, sym_word, - ACTIONS(10290), 1, - sym__comment_word, - ACTIONS(11132), 1, - anon_sym_DOLLAR, - ACTIONS(8250), 2, + ACTIONS(11176), 1, + sym_test_operator, + STATE(4226), 1, + aux_sym__literal_repeat1, + STATE(4548), 1, + sym_concatenation, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10288), 3, - sym__bare_dollar, + ACTIONS(11174), 2, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(5086), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259315,46 +261165,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220311] = 18, + [221799] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(11178), 1, sym_word, - ACTIONS(11136), 1, + ACTIONS(11180), 1, anon_sym_DOLLAR, - ACTIONS(11142), 1, + ACTIONS(11186), 1, sym__comment_word, - ACTIONS(9702), 2, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(11182), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(11184), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259364,48 +261214,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220378] = 20, - ACTIONS(71), 1, + [221866] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(2628), 1, + aux_sym_number_token1, + ACTIONS(2630), 1, + aux_sym_number_token2, + ACTIONS(2634), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - sym__brace_start, - ACTIONS(11144), 1, + ACTIONS(11178), 1, sym_word, - ACTIONS(11148), 1, - sym_test_operator, - STATE(2436), 1, - aux_sym__literal_repeat1, - STATE(2665), 1, - sym_concatenation, - ACTIONS(9920), 2, + ACTIONS(11186), 1, + sym__comment_word, + ACTIONS(11188), 1, + anon_sym_DOLLAR, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11146), 2, + ACTIONS(11182), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11184), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2238), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259415,46 +261263,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220449] = 18, + [221933] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(2022), 1, + aux_sym_number_token1, + ACTIONS(2024), 1, + aux_sym_number_token2, + ACTIONS(2028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(9992), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(9998), 1, sym__comment_word, - ACTIONS(11150), 1, + ACTIONS(11190), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(9994), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(9996), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259464,46 +261312,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220516] = 18, + [222000] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, + ACTIONS(2042), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(9992), 1, sym_word, - ACTIONS(11154), 1, - anon_sym_DOLLAR, - ACTIONS(11160), 1, + ACTIONS(9998), 1, sym__comment_word, - ACTIONS(9850), 2, + ACTIONS(11192), 1, + anon_sym_DOLLAR, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(9994), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(9996), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259513,46 +261361,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220583] = 18, + [222067] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(3331), 1, + aux_sym_number_token1, + ACTIONS(3333), 1, + aux_sym_number_token2, + ACTIONS(3337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3349), 1, + sym__brace_start, + ACTIONS(10038), 1, + sym_word, + ACTIONS(10040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(10042), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7982), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, - aux_sym_number_token1, - ACTIONS(7988), 1, - aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, - sym__brace_start, - ACTIONS(10578), 1, - sym_word, - ACTIONS(10586), 1, + ACTIONS(10058), 1, sym__comment_word, - ACTIONS(7998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(11194), 1, + anon_sym_DOLLAR, + ACTIONS(10044), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(10056), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10048), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(1783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259562,48 +261410,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220650] = 20, - ACTIONS(71), 1, + [222134] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(3331), 1, + aux_sym_number_token1, + ACTIONS(3333), 1, + aux_sym_number_token2, + ACTIONS(3337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3349), 1, + sym__brace_start, + ACTIONS(10038), 1, + sym_word, + ACTIONS(10040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(10042), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - sym__brace_start, - ACTIONS(11162), 1, - sym_word, - ACTIONS(11166), 1, + ACTIONS(10058), 1, + sym__comment_word, + ACTIONS(11196), 1, + anon_sym_DOLLAR, + ACTIONS(10044), 2, sym_test_operator, - STATE(2569), 1, - aux_sym__literal_repeat1, - STATE(2686), 1, - sym_concatenation, - ACTIONS(9920), 2, + sym__special_character, + ACTIONS(10056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11164), 2, + ACTIONS(10048), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2306), 9, + STATE(1783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259613,46 +261459,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220721] = 18, + [222201] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(9778), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(9780), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(9784), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(9788), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(9790), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(9792), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(10826), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(10832), 1, sym__comment_word, - ACTIONS(11168), 1, + ACTIONS(11198), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(9794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(10828), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(10830), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(1041), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259662,46 +261508,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220788] = 18, + [222268] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(10090), 1, sym_word, - ACTIONS(11160), 1, + ACTIONS(10096), 1, sym__comment_word, - ACTIONS(11170), 1, + ACTIONS(11200), 1, anon_sym_DOLLAR, - ACTIONS(9850), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(10092), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(10094), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259711,48 +261557,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220855] = 20, - ACTIONS(71), 1, + [222335] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(10948), 1, + sym_word, + ACTIONS(10950), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(10952), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, - anon_sym_DOLLAR, - ACTIONS(5097), 1, - sym__special_character, - ACTIONS(5099), 1, + ACTIONS(10958), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(10962), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(10964), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(10966), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(10968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(10970), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(10972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(10976), 1, + sym__comment_word, + ACTIONS(10978), 1, sym__brace_start, - ACTIONS(11172), 1, - sym_word, - ACTIONS(11176), 1, + ACTIONS(11202), 1, + anon_sym_DOLLAR, + ACTIONS(10956), 2, sym_test_operator, - STATE(5312), 1, - aux_sym__literal_repeat1, - STATE(5504), 1, - sym_concatenation, - ACTIONS(5115), 2, + sym__special_character, + ACTIONS(10974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11174), 2, + ACTIONS(10960), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5202), 9, + STATE(6113), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259762,46 +261606,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220926] = 18, + [222402] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3324), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3336), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(10292), 1, - sym_word, - ACTIONS(10294), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10302), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, + ACTIONS(10090), 1, + sym_word, + ACTIONS(10096), 1, sym__comment_word, - ACTIONS(11178), 1, + ACTIONS(11204), 1, anon_sym_DOLLAR, - ACTIONS(10300), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10312), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 3, + ACTIONS(10092), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10094), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259811,46 +261655,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220993] = 18, + [222469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8234), 1, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(199), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(201), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(219), 1, sym__brace_start, - ACTIONS(10284), 1, + ACTIONS(11054), 1, sym_word, - ACTIONS(10290), 1, + ACTIONS(11062), 1, sym__comment_word, - ACTIONS(11180), 1, + ACTIONS(11206), 1, anon_sym_DOLLAR, - ACTIONS(8250), 2, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, + ACTIONS(11058), 2, sym_test_operator, sym__special_character, - ACTIONS(10288), 3, + ACTIONS(11060), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259860,46 +261704,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221060] = 18, + [222536] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(9904), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(9906), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(9910), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(9914), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(9916), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(9918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(11208), 1, sym_word, - ACTIONS(10112), 1, - sym__comment_word, - ACTIONS(11182), 1, + ACTIONS(11210), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(11216), 1, + sym__comment_word, + ACTIONS(9920), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(11212), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(11214), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(1230), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259909,46 +261753,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221127] = 18, + [222603] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(10372), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(11184), 1, + ACTIONS(11218), 1, anon_sym_DOLLAR, - ACTIONS(10794), 2, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(10806), 2, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259958,46 +261802,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221194] = 18, + [222670] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9904), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - sym__brace_start, - ACTIONS(10864), 1, - sym_word, - ACTIONS(10872), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(9920), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(11220), 1, + anon_sym_DOLLAR, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260007,46 +261851,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221261] = 18, + [222737] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(9904), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(9906), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(9910), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(9914), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(9916), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(9918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(11208), 1, + sym_word, + ACTIONS(11216), 1, sym__comment_word, - ACTIONS(11186), 1, + ACTIONS(11222), 1, anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + ACTIONS(9920), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(11212), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11214), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(1230), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260056,48 +261900,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221328] = 20, - ACTIONS(71), 1, + [222804] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(3724), 1, + aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(10422), 1, + sym_word, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(11188), 1, - sym_word, - ACTIONS(11192), 1, + ACTIONS(10442), 1, + sym__comment_word, + ACTIONS(11224), 1, + anon_sym_DOLLAR, + ACTIONS(10428), 2, sym_test_operator, - STATE(1391), 1, - aux_sym__literal_repeat1, - STATE(1547), 1, - sym_concatenation, - ACTIONS(8138), 2, + sym__special_character, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11190), 2, + ACTIONS(10432), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1009), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260107,46 +261949,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221399] = 18, + [222871] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10600), 1, + ACTIONS(10422), 1, sym_word, - ACTIONS(10602), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(11194), 1, + ACTIONS(11226), 1, anon_sym_DOLLAR, - ACTIONS(10608), 2, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(10620), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260156,48 +261998,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221466] = 20, - ACTIONS(71), 1, + [222938] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3136), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(9856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(9858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(11196), 1, + ACTIONS(10460), 1, sym_word, - ACTIONS(11200), 1, - sym_test_operator, - STATE(1448), 1, - aux_sym__literal_repeat1, - STATE(1644), 1, - sym_concatenation, - ACTIONS(8138), 2, + ACTIONS(10466), 1, + sym__comment_word, + ACTIONS(11228), 1, + anon_sym_DOLLAR, + ACTIONS(9872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11198), 2, + ACTIONS(10462), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10464), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1019), 9, + STATE(4770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260207,46 +262047,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221537] = 18, + [223005] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(3130), 1, + aux_sym_number_token1, + ACTIONS(3132), 1, + aux_sym_number_token2, + ACTIONS(3136), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3148), 1, + sym__brace_start, + ACTIONS(9856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(9858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4546), 1, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, - sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(10460), 1, sym_word, - ACTIONS(10396), 1, + ACTIONS(10466), 1, sym__comment_word, - ACTIONS(11202), 1, + ACTIONS(11230), 1, anon_sym_DOLLAR, - ACTIONS(4562), 2, + ACTIONS(9872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10392), 2, + ACTIONS(10462), 2, sym_test_operator, sym__special_character, - ACTIONS(10394), 3, + ACTIONS(10464), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(4770), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260256,46 +262096,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221604] = 18, + [223072] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9830), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9832), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9836), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9842), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(10700), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(10706), 1, sym__comment_word, - ACTIONS(11204), 1, + ACTIONS(11232), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(9846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(10702), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(10704), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260305,46 +262145,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221671] = 18, + [223139] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5232), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5236), 1, + aux_sym_number_token1, + ACTIONS(5238), 1, + aux_sym_number_token2, + ACTIONS(5240), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5242), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5244), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5246), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(5252), 1, + sym__brace_start, + ACTIONS(10562), 1, + sym_word, + ACTIONS(10568), 1, sym__comment_word, - ACTIONS(11206), 1, + ACTIONS(11234), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(5248), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10564), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10566), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(5310), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260354,46 +262194,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221738] = 18, + [223206] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9830), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9832), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9836), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9842), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(10700), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(10706), 1, sym__comment_word, - ACTIONS(11208), 1, + ACTIONS(11236), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(9846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(10702), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(10704), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(934), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260403,95 +262243,137 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221805] = 18, + [223273] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(111), 1, + ACTIONS(11242), 1, + anon_sym_LPAREN, + ACTIONS(11244), 1, + aux_sym__c_word_token1, + ACTIONS(11246), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(115), 1, + ACTIONS(11250), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(11252), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(11258), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(11260), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(11262), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, - sym__brace_start, - ACTIONS(10662), 1, - sym_word, - ACTIONS(10670), 1, - sym__comment_word, - ACTIONS(131), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10666), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10668), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(486), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(4181), 1, + sym__c_terminator, + STATE(6207), 1, + sym__c_expression, + STATE(6401), 1, + sym__c_variable_assignment, + STATE(6919), 1, + sym__for_body, + ACTIONS(11238), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3060), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [221872] = 18, + [223348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(10448), 1, + anon_sym_LT_LT_LT, + STATE(5008), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [223393] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10598), 1, + sym_word, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(11210), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10600), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260501,46 +262383,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221939] = 18, + [223460] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(195), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(201), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(10598), 1, sym_word, - ACTIONS(11214), 1, - anon_sym_DOLLAR, - ACTIONS(11220), 1, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(211), 2, + ACTIONS(11266), 1, + anon_sym_DOLLAR, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(10600), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260550,48 +262432,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222006] = 20, + [223527] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_DOLLAR, - ACTIONS(3129), 1, - aux_sym_number_token1, - ACTIONS(3131), 1, - aux_sym_number_token2, - ACTIONS(3135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(10204), 1, + ACTIONS(6130), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6136), 1, + sym__special_character, + ACTIONS(6138), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(6142), 1, + aux_sym_number_token1, + ACTIONS(6144), 1, + aux_sym_number_token2, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6150), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(6152), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11222), 1, + ACTIONS(6158), 1, + sym__brace_start, + ACTIONS(11268), 1, sym_word, - ACTIONS(11224), 1, - sym__special_character, - ACTIONS(11228), 1, + ACTIONS(11272), 1, sym_test_operator, - STATE(4429), 1, + STATE(3506), 1, aux_sym__literal_repeat1, - STATE(4714), 1, + STATE(3752), 1, sym_concatenation, - ACTIONS(10220), 2, + ACTIONS(6154), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11226), 2, + ACTIONS(11270), 2, sym_raw_string, sym_ansi_c_string, - STATE(4258), 9, + STATE(3432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260601,48 +262483,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222077] = 20, + [223598] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_DOLLAR, - ACTIONS(3129), 1, - aux_sym_number_token1, - ACTIONS(3131), 1, - aux_sym_number_token2, - ACTIONS(3135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(10204), 1, + ACTIONS(6130), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(6134), 1, + anon_sym_DOLLAR, + ACTIONS(6136), 1, + sym__special_character, + ACTIONS(6138), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(6142), 1, + aux_sym_number_token1, + ACTIONS(6144), 1, + aux_sym_number_token2, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(6148), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6150), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(6152), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11224), 1, - sym__special_character, - ACTIONS(11230), 1, + ACTIONS(6158), 1, + sym__brace_start, + ACTIONS(11274), 1, sym_word, - ACTIONS(11234), 1, + ACTIONS(11278), 1, sym_test_operator, - STATE(4356), 1, + STATE(3483), 1, aux_sym__literal_repeat1, - STATE(4935), 1, + STATE(3546), 1, sym_concatenation, - ACTIONS(10220), 2, + ACTIONS(6154), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11232), 2, + ACTIONS(11276), 2, sym_raw_string, sym_ansi_c_string, - STATE(4235), 9, + STATE(3405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260652,46 +262534,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222148] = 18, + [223669] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(5226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(5232), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(5236), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(5238), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(5240), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(5242), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(5244), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(5246), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(5252), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(10562), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(10568), 1, sym__comment_word, - ACTIONS(11236), 1, + ACTIONS(11280), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(5248), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(10564), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(10566), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(5310), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260701,95 +262583,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222215] = 18, + [223736] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(10470), 1, + sym_word, + ACTIONS(10472), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(10474), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, - sym_word, - ACTIONS(10172), 1, + ACTIONS(10490), 1, sym__comment_word, - ACTIONS(11238), 1, + ACTIONS(11282), 1, anon_sym_DOLLAR, - ACTIONS(10058), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(10476), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(889), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [222282] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, - anon_sym_DOLLAR, - ACTIONS(4072), 1, - anon_sym_DQUOTE, - ACTIONS(4076), 1, - aux_sym_number_token1, - ACTIONS(4078), 1, - aux_sym_number_token2, - ACTIONS(4080), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, - anon_sym_BQUOTE, - ACTIONS(4086), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(10174), 1, - sym_word, - ACTIONS(10182), 1, - sym__comment_word, - ACTIONS(4088), 2, + ACTIONS(10488), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10180), 3, + ACTIONS(10480), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(2023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260799,46 +262632,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222349] = 18, + [223803] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10470), 1, + sym_word, + ACTIONS(10472), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10474), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, - sym_word, - ACTIONS(11142), 1, + ACTIONS(10490), 1, sym__comment_word, - ACTIONS(11240), 1, + ACTIONS(11284), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(10476), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(10488), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10480), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(2023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260848,48 +262681,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222416] = 20, - ACTIONS(71), 1, + [223870] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(2417), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(8120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(8122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(8126), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(8130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(8132), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(8134), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11242), 1, + ACTIONS(10792), 1, sym_word, - ACTIONS(11246), 1, - sym_test_operator, - STATE(1027), 1, - aux_sym__literal_repeat1, - STATE(1150), 1, - sym_concatenation, - ACTIONS(10058), 2, + ACTIONS(10798), 1, + sym__comment_word, + ACTIONS(11286), 1, + anon_sym_DOLLAR, + ACTIONS(8136), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11244), 2, + ACTIONS(10794), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10796), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(838), 9, + STATE(1379), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260899,46 +262730,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222487] = 18, + [223937] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(195), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(201), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, - anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(11220), 1, + ACTIONS(9768), 1, sym__comment_word, - ACTIONS(11248), 1, + ACTIONS(11288), 1, anon_sym_DOLLAR, - ACTIONS(211), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(9772), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(9770), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260948,46 +262779,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222554] = 18, + [224004] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5327), 1, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, - anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(11250), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(11252), 1, - anon_sym_DOLLAR, - ACTIONS(11258), 1, + ACTIONS(9768), 1, sym__comment_word, - ACTIONS(5343), 2, + ACTIONS(11290), 1, + anon_sym_DOLLAR, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(9772), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(9770), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260997,48 +262828,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222621] = 20, - ACTIONS(71), 1, + [224071] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(3301), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(3303), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(3307), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(3317), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(10834), 1, + sym_word, + ACTIONS(10836), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(10838), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(10842), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(10846), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(10848), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(10850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11260), 1, - sym_word, - ACTIONS(11264), 1, + ACTIONS(10854), 1, + sym__comment_word, + ACTIONS(11292), 1, + anon_sym_DOLLAR, + ACTIONS(10840), 2, sym_test_operator, - STATE(1029), 1, - aux_sym__literal_repeat1, - STATE(1153), 1, - sym_concatenation, - ACTIONS(10058), 2, + sym__special_character, + ACTIONS(10852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11262), 2, + ACTIONS(10844), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(818), 9, + STATE(1907), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261048,83 +262877,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11266), 1, - aux_sym_concatenation_token1, - ACTIONS(11268), 1, - sym__concat, - STATE(4136), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [222735] = 18, + [224138] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3301), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3303), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3307), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3317), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(10834), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(10836), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10838), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10842), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10846), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10848), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(10854), 1, sym__comment_word, - ACTIONS(11270), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(10840), 2, sym_test_operator, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(10844), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(1907), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261134,46 +262926,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222802] = 18, + [224205] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8645), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(10156), 1, sym_word, - ACTIONS(11274), 1, - anon_sym_DOLLAR, - ACTIONS(11280), 1, + ACTIONS(10164), 1, sym__comment_word, - ACTIONS(8661), 2, + ACTIONS(11296), 1, + anon_sym_DOLLAR, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(10160), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(10162), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(1134), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261183,46 +262975,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222869] = 18, + [224272] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4633), 1, - anon_sym_DOLLAR, - ACTIONS(4637), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(4643), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(10548), 1, + ACTIONS(10302), 1, sym_word, - ACTIONS(10556), 1, + ACTIONS(10308), 1, sym__comment_word, - ACTIONS(4653), 2, + ACTIONS(11298), 1, + anon_sym_DOLLAR, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10552), 2, + ACTIONS(10304), 2, sym_test_operator, sym__special_character, - ACTIONS(10554), 3, + ACTIONS(10306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(1986), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261232,46 +263024,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222936] = 18, + [224339] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(2985), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(2987), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(3001), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(8506), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8508), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8512), 1, + anon_sym_DQUOTE, + ACTIONS(8516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8518), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8520), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10660), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(10666), 1, sym__comment_word, - ACTIONS(11282), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(8522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(10662), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(10664), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1677), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261281,46 +263073,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223003] = 18, + [224406] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(4511), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(4513), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8645), 1, + ACTIONS(4519), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(4523), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(4525), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(4527), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(4531), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(4533), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, + ACTIONS(4539), 1, sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(10570), 1, sym_word, - ACTIONS(11280), 1, + ACTIONS(10576), 1, sym__comment_word, - ACTIONS(11284), 1, + ACTIONS(11302), 1, anon_sym_DOLLAR, - ACTIONS(8661), 2, + ACTIONS(4535), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(10572), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(10574), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(2512), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261330,48 +263122,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223070] = 20, - ACTIONS(71), 1, + [224473] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(2401), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(2403), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(2417), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(8120), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(8122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(8126), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(8130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(8132), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(8134), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11286), 1, + ACTIONS(10792), 1, sym_word, - ACTIONS(11288), 1, + ACTIONS(10798), 1, + sym__comment_word, + ACTIONS(11304), 1, + anon_sym_DOLLAR, + ACTIONS(8136), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10794), 2, + sym_test_operator, sym__special_character, - ACTIONS(11292), 1, + ACTIONS(10796), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1379), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224540] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10948), 1, + sym_word, + ACTIONS(10950), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10952), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10958), 1, + anon_sym_DQUOTE, + ACTIONS(10962), 1, + aux_sym_number_token1, + ACTIONS(10964), 1, + aux_sym_number_token2, + ACTIONS(10966), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10968), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10970), 1, + anon_sym_BQUOTE, + ACTIONS(10972), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10976), 1, + sym__comment_word, + ACTIONS(10978), 1, + sym__brace_start, + ACTIONS(11306), 1, + anon_sym_DOLLAR, + ACTIONS(10956), 2, sym_test_operator, - STATE(4291), 1, - aux_sym__literal_repeat1, - STATE(4579), 1, - sym_concatenation, - ACTIONS(10252), 2, + sym__special_character, + ACTIONS(10974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11290), 2, + ACTIONS(10960), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4158), 9, + STATE(6113), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261381,48 +263220,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223141] = 20, - ACTIONS(71), 1, + [224607] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(10504), 1, + sym_word, + ACTIONS(10506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(10508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(10512), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(10516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(10518), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(10520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11288), 1, - sym__special_character, - ACTIONS(11294), 1, - sym_word, - ACTIONS(11298), 1, + ACTIONS(10524), 1, + sym__comment_word, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(10510), 2, sym_test_operator, - STATE(4175), 1, - aux_sym__literal_repeat1, - STATE(4616), 1, - sym_concatenation, - ACTIONS(10252), 2, + sym__special_character, + ACTIONS(10522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11296), 2, + ACTIONS(10514), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4138), 9, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261432,46 +263269,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223212] = 18, + [224674] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 1, + ACTIONS(4511), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(4513), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(4519), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(4523), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(4525), 1, aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(4527), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(4531), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(4533), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, + ACTIONS(4539), 1, sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(10570), 1, sym_word, - ACTIONS(10272), 1, + ACTIONS(10576), 1, sym__comment_word, - ACTIONS(11300), 1, + ACTIONS(11310), 1, anon_sym_DOLLAR, - ACTIONS(725), 2, + ACTIONS(4535), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10268), 2, + ACTIONS(10572), 2, sym_test_operator, sym__special_character, - ACTIONS(10270), 3, + ACTIONS(10574), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(2512), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261481,46 +263318,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223279] = 18, + [224741] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11318), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11320), 1, + anon_sym_LT_LT_LT, + ACTIONS(11322), 1, + sym_file_descriptor, + ACTIONS(11316), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3865), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11314), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11312), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [224788] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, - anon_sym_DOLLAR, - ACTIONS(2661), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(10640), 1, sym_word, - ACTIONS(10728), 1, + ACTIONS(10648), 1, sym__comment_word, - ACTIONS(2677), 2, + ACTIONS(11324), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(10644), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(10646), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(1095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261530,7 +263406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223346] = 18, + [224855] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(308), 1, @@ -261553,23 +263429,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(340), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(10640), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(10648), 1, sym__comment_word, - ACTIONS(11302), 1, + ACTIONS(11326), 1, anon_sym_DOLLAR, ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(10644), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(10646), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261579,48 +263455,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223413] = 20, - ACTIONS(71), 1, + [224922] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, + sym_word, + ACTIONS(10866), 1, + sym__comment_word, + ACTIONS(11328), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10862), 2, + sym_test_operator, sym__special_character, - ACTIONS(8234), 1, - anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(10864), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2288), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224989] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(8242), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, - anon_sym_BQUOTE, - ACTIONS(8248), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(11304), 1, + ACTIONS(10504), 1, sym_word, - ACTIONS(11308), 1, + ACTIONS(10506), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10508), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10512), 1, + anon_sym_DQUOTE, + ACTIONS(10516), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10518), 1, + anon_sym_BQUOTE, + ACTIONS(10520), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10524), 1, + sym__comment_word, + ACTIONS(11330), 1, + anon_sym_DOLLAR, + ACTIONS(10510), 2, sym_test_operator, - STATE(1502), 1, - aux_sym__literal_repeat1, - STATE(1765), 1, - sym_concatenation, - ACTIONS(8250), 2, + sym__special_character, + ACTIONS(10522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11306), 2, + ACTIONS(10514), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1291), 9, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261630,92 +263553,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223484] = 13, + [225056] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(10934), 1, - sym_file_descriptor, - STATE(4815), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4171), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4253), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4255), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [223541] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8226), 1, + ACTIONS(2628), 1, + aux_sym_number_token1, + ACTIONS(2630), 1, + aux_sym_number_token2, + ACTIONS(2634), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(11310), 1, + ACTIONS(11178), 1, sym_word, - ACTIONS(11314), 1, - sym_test_operator, - STATE(1508), 1, - aux_sym__literal_repeat1, - STATE(1802), 1, - sym_concatenation, - ACTIONS(8250), 2, + ACTIONS(11186), 1, + sym__comment_word, + ACTIONS(11332), 1, + anon_sym_DOLLAR, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11312), 2, + ACTIONS(11182), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11184), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1223), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261725,46 +263602,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223612] = 18, + [225123] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, + sym_word, + ACTIONS(10866), 1, + sym__comment_word, + ACTIONS(11334), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10862), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10864), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2288), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225190] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8304), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8310), 1, + anon_sym_DQUOTE, + ACTIONS(8314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(11178), 1, sym_word, - ACTIONS(10862), 1, + ACTIONS(11186), 1, sym__comment_word, - ACTIONS(1063), 2, + ACTIONS(11336), 1, + anon_sym_DOLLAR, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(11182), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(11184), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261774,46 +263700,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223679] = 18, + [225257] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 1, + ACTIONS(2628), 1, + aux_sym_number_token1, + ACTIONS(2630), 1, + aux_sym_number_token2, + ACTIONS(2634), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, - aux_sym_number_token1, - ACTIONS(715), 1, - aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, - sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(11178), 1, sym_word, - ACTIONS(10272), 1, + ACTIONS(11186), 1, sym__comment_word, - ACTIONS(11316), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR, - ACTIONS(725), 2, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10268), 2, + ACTIONS(11182), 2, sym_test_operator, sym__special_character, - ACTIONS(10270), 3, + ACTIONS(11184), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261823,48 +263749,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223746] = 20, - ACTIONS(71), 1, + [225324] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_DOLLAR, - ACTIONS(3484), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(10408), 1, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11318), 1, + ACTIONS(11178), 1, sym_word, - ACTIONS(11320), 1, - sym__special_character, - ACTIONS(11324), 1, - sym_test_operator, - STATE(4640), 1, - aux_sym__literal_repeat1, - STATE(4970), 1, - sym_concatenation, - ACTIONS(10424), 2, + ACTIONS(11186), 1, + sym__comment_word, + ACTIONS(11340), 1, + anon_sym_DOLLAR, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11322), 2, + ACTIONS(11182), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11184), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4489), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261874,46 +263798,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223817] = 18, + [225391] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(2042), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(9992), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(9998), 1, sym__comment_word, - ACTIONS(11326), 1, + ACTIONS(11342), 1, anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(9994), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(9996), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261923,46 +263847,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223884] = 18, + [225458] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(2022), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2024), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(2028), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(2042), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(9992), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(9998), 1, sym__comment_word, - ACTIONS(11328), 1, + ACTIONS(11344), 1, anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(9994), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(9996), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261972,46 +263896,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223951] = 18, + [225525] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(2301), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, + ACTIONS(3349), 1, sym__brace_start, - ACTIONS(10142), 1, + ACTIONS(10038), 1, sym_word, - ACTIONS(10144), 1, + ACTIONS(10040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(10042), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, + ACTIONS(10058), 1, sym__comment_word, - ACTIONS(11330), 1, + ACTIONS(11346), 1, anon_sym_DOLLAR, - ACTIONS(10148), 2, + ACTIONS(10044), 2, sym_test_operator, sym__special_character, - ACTIONS(10160), 2, + ACTIONS(10056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, + ACTIONS(10048), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(1783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262021,48 +263945,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224018] = 20, - ACTIONS(71), 1, + [225592] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_DOLLAR, - ACTIONS(3484), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(3349), 1, sym__brace_start, - ACTIONS(10408), 1, + ACTIONS(10038), 1, + sym_word, + ACTIONS(10040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(10042), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11320), 1, - sym__special_character, - ACTIONS(11332), 1, - sym_word, - ACTIONS(11336), 1, + ACTIONS(10058), 1, + sym__comment_word, + ACTIONS(11348), 1, + anon_sym_DOLLAR, + ACTIONS(10044), 2, sym_test_operator, - STATE(4598), 1, - aux_sym__literal_repeat1, - STATE(5003), 1, - sym_concatenation, - ACTIONS(10424), 2, + sym__special_character, + ACTIONS(10056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11334), 2, + ACTIONS(10048), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4325), 9, + STATE(1783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262072,46 +263994,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224089] = 18, + [225659] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, - anon_sym_DOLLAR, - ACTIONS(3600), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, + ACTIONS(10090), 1, sym_word, - ACTIONS(11006), 1, + ACTIONS(10096), 1, sym__comment_word, - ACTIONS(9722), 2, + ACTIONS(11350), 1, + anon_sym_DOLLAR, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11002), 2, + ACTIONS(10092), 2, sym_test_operator, sym__special_character, - ACTIONS(11004), 3, + ACTIONS(10094), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262121,46 +264043,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224156] = 18, + [225726] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(191), 1, - anon_sym_DOLLAR, - ACTIONS(195), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, - aux_sym_number_token1, - ACTIONS(201), 1, - aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, - sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(10090), 1, sym_word, - ACTIONS(11220), 1, + ACTIONS(10096), 1, sym__comment_word, - ACTIONS(211), 2, + ACTIONS(11352), 1, + anon_sym_DOLLAR, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(10092), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(10094), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262170,85 +264092,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224223] = 6, + [225793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, - sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 24, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [224266] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, - sym__special_character, - ACTIONS(9768), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11342), 1, - sym_word, - ACTIONS(11346), 1, + ACTIONS(10392), 1, + sym__comment_word, + ACTIONS(11354), 1, + anon_sym_DOLLAR, + ACTIONS(10378), 2, sym_test_operator, - STATE(1245), 1, - aux_sym__literal_repeat1, - STATE(1369), 1, - sym_concatenation, - ACTIONS(9778), 2, + sym__special_character, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11344), 2, + ACTIONS(10382), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(879), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262258,46 +264141,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224337] = 18, + [225860] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, + ACTIONS(10388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(11348), 1, + ACTIONS(11356), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262307,48 +264190,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224404] = 20, - ACTIONS(71), 1, + [225927] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(10422), 1, + sym_word, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, - sym__special_character, - ACTIONS(9768), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11350), 1, - sym_word, - ACTIONS(11354), 1, + ACTIONS(10442), 1, + sym__comment_word, + ACTIONS(11358), 1, + anon_sym_DOLLAR, + ACTIONS(10428), 2, sym_test_operator, - STATE(1258), 1, - aux_sym__literal_repeat1, - STATE(1408), 1, - sym_concatenation, - ACTIONS(9778), 2, + sym__special_character, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11352), 2, + ACTIONS(10432), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(882), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262358,46 +264239,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224475] = 18, + [225994] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(10422), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(10496), 2, + ACTIONS(11360), 1, + anon_sym_DOLLAR, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262407,46 +264288,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224542] = 18, + [226061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(11362), 1, + aux_sym_concatenation_token1, + ACTIONS(11364), 1, + sym__concat, + STATE(4159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [226104] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8122), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(10598), 1, sym_word, - ACTIONS(10100), 1, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(11356), 1, + ACTIONS(11366), 1, anon_sym_DOLLAR, - ACTIONS(8138), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, + ACTIONS(10600), 2, sym_test_operator, sym__special_character, - ACTIONS(10098), 3, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262456,46 +264374,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224609] = 18, + [226171] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10598), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(11358), 1, + ACTIONS(11368), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10600), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262505,48 +264423,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224676] = 20, + [226238] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3344), 1, - anon_sym_DOLLAR, - ACTIONS(3350), 1, - aux_sym_number_token1, - ACTIONS(3352), 1, - aux_sym_number_token2, - ACTIONS(3356), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(10438), 1, + ACTIONS(4334), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(4338), 1, + anon_sym_DOLLAR, + ACTIONS(4342), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(4346), 1, + aux_sym_number_token1, + ACTIONS(4348), 1, + aux_sym_number_token2, + ACTIONS(4350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(4352), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4354), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(4356), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11360), 1, + ACTIONS(4362), 1, + sym__brace_start, + ACTIONS(11370), 1, sym_word, - ACTIONS(11362), 1, + ACTIONS(11372), 1, sym__special_character, - ACTIONS(11366), 1, + ACTIONS(11376), 1, sym_test_operator, - STATE(4347), 1, + STATE(2555), 1, aux_sym__literal_repeat1, - STATE(4848), 1, + STATE(2731), 1, sym_concatenation, - ACTIONS(10454), 2, + ACTIONS(4358), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11364), 2, + ACTIONS(11374), 2, sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(2335), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262556,46 +264474,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224747] = 18, - ACTIONS(3), 1, + [226309] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(4334), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(4338), 1, + anon_sym_DOLLAR, + ACTIONS(4342), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(4346), 1, + aux_sym_number_token1, + ACTIONS(4348), 1, + aux_sym_number_token2, + ACTIONS(4350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(4352), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4354), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(4356), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(11368), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, + ACTIONS(4362), 1, + sym__brace_start, + ACTIONS(11372), 1, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(11378), 1, + sym_word, + ACTIONS(11382), 1, + sym_test_operator, + STATE(2557), 1, + aux_sym__literal_repeat1, + STATE(2749), 1, + sym_concatenation, + ACTIONS(4358), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(11380), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(2340), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262605,48 +264525,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224814] = 20, - ACTIONS(71), 1, + [226380] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3344), 1, - anon_sym_DOLLAR, - ACTIONS(3350), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3356), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(10438), 1, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11362), 1, - sym__special_character, - ACTIONS(11370), 1, - sym_word, - ACTIONS(11374), 1, + ACTIONS(10388), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10392), 1, + sym__comment_word, + ACTIONS(11384), 1, + anon_sym_DOLLAR, + ACTIONS(10378), 2, sym_test_operator, - STATE(4350), 1, - aux_sym__literal_repeat1, - STATE(4915), 1, - sym_concatenation, - ACTIONS(10454), 2, + sym__special_character, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11372), 2, + ACTIONS(10382), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4193), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262656,46 +264574,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224885] = 18, + [226447] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 1, - aux_sym_number_token1, - ACTIONS(1382), 1, - aux_sym_number_token2, - ACTIONS(1386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, - sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(4926), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(4930), 1, + aux_sym_number_token1, + ACTIONS(4932), 1, + aux_sym_number_token2, + ACTIONS(4934), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4938), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(4940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(4946), 1, + sym__brace_start, + ACTIONS(10578), 1, sym_word, - ACTIONS(10172), 1, + ACTIONS(10584), 1, sym__comment_word, - ACTIONS(11376), 1, + ACTIONS(11386), 1, anon_sym_DOLLAR, - ACTIONS(10058), 2, + ACTIONS(4942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(10580), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, + ACTIONS(10582), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(5173), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262705,46 +264623,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224952] = 18, + [226514] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(10470), 1, + sym_word, + ACTIONS(10472), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10474), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10576), 1, + ACTIONS(10490), 1, sym__comment_word, - ACTIONS(11378), 1, + ACTIONS(11388), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10476), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10488), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10480), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(2023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262754,46 +264672,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225019] = 18, + [226581] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(2703), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2705), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2719), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(10708), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(10710), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10712), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10716), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10720), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10722), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10724), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(10728), 1, sym__comment_word, - ACTIONS(11380), 1, + ACTIONS(11390), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(10714), 2, sym_test_operator, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10726), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(10718), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(1735), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262803,46 +264721,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225086] = 18, + [226648] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 1, - anon_sym_DOLLAR, - ACTIONS(3213), 1, - aux_sym_number_token1, - ACTIONS(3215), 1, - aux_sym_number_token2, - ACTIONS(3219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, - sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(4926), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(4930), 1, + aux_sym_number_token1, + ACTIONS(4932), 1, + aux_sym_number_token2, + ACTIONS(4934), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(4936), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4938), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(4940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(4946), 1, + sym__brace_start, + ACTIONS(10578), 1, sym_word, - ACTIONS(11160), 1, + ACTIONS(10584), 1, sym__comment_word, - ACTIONS(9850), 2, + ACTIONS(11392), 1, + anon_sym_DOLLAR, + ACTIONS(4942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(10580), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(10582), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(5173), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262852,46 +264770,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225153] = 18, + [226715] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, - aux_sym_number_token1, - ACTIONS(3646), 1, - aux_sym_number_token2, - ACTIONS(3650), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(115), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(119), 1, + aux_sym_number_token1, + ACTIONS(121), 1, + aux_sym_number_token2, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(139), 1, + sym__brace_start, + ACTIONS(10166), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(10172), 1, sym__comment_word, - ACTIONS(11382), 1, + ACTIONS(11394), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10168), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10170), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(473), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262901,46 +264819,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225220] = 18, + [226782] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(2022), 1, + aux_sym_number_token1, + ACTIONS(2024), 1, + aux_sym_number_token2, + ACTIONS(2028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8122), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(9992), 1, sym_word, - ACTIONS(10100), 1, + ACTIONS(9998), 1, sym__comment_word, - ACTIONS(11384), 1, + ACTIONS(11396), 1, anon_sym_DOLLAR, - ACTIONS(8138), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, + ACTIONS(9994), 2, sym_test_operator, sym__special_character, - ACTIONS(10098), 3, + ACTIONS(9996), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262950,46 +264868,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225287] = 18, + [226849] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(10372), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(11386), 1, + ACTIONS(11398), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262999,46 +264917,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225354] = 18, + [226916] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(2703), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2705), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2719), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(10708), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(10710), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10712), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10716), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10720), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10722), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10724), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(10728), 1, sym__comment_word, - ACTIONS(11388), 1, + ACTIONS(11400), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(10714), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10726), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10718), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1735), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263048,46 +264966,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225421] = 18, + [226983] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(2022), 1, + aux_sym_number_token1, + ACTIONS(2024), 1, + aux_sym_number_token2, + ACTIONS(2028), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2042), 1, + sym__brace_start, + ACTIONS(8276), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8278), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9992), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9998), 1, sym__comment_word, - ACTIONS(11390), 1, + ACTIONS(11402), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(8292), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9994), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9996), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263097,46 +265015,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225488] = 18, + [227050] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3694), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3696), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3700), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3710), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(10470), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(10472), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10474), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(10490), 1, sym__comment_word, - ACTIONS(10522), 2, + ACTIONS(11404), 1, + anon_sym_DOLLAR, + ACTIONS(10476), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10488), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10480), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(2023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263146,46 +265064,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225555] = 18, + [227117] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(3930), 1, + aux_sym_number_token1, + ACTIONS(3932), 1, + aux_sym_number_token2, + ACTIONS(3936), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3946), 1, + sym__brace_start, + ACTIONS(10312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(10314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(10318), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(10322), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(10324), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(10326), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(10868), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(10874), 1, sym__comment_word, - ACTIONS(11392), 1, + ACTIONS(11406), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(10328), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(10870), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(10872), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4576), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263195,46 +265113,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225622] = 18, + [227184] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3930), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3932), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3936), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3946), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(10312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10318), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10322), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10324), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10326), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(10868), 1, + sym_word, + ACTIONS(10874), 1, sym__comment_word, - ACTIONS(11394), 1, + ACTIONS(11408), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10328), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(10870), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10872), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4576), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263244,46 +265162,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225689] = 18, + [227251] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(3239), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(3241), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(3255), 1, sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(10176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(10178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(10182), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(10186), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(10188), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(10190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(10730), 1, sym_word, - ACTIONS(10354), 1, + ACTIONS(10736), 1, sym__comment_word, - ACTIONS(11396), 1, + ACTIONS(11410), 1, anon_sym_DOLLAR, - ACTIONS(8280), 2, + ACTIONS(10192), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10350), 2, + ACTIONS(10732), 2, sym_test_operator, sym__special_character, - ACTIONS(10352), 3, + ACTIONS(10734), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(4482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263293,46 +265211,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225756] = 18, + [227318] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(3239), 1, + aux_sym_number_token1, + ACTIONS(3241), 1, + aux_sym_number_token2, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3255), 1, + sym__brace_start, + ACTIONS(10176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(10178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8645), 1, + ACTIONS(10182), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(10186), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(10188), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(10190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(10730), 1, sym_word, - ACTIONS(11280), 1, + ACTIONS(10736), 1, sym__comment_word, - ACTIONS(8661), 2, + ACTIONS(11412), 1, + anon_sym_DOLLAR, + ACTIONS(10192), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(10732), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(10734), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(4482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263342,48 +265260,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225823] = 20, - ACTIONS(71), 1, + [227385] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, - aux_sym_number_token1, - ACTIONS(3954), 1, - aux_sym_number_token2, - ACTIONS(3958), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11398), 1, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10598), 1, sym_word, - ACTIONS(11400), 1, - sym__special_character, - ACTIONS(11404), 1, - sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10604), 1, + sym__comment_word, + ACTIONS(11414), 1, + anon_sym_DOLLAR, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11402), 2, + ACTIONS(10600), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10602), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4535), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263393,46 +265309,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225894] = 18, + [227452] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10316), 1, - sym_word, - ACTIONS(10318), 1, + ACTIONS(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(191), 1, + anon_sym_DOLLAR, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(199), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(201), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, + ACTIONS(219), 1, sym__brace_start, - ACTIONS(11406), 1, - anon_sym_DOLLAR, - ACTIONS(10324), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10342), 2, + ACTIONS(11054), 1, + sym_word, + ACTIONS(11062), 1, + sym__comment_word, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, + ACTIONS(11058), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11060), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(508), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263442,46 +265358,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225961] = 18, + [227519] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(10866), 1, sym__comment_word, - ACTIONS(11408), 1, + ACTIONS(11416), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(10862), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(10864), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(2288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263491,46 +265407,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226028] = 18, + [227586] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(1107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(1115), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, - anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(10866), 1, sym__comment_word, - ACTIONS(9802), 2, + ACTIONS(11418), 1, + anon_sym_DOLLAR, + ACTIONS(1123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(10862), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(10864), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(2288), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263540,46 +265456,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226095] = 18, + [227653] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, - sym_word, - ACTIONS(10354), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(11410), 1, + ACTIONS(11420), 1, anon_sym_DOLLAR, - ACTIONS(8280), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10350), 2, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(10352), 3, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263589,46 +265505,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226162] = 18, + [227720] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, - sym_word, - ACTIONS(11142), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(11412), 1, + ACTIONS(11422), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263638,46 +265554,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226229] = 18, + [227787] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(10422), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(11414), 1, + ACTIONS(11424), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263687,46 +265603,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226296] = 18, + [227854] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(10422), 1, + sym_word, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10576), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(11426), 1, + anon_sym_DOLLAR, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10440), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263736,46 +265652,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226363] = 18, + [227921] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(8176), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8184), 1, + anon_sym_DQUOTE, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(8192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(8196), 1, + anon_sym_BQUOTE, + ACTIONS(8198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(10598), 1, + sym_word, + ACTIONS(10604), 1, + sym__comment_word, + ACTIONS(11428), 1, + anon_sym_DOLLAR, + ACTIONS(8200), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10600), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10602), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4297), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227988] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10598), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(11416), 1, + ACTIONS(11430), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10600), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263785,46 +265750,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226430] = 18, + [228055] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(2056), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(2058), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(2062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(2076), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(8332), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8334), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8338), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8342), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8344), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8346), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(11432), 1, sym_word, - ACTIONS(10576), 1, - sym__comment_word, - ACTIONS(11418), 1, + ACTIONS(11434), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(11440), 1, + sym__comment_word, + ACTIONS(8348), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(11436), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(11438), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(1522), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263834,48 +265799,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226497] = 20, + [228122] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(4083), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11400), 1, - sym__special_character, - ACTIONS(11420), 1, + ACTIONS(11442), 1, sym_word, - ACTIONS(11424), 1, + ACTIONS(11444), 1, + sym__special_character, + ACTIONS(11448), 1, sym_test_operator, - STATE(4371), 1, + STATE(4432), 1, aux_sym__literal_repeat1, - STATE(4761), 1, + STATE(4833), 1, sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11422), 2, + ACTIONS(11446), 2, sym_raw_string, sym_ansi_c_string, - STATE(4646), 9, + STATE(4570), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263885,46 +265850,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226568] = 18, + [228193] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(3331), 1, + aux_sym_number_token1, + ACTIONS(3333), 1, + aux_sym_number_token2, + ACTIONS(3337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3349), 1, + sym__brace_start, + ACTIONS(10038), 1, + sym_word, + ACTIONS(10040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(10042), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5327), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, - aux_sym_number_token1, - ACTIONS(5333), 1, - aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(11250), 1, - sym_word, - ACTIONS(11258), 1, + ACTIONS(10058), 1, sym__comment_word, - ACTIONS(11426), 1, + ACTIONS(11450), 1, anon_sym_DOLLAR, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(10044), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(10056), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10048), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(1783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263934,46 +265899,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226635] = 18, - ACTIONS(3), 1, + [228260] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(4083), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(11444), 1, + sym__special_character, + ACTIONS(11452), 1, sym_word, - ACTIONS(11142), 1, - sym__comment_word, - ACTIONS(9702), 2, + ACTIONS(11456), 1, + sym_test_operator, + STATE(4420), 1, + aux_sym__literal_repeat1, + STATE(4696), 1, + sym_concatenation, + ACTIONS(10390), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11140), 3, - sym__bare_dollar, + ACTIONS(11454), 2, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(4555), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263983,46 +265950,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226702] = 18, + [228331] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(10504), 1, + sym_word, + ACTIONS(10506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(10508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(10512), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(10516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(10518), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(10520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, - sym_word, - ACTIONS(10190), 1, + ACTIONS(10524), 1, sym__comment_word, - ACTIONS(11428), 1, + ACTIONS(11458), 1, anon_sym_DOLLAR, - ACTIONS(9946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10186), 2, + ACTIONS(10510), 2, sym_test_operator, sym__special_character, - ACTIONS(10188), 3, + ACTIONS(10522), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10514), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264032,46 +265999,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226769] = 18, + [228398] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(3331), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(3333), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, + ACTIONS(3349), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(10038), 1, + sym_word, + ACTIONS(10040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(10042), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(10046), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, - sym_word, - ACTIONS(11436), 1, + ACTIONS(10058), 1, sym__comment_word, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(11460), 1, + anon_sym_DOLLAR, + ACTIONS(10044), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(10056), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10048), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(1783), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264081,46 +266048,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226836] = 18, + [228465] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8188), 1, + aux_sym_number_token1, + ACTIONS(8190), 1, + aux_sym_number_token2, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(8208), 1, + sym__brace_start, + ACTIONS(10598), 1, + sym_word, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(11438), 1, + ACTIONS(11462), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10600), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264130,46 +266097,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226903] = 18, + [228532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11464), 1, + aux_sym_concatenation_token1, + ACTIONS(11466), 1, + sym__concat, + STATE(4140), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [228575] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10504), 1, + sym_word, + ACTIONS(10506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10512), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10518), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, - sym_word, - ACTIONS(11142), 1, + ACTIONS(10524), 1, sym__comment_word, - ACTIONS(11440), 1, + ACTIONS(11468), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(10510), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(10522), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10514), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264179,46 +266183,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226970] = 18, - ACTIONS(3), 1, + [228642] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(10950), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(10952), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(377), 1, + ACTIONS(10958), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(10962), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(10964), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(10966), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(10968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(10970), 1, + anon_sym_BQUOTE, + ACTIONS(10972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(10978), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9680), 1, - sym__comment_word, - ACTIONS(11442), 1, + ACTIONS(11306), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(11470), 1, + sym_word, + ACTIONS(11472), 1, + sym__special_character, + ACTIONS(11476), 1, + sym_test_operator, + STATE(6129), 1, + aux_sym__literal_repeat1, + STATE(6303), 1, + sym_concatenation, + ACTIONS(10974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9682), 3, - sym__bare_dollar, + ACTIONS(11474), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(6108), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264228,46 +266234,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227037] = 18, + [228713] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(2812), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2814), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(2818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2828), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10876), 1, + sym_word, + ACTIONS(10878), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10880), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10884), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10888), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10890), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10892), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, - sym_word, - ACTIONS(11142), 1, + ACTIONS(10896), 1, sym__comment_word, - ACTIONS(11444), 1, + ACTIONS(11478), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(10882), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(10894), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10886), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(1671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264277,48 +266283,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227104] = 20, - ACTIONS(71), 1, + [228780] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(2812), 1, + aux_sym_number_token1, + ACTIONS(2814), 1, + aux_sym_number_token2, + ACTIONS(2818), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2828), 1, + sym__brace_start, + ACTIONS(10876), 1, + sym_word, + ACTIONS(10878), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(10880), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(10884), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(10888), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(10890), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(10892), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10962), 1, + ACTIONS(10896), 1, + sym__comment_word, + ACTIONS(11480), 1, anon_sym_DOLLAR, - ACTIONS(10968), 1, - sym__special_character, - ACTIONS(11446), 1, - sym_word, - ACTIONS(11450), 1, + ACTIONS(10882), 2, sym_test_operator, - STATE(6112), 1, - aux_sym__literal_repeat1, - STATE(6331), 1, - sym_concatenation, - ACTIONS(10342), 2, + sym__special_character, + ACTIONS(10894), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11448), 2, + ACTIONS(10886), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6103), 9, + STATE(1671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264328,99 +266332,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227175] = 22, + [228847] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10644), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, + ACTIONS(256), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, - anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DQUOTE, + ACTIONS(1119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4149), 1, - sym__c_terminator, - STATE(6267), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(7360), 1, - sym__for_body, - ACTIONS(10636), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(10858), 1, + sym_word, + ACTIONS(10866), 1, + sym__comment_word, + ACTIONS(1123), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10862), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10864), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2288), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [227250] = 18, + sym_process_substitution, + [228914] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(4089), 1, + aux_sym_number_token1, + ACTIONS(4091), 1, + aux_sym_number_token2, + ACTIONS(4095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4105), 1, + sym__brace_start, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, - anon_sym_DOLLAR, - ACTIONS(7836), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, - aux_sym_number_token1, - ACTIONS(7842), 1, - aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(11452), 1, - sym_word, - ACTIONS(11458), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(7852), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11454), 2, + ACTIONS(11482), 1, + anon_sym_DOLLAR, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(11456), 3, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264430,46 +266430,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227317] = 18, + [228981] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(4089), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(4091), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(4105), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10372), 1, + sym_word, + ACTIONS(10374), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, - sym_word, - ACTIONS(11056), 1, + ACTIONS(10392), 1, sym__comment_word, - ACTIONS(11460), 1, + ACTIONS(11484), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(10378), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(10390), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10382), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4405), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264479,46 +266479,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227384] = 18, + [229048] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(2301), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(10142), 1, + ACTIONS(10422), 1, sym_word, - ACTIONS(10144), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(11462), 1, + ACTIONS(11486), 1, anon_sym_DOLLAR, - ACTIONS(10148), 2, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(10160), 2, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264528,46 +266528,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227451] = 18, + [229115] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10422), 1, + sym_word, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, - sym_word, - ACTIONS(11056), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(11464), 1, + ACTIONS(11488), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(10428), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(10440), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10432), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264577,46 +266577,96 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227518] = 18, + [229182] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(8015), 1, + anon_sym_SLASH, + ACTIONS(8017), 1, + anon_sym_PERCENT, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8262), 1, + anon_sym_AT, + ACTIONS(8969), 1, + anon_sym_LBRACK, + STATE(6998), 1, + sym__expansion_expression, + STATE(7014), 1, + sym__expansion_regex, + STATE(7027), 1, + sym__expansion_regex_replacement, + STATE(7036), 1, + sym__expansion_regex_removal, + STATE(7110), 1, + sym__expansion_max_length, + STATE(7124), 1, + sym__expansion_operator, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8033), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8021), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8031), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8029), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [229247] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_DOLLAR, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(9904), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(9906), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(9908), 1, + sym__special_character, + ACTIONS(9910), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(9914), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(9916), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(9918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, + ACTIONS(11490), 1, sym_word, - ACTIONS(10190), 1, - sym__comment_word, - ACTIONS(11466), 1, - anon_sym_DOLLAR, - ACTIONS(9946), 2, + ACTIONS(11494), 1, + sym_test_operator, + STATE(1376), 1, + aux_sym__literal_repeat1, + STATE(1650), 1, + sym_concatenation, + ACTIONS(9920), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10186), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10188), 3, - sym__bare_dollar, + ACTIONS(11492), 2, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(1044), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264626,46 +266676,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227585] = 18, - ACTIONS(3), 1, + [229318] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(6396), 1, + ACTIONS(1490), 1, + anon_sym_DOLLAR, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(9904), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(9906), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(9908), 1, + sym__special_character, + ACTIONS(9910), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(9914), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(9916), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(9918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(11496), 1, sym_word, - ACTIONS(11436), 1, - sym__comment_word, - ACTIONS(11468), 1, - anon_sym_DOLLAR, - ACTIONS(7524), 2, + ACTIONS(11500), 1, + sym_test_operator, + STATE(1430), 1, + aux_sym__literal_repeat1, + STATE(1662), 1, + sym_concatenation, + ACTIONS(9920), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11434), 3, - sym__bare_dollar, + ACTIONS(11498), 2, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(1050), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264675,46 +266727,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227652] = 18, + [229389] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10448), 1, + anon_sym_LT_LT_LT, + ACTIONS(10450), 1, + sym_file_descriptor, + STATE(5008), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4314), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4316), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4318), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(10446), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4261), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [229446] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7874), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, - aux_sym_number_token1, - ACTIONS(7880), 1, - aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(10090), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(10096), 1, sym__comment_word, - ACTIONS(11470), 1, + ACTIONS(11502), 1, anon_sym_DOLLAR, - ACTIONS(7890), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(10092), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(10094), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264724,46 +266820,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227719] = 18, + [229513] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(10090), 1, sym_word, - ACTIONS(11436), 1, + ACTIONS(10096), 1, sym__comment_word, - ACTIONS(11472), 1, + ACTIONS(11504), 1, anon_sym_DOLLAR, - ACTIONS(7524), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(10092), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(10094), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264773,46 +266869,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227786] = 18, + [229580] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(2361), 1, + aux_sym_number_token1, + ACTIONS(2363), 1, + aux_sym_number_token2, + ACTIONS(2367), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2377), 1, + sym__brace_start, + ACTIONS(10738), 1, + sym_word, + ACTIONS(10740), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5019), 1, + ACTIONS(10746), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, - aux_sym_number_token1, - ACTIONS(5025), 1, - aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(10750), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(10752), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(10754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, - sym__brace_start, - ACTIONS(10356), 1, - sym_word, - ACTIONS(10364), 1, + ACTIONS(10758), 1, sym__comment_word, - ACTIONS(11474), 1, + ACTIONS(11506), 1, anon_sym_DOLLAR, - ACTIONS(5035), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(10744), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(10756), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10748), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(1444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264822,46 +266918,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227853] = 18, + [229647] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(2361), 1, + aux_sym_number_token1, + ACTIONS(2363), 1, + aux_sym_number_token2, + ACTIONS(2367), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2377), 1, + sym__brace_start, + ACTIONS(10738), 1, + sym_word, + ACTIONS(10740), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, - anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(10746), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, - aux_sym_number_token1, - ACTIONS(4817), 1, - aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(10750), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(10752), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(10754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, - sym__brace_start, - ACTIONS(11476), 1, - sym_word, - ACTIONS(11482), 1, + ACTIONS(10758), 1, sym__comment_word, - ACTIONS(4827), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11478), 2, + ACTIONS(11508), 1, + anon_sym_DOLLAR, + ACTIONS(10744), 2, sym_test_operator, sym__special_character, - ACTIONS(11480), 3, + ACTIONS(10756), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10748), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2780), 9, + STATE(1444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264871,46 +266967,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227920] = 18, + [229714] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7836), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(11452), 1, + ACTIONS(10598), 1, sym_word, - ACTIONS(11458), 1, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(11484), 1, + ACTIONS(11510), 1, anon_sym_DOLLAR, - ACTIONS(7852), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11454), 2, + ACTIONS(10600), 2, sym_test_operator, sym__special_character, - ACTIONS(11456), 3, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264920,46 +267016,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227987] = 18, + [229781] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(8178), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7836), 1, + ACTIONS(8184), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(8188), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(8190), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(8194), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(8208), 1, sym__brace_start, - ACTIONS(11452), 1, + ACTIONS(10598), 1, sym_word, - ACTIONS(11458), 1, + ACTIONS(10604), 1, sym__comment_word, - ACTIONS(11486), 1, + ACTIONS(11512), 1, anon_sym_DOLLAR, - ACTIONS(7852), 2, + ACTIONS(8200), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11454), 2, + ACTIONS(10600), 2, sym_test_operator, sym__special_character, - ACTIONS(11456), 3, + ACTIONS(10602), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264969,46 +267065,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228054] = 18, + [229848] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 1, + ACTIONS(3271), 1, + aux_sym_number_token1, + ACTIONS(3273), 1, + aux_sym_number_token2, + ACTIONS(3277), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3287), 1, + sym__brace_start, + ACTIONS(10504), 1, + sym_word, + ACTIONS(10506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(10508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(10512), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, - aux_sym_number_token1, - ACTIONS(459), 1, - aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(10516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(10518), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(10520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, - sym__brace_start, - ACTIONS(11488), 1, - sym_word, - ACTIONS(11490), 1, - anon_sym_DOLLAR, - ACTIONS(11496), 1, + ACTIONS(10524), 1, sym__comment_word, - ACTIONS(469), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11492), 2, + ACTIONS(11514), 1, + anon_sym_DOLLAR, + ACTIONS(10510), 2, sym_test_operator, sym__special_character, - ACTIONS(11494), 3, + ACTIONS(10522), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10514), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265018,46 +267114,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228121] = 18, + [229915] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8068), 1, + ACTIONS(2056), 1, + aux_sym_number_token1, + ACTIONS(2058), 1, + aux_sym_number_token2, + ACTIONS(2062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2076), 1, + sym__brace_start, + ACTIONS(8332), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(8334), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8076), 1, + ACTIONS(8338), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, - aux_sym_number_token1, - ACTIONS(8082), 1, - aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(8342), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(8344), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(8346), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, - sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(11432), 1, sym_word, - ACTIONS(10130), 1, + ACTIONS(11440), 1, sym__comment_word, - ACTIONS(11498), 1, + ACTIONS(11516), 1, anon_sym_DOLLAR, - ACTIONS(8092), 2, + ACTIONS(8348), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10126), 2, + ACTIONS(11436), 2, sym_test_operator, sym__special_character, - ACTIONS(10128), 3, + ACTIONS(11438), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(1522), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265067,46 +267163,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228188] = 18, - ACTIONS(3), 1, + [229982] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(10950), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(10952), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, - anon_sym_DOLLAR, - ACTIONS(5224), 1, + ACTIONS(10958), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(10962), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(10964), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(10966), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(10968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(10970), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(10972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(10978), 1, sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(11306), 1, + anon_sym_DOLLAR, + ACTIONS(11472), 1, + sym__special_character, + ACTIONS(11518), 1, sym_word, - ACTIONS(11506), 1, - sym__comment_word, - ACTIONS(5240), 2, + ACTIONS(11522), 1, + sym_test_operator, + STATE(6116), 1, + aux_sym__literal_repeat1, + STATE(6278), 1, + sym_concatenation, + ACTIONS(10974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11502), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11504), 3, - sym__bare_dollar, + ACTIONS(11520), 2, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(6104), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265116,95 +267214,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228255] = 18, + [230053] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(11242), 1, + anon_sym_LPAREN, + ACTIONS(11244), 1, + aux_sym__c_word_token1, + ACTIONS(11246), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(11250), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(11252), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(11258), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(11260), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(11262), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, - sym_word, - ACTIONS(10926), 1, - sym__comment_word, - ACTIONS(11508), 1, - anon_sym_DOLLAR, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10922), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10924), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(997), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(4181), 1, + sym__c_terminator, + STATE(6207), 1, + sym__c_expression, + STATE(6401), 1, + sym__c_variable_assignment, + STATE(7358), 1, + sym__for_body, + ACTIONS(11238), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3060), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [228322] = 18, + [230128] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 1, + ACTIONS(2050), 1, + anon_sym_DOLLAR, + ACTIONS(2056), 1, + aux_sym_number_token1, + ACTIONS(2058), 1, + aux_sym_number_token2, + ACTIONS(2062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2076), 1, + sym__brace_start, + ACTIONS(8332), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(8334), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(8338), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, - aux_sym_number_token1, - ACTIONS(459), 1, - aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(8342), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(8344), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(8346), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, - sym__brace_start, - ACTIONS(11488), 1, + ACTIONS(11432), 1, sym_word, - ACTIONS(11496), 1, + ACTIONS(11440), 1, sym__comment_word, - ACTIONS(11510), 1, - anon_sym_DOLLAR, - ACTIONS(469), 2, + ACTIONS(8348), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11492), 2, + ACTIONS(11436), 2, sym_test_operator, sym__special_character, - ACTIONS(11494), 3, + ACTIONS(11438), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(1522), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265214,46 +267316,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228389] = 18, - ACTIONS(3), 1, + [230195] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(3726), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(3730), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(3740), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, + ACTIONS(11524), 1, sym_word, - ACTIONS(10942), 1, - sym__comment_word, - ACTIONS(11512), 1, - anon_sym_DOLLAR, - ACTIONS(9664), 2, + ACTIONS(11526), 1, + sym__special_character, + ACTIONS(11530), 1, + sym_test_operator, + STATE(4282), 1, + aux_sym__literal_repeat1, + STATE(4603), 1, + sym_concatenation, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10940), 3, - sym__bare_dollar, + ACTIONS(11528), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(4374), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265263,46 +267367,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228456] = 18, - ACTIONS(3), 1, + [230266] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(3718), 1, + anon_sym_DOLLAR, + ACTIONS(3724), 1, + aux_sym_number_token1, + ACTIONS(3726), 1, + aux_sym_number_token2, + ACTIONS(3730), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3740), 1, + sym__brace_start, + ACTIONS(10424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(10426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4811), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, - aux_sym_number_token1, - ACTIONS(4817), 1, - aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, - sym__brace_start, - ACTIONS(11476), 1, + ACTIONS(11526), 1, + sym__special_character, + ACTIONS(11532), 1, sym_word, - ACTIONS(11482), 1, - sym__comment_word, - ACTIONS(11514), 1, - anon_sym_DOLLAR, - ACTIONS(4827), 2, + ACTIONS(11536), 1, + sym_test_operator, + STATE(4226), 1, + aux_sym__literal_repeat1, + STATE(4548), 1, + sym_concatenation, + ACTIONS(10440), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11478), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11480), 3, - sym__bare_dollar, + ACTIONS(11534), 2, sym_raw_string, sym_ansi_c_string, - STATE(2780), 9, + STATE(4410), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265312,46 +267418,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228523] = 18, + [230337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(3420), 1, + aux_sym_number_token1, + ACTIONS(3422), 1, + aux_sym_number_token2, + ACTIONS(3426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3436), 1, + sym__brace_start, + ACTIONS(10396), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(10398), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4811), 1, + ACTIONS(10402), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, - aux_sym_number_token1, - ACTIONS(4817), 1, - aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(10406), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(10408), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(10410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, - sym__brace_start, - ACTIONS(11476), 1, + ACTIONS(10904), 1, sym_word, - ACTIONS(11482), 1, + ACTIONS(10910), 1, sym__comment_word, - ACTIONS(11516), 1, + ACTIONS(11538), 1, anon_sym_DOLLAR, - ACTIONS(4827), 2, + ACTIONS(10412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11478), 2, + ACTIONS(10906), 2, sym_test_operator, sym__special_character, - ACTIONS(11480), 3, + ACTIONS(10908), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2780), 9, + STATE(4402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265361,48 +267467,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228590] = 20, - ACTIONS(71), 1, + [230404] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(6130), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(6138), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(6142), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(6144), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(6148), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(6150), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(6152), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(6158), 1, sym__brace_start, - ACTIONS(11518), 1, + ACTIONS(9958), 1, sym_word, - ACTIONS(11522), 1, - sym_test_operator, - STATE(1834), 1, - aux_sym__literal_repeat1, - STATE(2055), 1, - sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(9966), 1, + sym__comment_word, + ACTIONS(11540), 1, + anon_sym_DOLLAR, + ACTIONS(6154), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11520), 2, + ACTIONS(9962), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9964), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1669), 9, + STATE(3463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265412,46 +267516,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228661] = 18, + [230471] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(3420), 1, + aux_sym_number_token1, + ACTIONS(3422), 1, + aux_sym_number_token2, + ACTIONS(3426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3436), 1, + sym__brace_start, + ACTIONS(10396), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(10398), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, - anon_sym_DOLLAR, - ACTIONS(4331), 1, + ACTIONS(10402), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, - aux_sym_number_token1, - ACTIONS(4337), 1, - aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(10406), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(10408), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(10410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, - sym__brace_start, - ACTIONS(11524), 1, + ACTIONS(10904), 1, sym_word, - ACTIONS(11530), 1, + ACTIONS(10910), 1, sym__comment_word, - ACTIONS(4347), 2, + ACTIONS(11542), 1, + anon_sym_DOLLAR, + ACTIONS(10412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11526), 2, + ACTIONS(10906), 2, sym_test_operator, sym__special_character, - ACTIONS(11528), 3, + ACTIONS(10908), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(4402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265461,48 +267565,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228728] = 20, - ACTIONS(71), 1, + [230538] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(2778), 1, + aux_sym_number_token1, + ACTIONS(2780), 1, + aux_sym_number_token2, + ACTIONS(2784), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2794), 1, + sym__brace_start, + ACTIONS(10234), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(10236), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(10240), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(10244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(10246), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10248), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11532), 1, + ACTIONS(10762), 1, sym_word, - ACTIONS(11536), 1, - sym_test_operator, - STATE(1905), 1, - aux_sym__literal_repeat1, - STATE(2210), 1, - sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(10768), 1, + sym__comment_word, + ACTIONS(11544), 1, + anon_sym_DOLLAR, + ACTIONS(10250), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11534), 2, + ACTIONS(10764), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10766), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1676), 9, + STATE(4258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265512,46 +267614,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228799] = 18, + [230605] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(2778), 1, + aux_sym_number_token1, + ACTIONS(2780), 1, + aux_sym_number_token2, + ACTIONS(2784), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2794), 1, + sym__brace_start, + ACTIONS(10234), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(10236), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(10240), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, - aux_sym_number_token1, - ACTIONS(4849), 1, - aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(10244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(10246), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(10248), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11538), 1, + ACTIONS(10762), 1, sym_word, - ACTIONS(11544), 1, + ACTIONS(10768), 1, sym__comment_word, - ACTIONS(4859), 2, + ACTIONS(11546), 1, + anon_sym_DOLLAR, + ACTIONS(10250), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11540), 2, + ACTIONS(10764), 2, sym_test_operator, sym__special_character, - ACTIONS(11542), 3, + ACTIONS(10766), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5179), 9, + STATE(4258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265561,48 +267663,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228866] = 20, - ACTIONS(71), 1, + [230672] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3201), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3207), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3209), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3225), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(11014), 1, + sym_word, + ACTIONS(11016), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(11018), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, - sym__special_character, - ACTIONS(9980), 1, + ACTIONS(11024), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(11028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(11030), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(11032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11546), 1, - sym_word, - ACTIONS(11550), 1, + ACTIONS(11036), 1, + sym__comment_word, + ACTIONS(11022), 2, sym_test_operator, - STATE(1463), 1, - aux_sym__literal_repeat1, - STATE(1628), 1, - sym_concatenation, - ACTIONS(9990), 2, + sym__special_character, + ACTIONS(11034), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11548), 2, + ACTIONS(11026), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1280), 9, + STATE(1918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265612,48 +267712,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228937] = 20, + [230739] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, - sym__special_character, - ACTIONS(9980), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11552), 1, + ACTIONS(9932), 1, + sym__special_character, + ACTIONS(11548), 1, sym_word, - ACTIONS(11556), 1, + ACTIONS(11552), 1, sym_test_operator, - STATE(1387), 1, + STATE(1354), 1, aux_sym__literal_repeat1, - STATE(1635), 1, + STATE(1720), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11554), 2, + ACTIONS(11550), 2, sym_raw_string, sym_ansi_c_string, - STATE(1282), 9, + STATE(1067), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265663,95 +267763,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229008] = 18, - ACTIONS(3), 1, + [230810] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, - anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, - sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4271), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [229075] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(10202), 1, - sym_word, - ACTIONS(10204), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, - sym__comment_word, + ACTIONS(9932), 1, + sym__special_character, + ACTIONS(11554), 1, + sym_word, ACTIONS(11558), 1, - anon_sym_DOLLAR, - ACTIONS(10208), 2, sym_test_operator, - sym__special_character, - ACTIONS(10220), 2, + STATE(1371), 1, + aux_sym__literal_repeat1, + STATE(1736), 1, + sym_concatenation, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, - sym__bare_dollar, + ACTIONS(11556), 2, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(1070), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265761,48 +267814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229142] = 20, - ACTIONS(71), 1, + [230881] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(8388), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(8396), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(8400), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(8402), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(8404), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(8406), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(8408), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, + ACTIONS(8420), 1, sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10968), 1, - sym__special_character, - ACTIONS(11560), 1, + ACTIONS(10608), 1, sym_word, - ACTIONS(11564), 1, - sym_test_operator, - STATE(6117), 1, - aux_sym__literal_repeat1, - STATE(6359), 1, - sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(10614), 1, + sym__comment_word, + ACTIONS(11560), 1, + anon_sym_DOLLAR, + ACTIONS(8412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11562), 2, + ACTIONS(10610), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10612), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6093), 9, + STATE(5338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265812,99 +267863,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229213] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10644), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, - aux_sym_number_token1, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, - anon_sym_BQUOTE, - ACTIONS(10660), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4149), 1, - sym__c_terminator, - STATE(6267), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(7009), 1, - sym__for_body, - ACTIONS(10636), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [229288] = 18, + [230948] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(8388), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5224), 1, + ACTIONS(8396), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(8400), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(8402), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(8404), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(8406), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(8408), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(8420), 1, sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(10608), 1, sym_word, - ACTIONS(11506), 1, + ACTIONS(10614), 1, sym__comment_word, - ACTIONS(11566), 1, + ACTIONS(11562), 1, anon_sym_DOLLAR, - ACTIONS(5240), 2, + ACTIONS(8412), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11502), 2, + ACTIONS(10610), 2, sym_test_operator, sym__special_character, - ACTIONS(11504), 3, + ACTIONS(10612), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(5338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265914,46 +267912,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229355] = 18, + [231015] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(8214), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(8216), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5224), 1, + ACTIONS(8222), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(8226), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(8228), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(8230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(8232), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(8234), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(8246), 1, sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(10912), 1, sym_word, - ACTIONS(11506), 1, + ACTIONS(10918), 1, sym__comment_word, - ACTIONS(11568), 1, + ACTIONS(11564), 1, anon_sym_DOLLAR, - ACTIONS(5240), 2, + ACTIONS(8238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11502), 2, + ACTIONS(10914), 2, sym_test_operator, sym__special_character, - ACTIONS(11504), 3, + ACTIONS(10916), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(4505), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265963,46 +267961,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229422] = 18, - ACTIONS(3), 1, + [231082] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(2622), 1, + anon_sym_DOLLAR, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(10202), 1, - sym_word, - ACTIONS(10204), 1, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, - sym__comment_word, + ACTIONS(8472), 1, + sym__special_character, + ACTIONS(11566), 1, + sym_word, ACTIONS(11570), 1, - anon_sym_DOLLAR, - ACTIONS(10208), 2, sym_test_operator, - sym__special_character, - ACTIONS(10220), 2, + STATE(1910), 1, + aux_sym__literal_repeat1, + STATE(2190), 1, + sym_concatenation, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, - sym__bare_dollar, + ACTIONS(11568), 2, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(1708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266012,46 +268012,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229489] = 18, - ACTIONS(3), 1, + [231153] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8068), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8072), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR, - ACTIONS(8076), 1, - anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(8084), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8304), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8310), 1, + anon_sym_DQUOTE, + ACTIONS(8314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, - sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(8472), 1, + sym__special_character, + ACTIONS(11572), 1, sym_word, - ACTIONS(10130), 1, - sym__comment_word, - ACTIONS(8092), 2, + ACTIONS(11576), 1, + sym_test_operator, + STATE(1830), 1, + aux_sym__literal_repeat1, + STATE(2209), 1, + sym_concatenation, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10126), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10128), 3, - sym__bare_dollar, + ACTIONS(11574), 2, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(1715), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266061,46 +268063,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229556] = 18, + [231224] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(8214), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(8216), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4331), 1, + ACTIONS(8222), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(8226), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(8228), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(8230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(8232), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(8234), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, + ACTIONS(8246), 1, sym__brace_start, - ACTIONS(11524), 1, + ACTIONS(10912), 1, sym_word, - ACTIONS(11530), 1, + ACTIONS(10918), 1, sym__comment_word, - ACTIONS(11572), 1, + ACTIONS(11578), 1, anon_sym_DOLLAR, - ACTIONS(4347), 2, + ACTIONS(8238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11526), 2, + ACTIONS(10914), 2, sym_test_operator, sym__special_character, - ACTIONS(11528), 3, + ACTIONS(10916), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(4505), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266110,48 +268112,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229623] = 20, - ACTIONS(71), 1, + [231291] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(1490), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(1514), 1, + sym__brace_start, + ACTIONS(9904), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9906), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + ACTIONS(9914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9916), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(11574), 1, + ACTIONS(11208), 1, sym_word, - ACTIONS(11578), 1, - sym_test_operator, - STATE(1834), 1, - aux_sym__literal_repeat1, - STATE(2055), 1, - sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(11216), 1, + sym__comment_word, + ACTIONS(9920), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11576), 2, + ACTIONS(11212), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11214), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1374), 9, + STATE(1230), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266161,46 +268161,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229694] = 18, - ACTIONS(3), 1, + [231358] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(5226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4331), 1, + ACTIONS(5228), 1, + anon_sym_DOLLAR, + ACTIONS(5232), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(5236), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(5238), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(5240), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(5242), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(5244), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(5246), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, + ACTIONS(5252), 1, sym__brace_start, - ACTIONS(11524), 1, - sym_word, - ACTIONS(11530), 1, - sym__comment_word, ACTIONS(11580), 1, - anon_sym_DOLLAR, - ACTIONS(4347), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11526), 2, - sym_test_operator, + sym_word, + ACTIONS(11582), 1, sym__special_character, - ACTIONS(11528), 3, - sym__bare_dollar, + ACTIONS(11586), 1, + sym_test_operator, + STATE(5257), 1, + aux_sym__literal_repeat1, + STATE(5506), 1, + sym_concatenation, + ACTIONS(5248), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11584), 2, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(5171), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266210,46 +268212,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229761] = 18, + [231429] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(658), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(660), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5099), 1, + ACTIONS(666), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(670), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(672), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(674), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(676), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(678), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(680), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(690), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(10770), 1, sym_word, - ACTIONS(10092), 1, + ACTIONS(10776), 1, sym__comment_word, - ACTIONS(11582), 1, + ACTIONS(11588), 1, anon_sym_DOLLAR, - ACTIONS(5115), 2, + ACTIONS(682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, + ACTIONS(10772), 2, sym_test_operator, sym__special_character, - ACTIONS(10090), 3, + ACTIONS(10774), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(943), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266259,46 +268261,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229828] = 18, - ACTIONS(3), 1, + [231496] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(9808), 1, + sym__special_character, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(9818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11590), 1, sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(11584), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(11594), 1, + sym_test_operator, + STATE(1354), 1, + aux_sym__literal_repeat1, + STATE(1720), 1, + sym_concatenation, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10484), 3, - sym__bare_dollar, + ACTIONS(11592), 2, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(1328), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266308,46 +268312,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229895] = 18, - ACTIONS(3), 1, + [231567] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, + aux_sym_number_token1, + ACTIONS(1462), 1, + aux_sym_number_token2, + ACTIONS(1466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(9808), 1, + sym__special_character, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(11596), 1, sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(11586), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(11600), 1, + sym_test_operator, + STATE(1371), 1, + aux_sym__literal_repeat1, + STATE(1736), 1, + sym_concatenation, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, + ACTIONS(11598), 2, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1189), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266357,46 +268363,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229962] = 18, - ACTIONS(3), 1, + [231638] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5625), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(2985), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(2987), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(3001), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(8506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(8510), 1, + sym__special_character, + ACTIONS(8512), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(8518), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(8520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, + ACTIONS(11602), 1, sym_word, - ACTIONS(10478), 1, - sym__comment_word, - ACTIONS(9890), 2, + ACTIONS(11606), 1, + sym_test_operator, + STATE(1800), 1, + aux_sym__literal_repeat1, + STATE(2070), 1, + sym_concatenation, + ACTIONS(8522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10476), 3, - sym__bare_dollar, + ACTIONS(11604), 2, sym_raw_string, sym_ansi_c_string, - STATE(3342), 9, + STATE(1356), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266406,48 +268414,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230029] = 20, + [231709] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(5226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(5228), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(5232), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(5236), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(5238), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(5240), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(5242), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(5244), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(5246), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(5252), 1, sym__brace_start, - ACTIONS(8344), 1, + ACTIONS(11582), 1, sym__special_character, - ACTIONS(11588), 1, + ACTIONS(11608), 1, sym_word, - ACTIONS(11592), 1, + ACTIONS(11612), 1, sym_test_operator, - STATE(1905), 1, + STATE(5258), 1, aux_sym__literal_repeat1, - STATE(2210), 1, + STATE(5471), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(5248), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11590), 2, + ACTIONS(11610), 2, sym_raw_string, sym_ansi_c_string, - STATE(1456), 9, + STATE(5201), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266457,46 +268465,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230100] = 18, - ACTIONS(3), 1, + [231780] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(10950), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(10952), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4843), 1, + ACTIONS(10958), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(10962), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(10964), 1, aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(10966), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(10968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(10970), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(10972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, + ACTIONS(10978), 1, sym__brace_start, - ACTIONS(11538), 1, - sym_word, - ACTIONS(11544), 1, - sym__comment_word, - ACTIONS(11594), 1, + ACTIONS(11306), 1, anon_sym_DOLLAR, - ACTIONS(4859), 2, + ACTIONS(11472), 1, + sym__special_character, + ACTIONS(11614), 1, + sym_word, + ACTIONS(11618), 1, + sym_test_operator, + STATE(6143), 1, + aux_sym__literal_repeat1, + STATE(6291), 1, + sym_concatenation, + ACTIONS(10974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11540), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11542), 3, - sym__bare_dollar, + ACTIONS(11616), 2, sym_raw_string, sym_ansi_c_string, - STATE(5179), 9, + STATE(6103), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266506,46 +268516,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230167] = 18, + [231851] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11242), 1, + anon_sym_LPAREN, + ACTIONS(11244), 1, + aux_sym__c_word_token1, + ACTIONS(11246), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(11250), 1, + anon_sym_DQUOTE, + ACTIONS(11252), 1, + aux_sym_number_token1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(11256), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11258), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11260), 1, + anon_sym_BQUOTE, + ACTIONS(11262), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(4181), 1, + sym__c_terminator, + STATE(6207), 1, + sym__c_expression, + STATE(6401), 1, + sym__c_variable_assignment, + STATE(7391), 1, + sym__for_body, + ACTIONS(11238), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3060), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [231926] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(658), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(660), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4843), 1, + ACTIONS(666), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(670), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(672), 1, aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(674), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(676), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(678), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(680), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, + ACTIONS(690), 1, sym__brace_start, - ACTIONS(11538), 1, + ACTIONS(10770), 1, sym_word, - ACTIONS(11544), 1, + ACTIONS(10776), 1, sym__comment_word, - ACTIONS(11596), 1, + ACTIONS(11620), 1, anon_sym_DOLLAR, - ACTIONS(4859), 2, + ACTIONS(682), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11540), 2, + ACTIONS(10772), 2, sym_test_operator, sym__special_character, - ACTIONS(11542), 3, + ACTIONS(10774), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5179), 9, + STATE(943), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266555,46 +268618,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230234] = 18, + [231993] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(3271), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(3273), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(3287), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(10504), 1, + sym_word, + ACTIONS(10506), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(10508), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(10512), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(10516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(10518), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(10520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, - sym_word, - ACTIONS(10942), 1, + ACTIONS(10524), 1, sym__comment_word, - ACTIONS(11598), 1, + ACTIONS(11622), 1, anon_sym_DOLLAR, - ACTIONS(9664), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10938), 2, + ACTIONS(10510), 2, sym_test_operator, sym__special_character, - ACTIONS(10940), 3, + ACTIONS(10522), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10514), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(1878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266604,46 +268667,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230301] = 18, + [232060] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5773), 1, - aux_sym_number_token1, - ACTIONS(5775), 1, - aux_sym_number_token2, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, - sym__brace_start, - ACTIONS(10600), 1, - sym_word, - ACTIONS(10602), 1, + ACTIONS(4334), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(4342), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(4346), 1, + aux_sym_number_token1, + ACTIONS(4348), 1, + aux_sym_number_token2, + ACTIONS(4350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(4352), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4354), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(4356), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, + ACTIONS(4362), 1, + sym__brace_start, + ACTIONS(10134), 1, + sym_word, + ACTIONS(10140), 1, sym__comment_word, - ACTIONS(10608), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10620), 2, + ACTIONS(11624), 1, + anon_sym_DOLLAR, + ACTIONS(4358), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, + ACTIONS(10136), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10138), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266653,46 +268716,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230368] = 18, + [232127] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - aux_sym_number_token1, - ACTIONS(2548), 1, - aux_sym_number_token2, - ACTIONS(2552), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2564), 1, - sym__brace_start, - ACTIONS(10366), 1, - sym_word, - ACTIONS(10368), 1, + ACTIONS(8082), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, + ACTIONS(8090), 1, anon_sym_DQUOTE, - ACTIONS(10378), 1, + ACTIONS(8094), 1, + aux_sym_number_token1, + ACTIONS(8096), 1, + aux_sym_number_token2, + ACTIONS(8098), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(8100), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8102), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, + ACTIONS(8114), 1, + sym__brace_start, + ACTIONS(10780), 1, + sym_word, + ACTIONS(10786), 1, sym__comment_word, - ACTIONS(11600), 1, + ACTIONS(11626), 1, anon_sym_DOLLAR, - ACTIONS(10372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10384), 2, + ACTIONS(8106), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 3, + ACTIONS(10782), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10784), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1498), 9, + STATE(4248), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266702,46 +268765,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230435] = 18, + [232194] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 1, + ACTIONS(4334), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(4336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(449), 1, - anon_sym_DOLLAR, - ACTIONS(453), 1, + ACTIONS(4342), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, + ACTIONS(4346), 1, aux_sym_number_token1, - ACTIONS(459), 1, + ACTIONS(4348), 1, aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(4350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, + ACTIONS(4352), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(4354), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(4356), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, + ACTIONS(4362), 1, sym__brace_start, - ACTIONS(11488), 1, + ACTIONS(10134), 1, sym_word, - ACTIONS(11496), 1, + ACTIONS(10140), 1, sym__comment_word, - ACTIONS(469), 2, + ACTIONS(11628), 1, + anon_sym_DOLLAR, + ACTIONS(4358), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11492), 2, + ACTIONS(10136), 2, sym_test_operator, sym__special_character, - ACTIONS(11494), 3, + ACTIONS(10138), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266751,46 +268814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230502] = 18, + [232261] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(709), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(711), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(715), 1, + anon_sym_DOLLAR, + ACTIONS(719), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(723), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(725), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(729), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(733), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(739), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(9764), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9768), 1, sym__comment_word, - ACTIONS(11602), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9772), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9770), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266800,48 +268863,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230569] = 20, + [232328] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(2848), 1, + sym__special_character, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(2854), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(2856), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(2860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(2872), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(11604), 1, + ACTIONS(11630), 1, sym_word, - ACTIONS(11608), 1, + ACTIONS(11634), 1, sym_test_operator, - STATE(1834), 1, + STATE(2391), 1, aux_sym__literal_repeat1, - STATE(2055), 1, + STATE(2579), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(2866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11606), 2, + ACTIONS(11632), 2, sym_raw_string, sym_ansi_c_string, - STATE(2292), 9, + STATE(2229), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266851,46 +268914,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230640] = 18, + [232399] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(8082), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, - anon_sym_DOLLAR, - ACTIONS(5019), 1, + ACTIONS(8090), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(8094), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(8096), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(8098), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(8100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(8102), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, + ACTIONS(8114), 1, sym__brace_start, - ACTIONS(10356), 1, + ACTIONS(10780), 1, sym_word, - ACTIONS(10364), 1, + ACTIONS(10786), 1, sym__comment_word, - ACTIONS(5035), 2, + ACTIONS(11636), 1, + anon_sym_DOLLAR, + ACTIONS(8106), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(10782), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(10784), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(4248), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266900,48 +268963,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230707] = 20, + [232466] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(2844), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(2848), 1, + sym__special_character, + ACTIONS(2850), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(2854), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(2856), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(2860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(2872), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(11610), 1, + ACTIONS(11638), 1, sym_word, - ACTIONS(11614), 1, + ACTIONS(11642), 1, sym_test_operator, - STATE(1905), 1, + STATE(2397), 1, aux_sym__literal_repeat1, - STATE(2210), 1, + STATE(2585), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(2866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11612), 2, + ACTIONS(11640), 2, sym_raw_string, sym_ansi_c_string, - STATE(2295), 9, + STATE(2232), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266951,46 +269014,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230778] = 18, + [232537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(10448), 1, + anon_sym_LT_LT_LT, + STATE(5008), 1, + sym_herestring_redirect, + ACTIONS(4290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [232580] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_DOLLAR, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(2552), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2564), 1, + ACTIONS(2644), 1, sym__brace_start, - ACTIONS(10366), 1, - sym_word, - ACTIONS(10368), 1, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(10378), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, - sym__comment_word, - ACTIONS(11616), 1, - anon_sym_DOLLAR, - ACTIONS(10372), 2, - sym_test_operator, + ACTIONS(8532), 1, sym__special_character, - ACTIONS(10384), 2, + ACTIONS(11644), 1, + sym_word, + ACTIONS(11648), 1, + sym_test_operator, + STATE(1910), 1, + aux_sym__literal_repeat1, + STATE(2190), 1, + sym_concatenation, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 3, - sym__bare_dollar, + ACTIONS(11646), 2, sym_raw_string, sym_ansi_c_string, - STATE(1498), 9, + STATE(2352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267000,46 +269102,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230845] = 18, - ACTIONS(3), 1, + [232651] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(2622), 1, + anon_sym_DOLLAR, + ACTIONS(2628), 1, + aux_sym_number_token1, + ACTIONS(2630), 1, + aux_sym_number_token2, + ACTIONS(2634), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8304), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, - anon_sym_DOLLAR, - ACTIONS(5327), 1, + ACTIONS(8310), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(8314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8316), 1, + anon_sym_BQUOTE, + ACTIONS(8318), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8532), 1, + sym__special_character, + ACTIONS(11650), 1, + sym_word, + ACTIONS(11654), 1, + sym_test_operator, + STATE(1830), 1, + aux_sym__literal_repeat1, + STATE(2209), 1, + sym_concatenation, + ACTIONS(8320), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11652), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2355), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [232722] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_DOLLAR, + ACTIONS(2628), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(2630), 1, aux_sym_number_token2, - ACTIONS(5335), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(2644), 1, + sym__brace_start, + ACTIONS(8304), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8310), 1, + anon_sym_DQUOTE, + ACTIONS(8314), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(11250), 1, + ACTIONS(11178), 1, sym_word, - ACTIONS(11258), 1, + ACTIONS(11186), 1, sym__comment_word, - ACTIONS(5343), 2, + ACTIONS(8320), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(11182), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(11184), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267049,48 +269202,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230912] = 20, + [232789] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, + ACTIONS(9952), 1, sym__special_character, - ACTIONS(11618), 1, + ACTIONS(11656), 1, sym_word, - ACTIONS(11622), 1, + ACTIONS(11660), 1, sym_test_operator, - STATE(1463), 1, + STATE(1354), 1, aux_sym__literal_repeat1, - STATE(1628), 1, + STATE(1720), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11620), 2, + ACTIONS(11658), 2, sym_raw_string, sym_ansi_c_string, - STATE(1899), 9, + STATE(1940), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267100,48 +269253,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230983] = 20, + [232860] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9806), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, + ACTIONS(9952), 1, sym__special_character, - ACTIONS(11624), 1, + ACTIONS(11662), 1, sym_word, - ACTIONS(11628), 1, + ACTIONS(11666), 1, sym_test_operator, - STATE(1387), 1, + STATE(1371), 1, aux_sym__literal_repeat1, - STATE(1635), 1, + STATE(1736), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9820), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11626), 2, + ACTIONS(11664), 2, sym_raw_string, sym_ansi_c_string, - STATE(1901), 9, + STATE(1942), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267151,48 +269304,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231054] = 20, + [232931] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(10950), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(10952), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(10958), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(10962), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(10964), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(10966), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(10968), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(10970), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(10972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, + ACTIONS(10978), 1, sym__brace_start, - ACTIONS(10962), 1, + ACTIONS(11306), 1, anon_sym_DOLLAR, - ACTIONS(10968), 1, + ACTIONS(11472), 1, sym__special_character, - ACTIONS(11630), 1, + ACTIONS(11668), 1, sym_word, - ACTIONS(11634), 1, + ACTIONS(11672), 1, sym_test_operator, - STATE(6133), 1, + STATE(6124), 1, aux_sym__literal_repeat1, - STATE(6373), 1, + STATE(6304), 1, sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(10974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11632), 2, + ACTIONS(11670), 2, sym_raw_string, sym_ansi_c_string, - STATE(6106), 9, + STATE(6100), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267202,52 +269355,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231125] = 22, + [233002] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, + ACTIONS(11242), 1, anon_sym_LPAREN, - ACTIONS(10642), 1, + ACTIONS(11244), 1, aux_sym__c_word_token1, - ACTIONS(10644), 1, + ACTIONS(11246), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, + ACTIONS(11250), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(11252), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(11256), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(11258), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(11260), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(11262), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(4149), 1, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(4181), 1, sym__c_terminator, - STATE(6267), 1, + STATE(6207), 1, sym__c_expression, - STATE(6395), 1, + STATE(6401), 1, sym__c_variable_assignment, - STATE(6861), 1, + STATE(7029), 1, sym__for_body, - ACTIONS(10636), 2, + ACTIONS(11238), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(10638), 2, + ACTIONS(11240), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2902), 7, + STATE(3060), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -267255,193 +269408,48 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231200] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, - anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, - sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(11636), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4271), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231267] = 18, - ACTIONS(3), 1, + [233077] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(4922), 1, anon_sym_DOLLAR, - ACTIONS(4546), 1, + ACTIONS(4926), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(4930), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(4932), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(4934), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4936), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(4938), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(4940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, + ACTIONS(4946), 1, sym__brace_start, - ACTIONS(10388), 1, - sym_word, - ACTIONS(10396), 1, - sym__comment_word, - ACTIONS(4562), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10392), 2, - sym_test_operator, + ACTIONS(10008), 1, sym__special_character, - ACTIONS(10394), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2580), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231334] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(11674), 1, sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(11638), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(11678), 1, sym_test_operator, - sym__special_character, - ACTIONS(10484), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2224), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231401] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4072), 1, - anon_sym_DQUOTE, - ACTIONS(4076), 1, - aux_sym_number_token1, - ACTIONS(4078), 1, - aux_sym_number_token2, - ACTIONS(4080), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, - anon_sym_BQUOTE, - ACTIONS(4086), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(10174), 1, - sym_word, - ACTIONS(10182), 1, - sym__comment_word, - ACTIONS(11640), 1, - anon_sym_DOLLAR, - ACTIONS(4088), 2, + STATE(5140), 1, + aux_sym__literal_repeat1, + STATE(5421), 1, + sym_concatenation, + ACTIONS(4942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10180), 3, - sym__bare_dollar, + ACTIONS(11676), 2, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(5058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267451,48 +269459,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231468] = 20, + [233148] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(4461), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(4463), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(4465), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, + ACTIONS(4467), 1, sym__special_character, - ACTIONS(5099), 1, + ACTIONS(4469), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(4473), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(4475), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(4479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(4481), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(4489), 1, sym__brace_start, - ACTIONS(11642), 1, + ACTIONS(11680), 1, sym_word, - ACTIONS(11646), 1, + ACTIONS(11684), 1, sym_test_operator, - STATE(5299), 1, + STATE(2798), 1, aux_sym__literal_repeat1, - STATE(5521), 1, + STATE(2925), 1, sym_concatenation, - ACTIONS(5115), 2, + ACTIONS(4485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11644), 2, + ACTIONS(11682), 2, sym_raw_string, sym_ansi_c_string, - STATE(5197), 9, + STATE(2416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267502,19 +269510,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231539] = 6, + [233219] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11697), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11699), 1, + sym_file_descriptor, + ACTIONS(11691), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11694), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4139), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11688), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11686), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [233265] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11464), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(11702), 1, sym__concat, - STATE(4142), 1, + STATE(4146), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1209), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 23, + ACTIONS(1207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267537,20 +269584,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [231581] = 6, + [233307] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(4288), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11704), 1, + sym_file_descriptor, + ACTIONS(4255), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4259), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4286), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2329), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9878), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [233359] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11464), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(11706), 1, sym__concat, - STATE(4239), 1, + STATE(4146), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(1215), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(1213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267560,6 +269648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -267572,21 +269661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [231623] = 6, + [233401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(11364), 1, sym__concat, - STATE(4162), 1, + STATE(4159), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 23, + ACTIONS(4682), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267610,20 +269697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [231665] = 6, + [233443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(11464), 1, aux_sym_concatenation_token1, - ACTIONS(11652), 1, + ACTIONS(11466), 1, sym__concat, - STATE(4143), 1, + STATE(4140), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(5294), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 22, + ACTIONS(5292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267646,20 +269733,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231707] = 6, + [233485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(11464), 1, aux_sym_concatenation_token1, - ACTIONS(11654), 1, + ACTIONS(11466), 1, sym__concat, - STATE(4143), 1, + STATE(4142), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(5298), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(5296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267682,19 +269769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231749] = 6, + [233527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11708), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(11711), 1, sym__concat, - STATE(4142), 1, + STATE(4146), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1237), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 23, + ACTIONS(1235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267717,21 +269805,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [231791] = 6, + [233569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11660), 1, + ACTIONS(11714), 1, + aux_sym_concatenation_token1, + ACTIONS(11716), 1, + sym__concat, + STATE(4266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, + sym_file_descriptor, sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(11658), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [233611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11362), 1, + aux_sym_concatenation_token1, + ACTIONS(11364), 1, + sym__concat, + STATE(4161), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4139), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 22, + ACTIONS(4686), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267754,41 +269876,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [231833] = 13, + anon_sym_LT_LT_LT, + [233653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11667), 1, + ACTIONS(9882), 1, anon_sym_LT_LT_LT, - ACTIONS(11669), 1, + ACTIONS(11720), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11722), 1, sym_file_descriptor, - STATE(4950), 1, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4936), 3, + sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(9878), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11718), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [233699] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11724), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4290), 2, + ACTIONS(4294), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 17, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_AMP, - ACTIONS(4292), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [233743] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_RPAREN, + ACTIONS(4366), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11730), 1, + anon_sym_LT_LT_LT, + ACTIONS(11732), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4491), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4294), 2, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11665), 2, + ACTIONS(11728), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(2503), 3, + ACTIONS(4364), 3, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, + STATE(4413), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -267797,23 +269995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [231889] = 8, + [233799] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, + ACTIONS(10554), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11681), 1, + ACTIONS(11740), 1, anon_sym_LT_LT_LT, - ACTIONS(11684), 1, + ACTIONS(11743), 1, sym_file_descriptor, - ACTIONS(11676), 2, + ACTIONS(11737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4141), 3, + STATE(4152), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11673), 8, + ACTIONS(11734), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -267822,32 +270021,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11671), 12, + ACTIONS(10546), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [231935] = 6, + [233845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11746), 1, + aux_sym_concatenation_token1, + ACTIONS(11749), 1, + sym__concat, + STATE(4153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [233887] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 1, + ts_builtin_sym_end, + ACTIONS(4636), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11724), 1, + anon_sym_LT_LT_LT, + ACTIONS(11756), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4502), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4634), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11752), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [233943] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11724), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4290), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [233985] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11758), 1, aux_sym_concatenation_token1, - ACTIONS(11687), 1, + ACTIONS(11760), 1, sym__concat, - STATE(4166), 1, + STATE(4230), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 23, + ACTIONS(1231), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267857,7 +270170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -267871,20 +270183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [231977] = 6, + sym__special_character, + [234027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11689), 1, - aux_sym_concatenation_token1, - ACTIONS(11692), 1, - sym__concat, - STATE(4143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, - sym_file_descriptor, + ACTIONS(11766), 1, sym_variable_name, + STATE(6657), 1, + sym_subscript, + ACTIONS(11764), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + STATE(4157), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11762), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267907,20 +270220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232019] = 6, + [234069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, + ACTIONS(11769), 1, aux_sym_concatenation_token1, - ACTIONS(11697), 1, + ACTIONS(11771), 1, sym__concat, - STATE(4212), 1, + STATE(4286), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1233), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(1231), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267930,6 +270242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -267943,20 +270256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, sym__special_character, - [232061] = 6, + [234111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11699), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11702), 1, + ACTIONS(11773), 1, sym__concat, - STATE(4145), 1, + STATE(4169), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(1209), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1207), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267966,8 +270278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -267978,94 +270292,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [232103] = 7, + [234153] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, + ACTIONS(9882), 1, anon_sym_LT_LT_LT, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(11722), 1, sym_file_descriptor, + ACTIONS(11777), 1, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4742), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(9878), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [232147] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, - sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 23, + ACTIONS(11775), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [232189] = 6, + [234199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11268), 1, + ACTIONS(11779), 1, sym__concat, - STATE(4137), 1, + STATE(4169), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(1215), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 22, + ACTIONS(1213), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268088,92 +270365,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232231] = 21, + anon_sym_LT_LT_LT, + [234241] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, - aux_sym_number_token1, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(4261), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11707), 1, + ACTIONS(4854), 1, aux_sym_heredoc_redirect_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4600), 1, - sym__c_terminator, - STATE(6242), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11705), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [232303] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11667), 1, + ACTIONS(11785), 1, anon_sym_LT_LT_LT, - ACTIONS(11669), 1, + ACTIONS(11787), 1, sym_file_descriptor, - STATE(4950), 1, + STATE(4765), 1, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4292), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4294), 2, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4513), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11665), 2, + ACTIONS(4852), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11783), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4255), 3, + ACTIONS(4850), 3, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, + STATE(4376), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -268182,74 +270409,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [232359] = 21, + [234297] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, - aux_sym_number_token1, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(2329), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11711), 1, - aux_sym_heredoc_redirect_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4508), 1, - sym__c_terminator, - STATE(6240), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11709), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [232431] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11719), 1, + ACTIONS(4914), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11721), 1, + ACTIONS(11785), 1, anon_sym_LT_LT_LT, - ACTIONS(11723), 1, + ACTIONS(11787), 1, sym_file_descriptor, - ACTIONS(11717), 2, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4852), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11783), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4141), 3, + ACTIONS(4912), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4376), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11715), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -268258,157 +270452,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11713), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [232477] = 6, + [234353] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, + ACTIONS(9882), 1, anon_sym_LT_LT_LT, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(11722), 1, sym_file_descriptor, + ACTIONS(11791), 1, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4746), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(9878), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [232519] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, - aux_sym_number_token1, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, - anon_sym_BQUOTE, - ACTIONS(10660), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11727), 1, - aux_sym_heredoc_redirect_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4673), 1, - sym__c_terminator, - STATE(6188), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11725), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [232591] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11731), 1, - sym__concat, - STATE(4194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(11789), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [232633] = 6, + [234399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11736), 1, + ACTIONS(11364), 1, sym__concat, - STATE(4156), 1, + STATE(4159), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(4650), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(4648), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268418,8 +270512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268429,20 +270525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [232675] = 6, + anon_sym_LT_LT_LT, + [234441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(11364), 1, sym__concat, - STATE(4162), 1, + STATE(4159), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(5701), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 23, + ACTIONS(5699), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268466,19 +270562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [232717] = 6, + [234483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(11364), 1, sym__concat, - STATE(4142), 1, + STATE(4161), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 23, + ACTIONS(2082), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268502,68 +270598,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [232759] = 6, + [234525] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11743), 1, - sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(11741), 2, - sym_file_descriptor, + ACTIONS(4263), 1, aux_sym_heredoc_redirect_token1, - STATE(4139), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 22, + ACTIONS(11704), 1, + sym_file_descriptor, + ACTIONS(4253), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4255), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4257), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(4259), 2, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4261), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [232801] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(11749), 1, - sym_variable_name, - STATE(5555), 1, - sym_string, - ACTIONS(11747), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11745), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9878), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -268572,23 +270639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [232847] = 6, + [234577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11793), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(11796), 1, sym__concat, - STATE(4162), 1, + STATE(4169), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(1237), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 23, + ACTIONS(1235), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268612,19 +270675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [232889] = 6, + [234619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11751), 1, + ACTIONS(11364), 1, sym__concat, - STATE(4166), 1, + STATE(4159), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(5709), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 23, + ACTIONS(5707), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268648,20 +270711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [232931] = 6, + [234661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11268), 1, + ACTIONS(11364), 1, sym__concat, - STATE(4136), 1, + STATE(4161), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, + ACTIONS(2139), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 22, + ACTIONS(2137), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268684,35 +270746,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232973] = 8, + anon_sym_LT_LT_LT, + [234703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(11730), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(11749), 1, - sym_variable_name, - STATE(5555), 1, - sym_string, - ACTIONS(11747), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11745), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 14, + aux_sym_heredoc_redirect_token1, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 18, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -268720,25 +270783,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [233019] = 6, + anon_sym_LT_LT_DASH, + [234747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, - sym__concat, - STATE(4142), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 23, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -268748,7 +270811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -268757,34 +270819,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [233061] = 6, + [234787] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11753), 1, - aux_sym_concatenation_token1, - ACTIONS(11756), 1, - sym__concat, - STATE(4166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(11785), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -268793,52 +270855,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [233103] = 3, + anon_sym_BQUOTE, + [234831] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(4498), 1, + ts_builtin_sym_end, + ACTIONS(4504), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, - anon_sym_SEMI, + ACTIONS(11724), 1, + anon_sym_LT_LT_LT, + ACTIONS(11756), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4502), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4500), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11752), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233138] = 6, + [234887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(11362), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(11364), 1, sym__concat, - STATE(4204), 1, + STATE(4161), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(4652), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268861,20 +270934,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233179] = 6, + anon_sym_LT_LT_LT, + [234929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(11799), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(11802), 1, sym__concat, - STATE(4488), 1, + STATE(4177), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1237), 4, sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268884,6 +270959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -268894,16 +270970,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, anon_sym_BQUOTE, - [233220] = 3, + [234971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(11785), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4290), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268913,10 +270996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268926,96 +271006,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [233255] = 3, + anon_sym_BQUOTE, + [235013] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(11242), 1, + anon_sym_LPAREN, + ACTIONS(11244), 1, + aux_sym__c_word_token1, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(11250), 1, + anon_sym_DQUOTE, + ACTIONS(11252), 1, + aux_sym_number_token1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(11256), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11258), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11260), 1, + anon_sym_BQUOTE, + ACTIONS(11262), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11807), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(4605), 1, + sym__c_terminator, + STATE(6169), 1, + sym__c_expression, + STATE(6401), 1, + sym__c_variable_assignment, + ACTIONS(11240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11805), 2, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + STATE(3060), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235085] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11318), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11813), 1, + anon_sym_LT_LT_LT, + ACTIONS(11815), 1, + sym_file_descriptor, + ACTIONS(11811), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4152), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11809), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11312), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233290] = 6, + [235131] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, - sym_file_descriptor, + ACTIONS(11242), 1, + anon_sym_LPAREN, + ACTIONS(11244), 1, + aux_sym__c_word_token1, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(11250), 1, + anon_sym_DQUOTE, + ACTIONS(11252), 1, + aux_sym_number_token1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(11256), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11258), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11260), 1, + anon_sym_BQUOTE, + ACTIONS(11262), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11819), 1, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 20, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(4657), 1, + sym__c_terminator, + STATE(6172), 1, + sym__c_expression, + STATE(6401), 1, + sym__c_variable_assignment, + ACTIONS(11240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11817), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3060), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235203] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11242), 1, + anon_sym_LPAREN, + ACTIONS(11244), 1, + aux_sym__c_word_token1, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(11250), 1, + anon_sym_DQUOTE, + ACTIONS(11252), 1, + aux_sym_number_token1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(11256), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11258), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11260), 1, + anon_sym_BQUOTE, + ACTIONS(11262), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11823), 1, + aux_sym_heredoc_redirect_token1, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(4655), 1, + sym__c_terminator, + STATE(6271), 1, + sym__c_expression, + STATE(6401), 1, + sym__c_variable_assignment, + ACTIONS(11240), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11821), 2, anon_sym_SEMI, + anon_sym_AMP, + STATE(3060), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235275] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4261), 1, + anon_sym_RPAREN, + ACTIONS(4320), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11730), 1, + anon_sym_LT_LT_LT, + ACTIONS(11732), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4491), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4314), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [233331] = 3, + [235331] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1197), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, - anon_sym_SEMI, + ACTIONS(5998), 1, + anon_sym_DQUOTE, + ACTIONS(11829), 1, + sym_variable_name, + STATE(5547), 1, + sym_string, + ACTIONS(11827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11825), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -269023,88 +271277,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [233366] = 6, + [235377] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11765), 1, - sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(11704), 1, sym_file_descriptor, + ACTIONS(11833), 1, aux_sym_heredoc_redirect_token1, - STATE(4205), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(4259), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4139), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9878), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [233407] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 23, + ACTIONS(11831), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [233446] = 3, + [235423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(11730), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4290), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269125,30 +271353,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [233481] = 3, + [235465] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1191), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, - anon_sym_SEMI, + ACTIONS(5998), 1, + anon_sym_DQUOTE, + ACTIONS(11829), 1, + sym_variable_name, + STATE(5547), 1, + sym_string, + ACTIONS(11827), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11825), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -269156,19 +271389,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [233516] = 3, + [235511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(11839), 1, sym_variable_name, + STATE(6657), 1, + sym_subscript, + ACTIONS(11837), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + STATE(4157), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11835), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269191,20 +271427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233551] = 6, + [235553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11769), 1, - aux_sym_concatenation_token1, - ACTIONS(11772), 1, - sym__concat, - STATE(4179), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(4294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269227,38 +271461,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233592] = 11, + [235591] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, + ACTIONS(11318), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(11845), 1, + anon_sym_LT_LT_LT, + ACTIONS(11847), 1, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4169), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4171), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(10932), 2, + ACTIONS(11843), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4182), 3, + STATE(4276), 4, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2503), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10930), 8, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11841), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -269267,18 +271487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [233643] = 5, + ACTIONS(11312), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [235636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 1, - sym__special_character, - STATE(4181), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269301,24 +271529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233682] = 8, + aux_sym_concatenation_token1, + [235671] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11775), 1, - sym_file_descriptor, - ACTIONS(11782), 1, + ACTIONS(10448), 1, + anon_sym_LT_LT_LT, + ACTIONS(11791), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(10932), 2, + ACTIONS(11849), 1, + sym_file_descriptor, + ACTIONS(10446), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4269), 3, + STATE(5001), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10930), 8, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(10444), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -269327,26 +271555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11780), 10, + ACTIONS(11789), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_esac, + anon_sym_LT_LT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [233727] = 3, + anon_sym_LT_LT_DASH, + [235716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(1237), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(1235), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269370,18 +271599,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [233762] = 4, + [235751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [235786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11784), 1, + ACTIONS(11851), 1, sym__concat, - ACTIONS(6653), 5, + ACTIONS(6920), 5, anon_sym_COMMA, anon_sym_CARET, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_COLON, - ACTIONS(6651), 21, + ACTIONS(6918), 21, sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, @@ -269403,19 +271664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_PERCENT, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - [233799] = 6, + [235823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269425,8 +271682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269436,55 +271695,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [233840] = 8, + aux_sym_concatenation_token1, + [235858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11794), 1, - sym_file_descriptor, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4908), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11790), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [233885] = 3, + ACTIONS(11853), 1, + sym__concat, + ACTIONS(6926), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6924), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [235895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269505,81 +271758,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [233920] = 3, + [235930] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(10448), 1, + anon_sym_LT_LT_LT, + ACTIONS(11720), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11849), 1, + sym_file_descriptor, + ACTIONS(10446), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5023), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(10444), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [233955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 24, + ACTIONS(11718), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [233990] = 3, + [235975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4361), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1231), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269589,7 +271821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -269601,17 +271832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234025] = 3, + sym__special_character, + [236016] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, - ts_builtin_sym_end, + STATE(4440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269633,29 +271867,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234060] = 3, + sym__special_character, + [236057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(11859), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -269664,22 +271904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234095] = 6, + [236100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(11859), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4290), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269690,8 +271930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269701,20 +271939,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [234136] = 6, + [236141] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11861), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4316), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4318), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4364), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(10446), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2329), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [236192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(11796), 1, + ACTIONS(11865), 1, sym__concat, - STATE(4179), 1, + STATE(4437), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1233), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 22, + ACTIONS(1231), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269724,10 +272002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269737,15 +272012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234177] = 3, + sym__special_character, + anon_sym_BQUOTE, + [236233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269766,17 +272044,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [234212] = 3, + [236268] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(11697), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11876), 1, + sym_file_descriptor, + ACTIONS(11870), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11873), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4207), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11867), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11686), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [236313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 24, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269786,10 +272101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269801,15 +272114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [234247] = 3, + anon_sym_BQUOTE, + [236348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, sym__concat, - sym_variable_name, + STATE(4230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(5699), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269819,7 +272137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -269832,18 +272149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234282] = 5, + anon_sym_LT_LT_LT, + [236389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(11879), 1, + aux_sym_concatenation_token1, + ACTIONS(11882), 1, + sym__concat, + STATE(4210), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 23, + ACTIONS(1235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269853,7 +272173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -269866,16 +272185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [234321] = 3, + [236430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, sym__concat, - sym_variable_name, + STATE(4230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(4682), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269885,7 +272207,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -269898,16 +272219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234356] = 3, + anon_sym_LT_LT_LT, + [236471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1250), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(1248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269917,10 +272238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269930,17 +272249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [234391] = 3, + anon_sym_BQUOTE, + [236506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269963,57 +272284,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [234426] = 13, + [236541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11802), 1, + ACTIONS(1306), 5, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [234481] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [236576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1254), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270037,19 +272348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [234516] = 6, + [236611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11804), 1, - sym__concat, - STATE(4179), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1266), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270072,20 +272379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234557] = 6, + aux_sym_concatenation_token1, + [236646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11806), 1, - sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11771), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4205), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 21, + ACTIONS(4682), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270095,6 +272402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -270107,14 +272415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234598] = 3, + [236687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, sym__concat, + STATE(4277), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 24, + ACTIONS(2137), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270124,7 +272437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -270138,16 +272450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [234633] = 3, + [236728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, sym__concat, - ts_builtin_sym_end, + STATE(4277), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(2082), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270157,8 +272472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270169,29 +272485,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234668] = 3, + [236769] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -270200,18 +272519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234703] = 3, + [236808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1282), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1280), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270221,8 +272536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270234,20 +272551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234738] = 6, + [236843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1274), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270257,9 +272570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270269,22 +272581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [234779] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [236878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 20, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270294,7 +272601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270304,21 +272614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [234820] = 6, + aux_sym_concatenation_token1, + [236913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, - aux_sym_concatenation_token1, - ACTIONS(11811), 1, - sym__concat, - STATE(4244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(1250), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(1248), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270328,6 +272632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -270340,54 +272645,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [234861] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [236948] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(4798), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, - anon_sym_SEMI, + ACTIONS(11859), 1, + anon_sym_LT_LT_LT, + ACTIONS(11889), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4796), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [234900] = 6, + [237001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11815), 1, - aux_sym_concatenation_token1, - ACTIONS(11818), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(11891), 1, + sym__special_character, + STATE(4284), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(4682), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270408,48 +272720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [234941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11821), 1, - sym__concat, - ACTIONS(6641), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6639), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [234978] = 3, + [237040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 24, + ACTIONS(1288), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270474,52 +272754,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [235013] = 8, + [237075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11827), 1, - anon_sym_LT_LT_LT, - ACTIONS(11829), 1, + ACTIONS(11893), 1, + aux_sym_concatenation_token1, + ACTIONS(11895), 1, + sym__concat, + STATE(4512), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, sym_file_descriptor, - ACTIONS(11825), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4246), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11823), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11713), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235058] = 3, + sym__special_character, + [237116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, - sym_file_descriptor, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11771), 1, sym__concat, - ts_builtin_sym_end, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(5699), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270529,8 +272811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270540,19 +272824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [235093] = 3, + [237157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11897), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4255), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270562,8 +272846,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270573,18 +272858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [235128] = 3, + anon_sym_LT_LT_LT, + [237198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11865), 1, sym__concat, + STATE(4362), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1231), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270605,21 +272893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [235163] = 6, + sym__special_character, + [237239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(11769), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(11771), 1, sym__concat, - STATE(4194), 1, + STATE(4293), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(2082), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270642,20 +272929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235204] = 6, + [237280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, - aux_sym_concatenation_token1, - ACTIONS(11831), 1, - sym__concat, - STATE(4244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1282), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270665,9 +272947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270677,19 +272958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235245] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [237315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11833), 1, - sym__special_character, - STATE(4294), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 4, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270710,16 +272991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [235284] = 3, + [237350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(11899), 1, + sym__special_character, + STATE(4325), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 4, sym_file_descriptor, - sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(5292), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270729,10 +273015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270742,41 +273026,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [235319] = 13, + anon_sym_BQUOTE, + [237389] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 1, + ACTIONS(10448), 1, anon_sym_LT_LT_LT, - ACTIONS(11841), 1, + ACTIONS(11777), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11849), 1, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, + ACTIONS(10446), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, + STATE(5005), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(10444), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -270785,14 +273052,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [235374] = 3, + ACTIONS(11775), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [237434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(4294), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 24, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270802,7 +273085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -270815,17 +273097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [235409] = 3, + [237471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270846,19 +273127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [235444] = 3, + [237506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1284), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270879,17 +273158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [235479] = 3, + [237541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270899,8 +273179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270910,22 +273192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [235514] = 6, + [237576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(1262), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(1260), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270935,6 +273211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -270947,47 +273224,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [235555] = 3, + aux_sym_concatenation_token1, + [237611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(11905), 1, + anon_sym_LT_LT_LT, + ACTIONS(11907), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(11318), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11903), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4318), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11901), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11312), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [235590] = 3, + [237656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, - sym_file_descriptor, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11771), 1, sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 24, + ACTIONS(5707), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271010,19 +273297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [235625] = 4, + [237697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11771), 1, + sym__concat, + STATE(4293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 22, + ACTIONS(2137), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271045,54 +273332,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235662] = 6, + [237738] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, + ACTIONS(4320), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(11861), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4314), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4316), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4318), 2, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + ACTIONS(10446), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4261), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [235703] = 6, + [237789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11731), 1, - sym__concat, - STATE(4204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271115,54 +273403,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235744] = 5, + aux_sym_concatenation_token1, + [237824] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(4769), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, - anon_sym_SEMI, + ACTIONS(11859), 1, + anon_sym_LT_LT_LT, + ACTIONS(11889), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4765), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [235783] = 6, + [237877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, - aux_sym_concatenation_token1, - ACTIONS(11697), 1, - sym__concat, - STATE(4222), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(1237), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(1235), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271172,6 +273463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -271184,23 +273476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235824] = 5, + aux_sym_concatenation_token1, + [237912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 20, + ACTIONS(1304), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -271210,6 +273498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -271218,19 +273507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [235863] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [237947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11847), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4292), 1, + STATE(4519), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 22, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271241,8 +273532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271253,14 +273542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [235904] = 3, + sym__special_character, + anon_sym_BQUOTE, + [237988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(1262), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 24, + ACTIONS(1260), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271270,10 +273562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271285,15 +273575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [235939] = 3, + anon_sym_BQUOTE, + [238023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1268), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271317,15 +273608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [235974] = 3, + [238058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1262), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1260), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271348,17 +273638,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [236009] = 3, + [238093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(11909), 1, + aux_sym_concatenation_token1, + ACTIONS(11912), 1, sym__concat, - sym_variable_name, + STATE(4254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271379,22 +273674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [236044] = 6, + [238134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11849), 1, + ACTIONS(11915), 1, aux_sym_concatenation_token1, - ACTIONS(11852), 1, + ACTIONS(11918), 1, sym__concat, - STATE(4244), 1, + STATE(4255), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(1237), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(1235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271416,17 +273709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236085] = 5, + anon_sym_LT_LT_LT, + [238175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 23, + ACTIONS(1292), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271450,56 +273741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236124] = 8, + aux_sym_concatenation_token1, + [238210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11861), 1, - anon_sym_LT_LT_LT, - ACTIONS(11864), 1, + ACTIONS(1286), 4, sym_file_descriptor, - ACTIONS(11858), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4246), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11855), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11671), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [236169] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, sym__concat, - STATE(4239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, - sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1284), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271509,6 +273760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -271521,15 +273773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [236210] = 3, + aux_sym_concatenation_token1, + [238245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 24, + ACTIONS(1235), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271554,16 +273806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [236245] = 3, + [238280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271586,15 +273838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [236280] = 3, + [238315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271604,10 +273857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271618,19 +273869,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [236315] = 6, + anon_sym_BQUOTE, + [238350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(11921), 1, + sym__special_character, + STATE(4334), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(5699), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271640,6 +273890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -271653,49 +273904,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236356] = 3, + [238389] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(4848), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 24, - anon_sym_SEMI, + ACTIONS(11859), 1, + anon_sym_LT_LT_LT, + ACTIONS(11889), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4846), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [236391] = 5, + [238442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11867), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1254), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271705,10 +273963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271719,19 +273975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236430] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [238477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(11923), 1, + sym__special_character, + STATE(4281), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(5292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271741,6 +273998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -271753,16 +274011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [236471] = 3, + [238516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(11891), 1, + sym__special_character, + STATE(4284), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(5699), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271784,21 +274044,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [236506] = 6, + [238555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(11714), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(11925), 1, sym__concat, - STATE(4194), 1, + STATE(4210), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1209), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271808,7 +274068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -271821,14 +274080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236547] = 3, + [238596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, sym__concat, + STATE(4230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 24, + ACTIONS(4648), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271838,7 +274102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -271852,20 +274115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [236582] = 6, + [238637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11731), 1, - sym__concat, - STATE(4204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1274), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271888,15 +274146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236623] = 3, + aux_sym_concatenation_token1, + [238672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1266), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271906,10 +274165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271919,19 +274176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [236658] = 5, + anon_sym_BQUOTE, + [238707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 3, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271952,18 +274209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [236697] = 3, + [238742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(11921), 1, + sym__special_character, + STATE(4334), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(5707), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271973,8 +274231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271984,21 +274244,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [236732] = 6, + anon_sym_LT_LT_LT, + [238781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(11714), 1, aux_sym_concatenation_token1, - ACTIONS(11870), 1, + ACTIONS(11716), 1, sym__concat, - STATE(4292), 1, + STATE(4266), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(5294), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(5292), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272020,16 +274280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [236773] = 3, + [238822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(11714), 1, + aux_sym_concatenation_token1, + ACTIONS(11716), 1, sym__concat, - ts_builtin_sym_end, + STATE(4324), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(5296), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272039,8 +274303,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272050,18 +274315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [236808] = 3, + [238863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, sym__concat, - sym_variable_name, + STATE(4277), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(4652), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272071,7 +274337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -272084,51 +274349,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [236843] = 5, + anon_sym_LT_LT_LT, + [238904] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(10554), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(11933), 1, + anon_sym_LT_LT_LT, + ACTIONS(11936), 1, + sym_file_descriptor, + ACTIONS(11930), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4275), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11927), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(10546), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [238949] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10554), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11945), 1, + anon_sym_LT_LT_LT, + ACTIONS(11948), 1, + sym_file_descriptor, + ACTIONS(11942), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4276), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11939), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(10546), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [236882] = 3, + [238994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11951), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4255), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272138,8 +274446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272149,18 +274458,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [236917] = 3, + anon_sym_LT_LT_LT, + [239035] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(11833), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11861), 1, + sym_file_descriptor, + ACTIONS(4318), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(10446), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4207), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11831), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [239080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272181,21 +274525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [236952] = 6, + [239115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11731), 1, - sym__concat, - STATE(4204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1290), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(1288), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272205,10 +274546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272218,53 +274557,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236993] = 8, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [239150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11885), 1, + ACTIONS(11953), 1, + sym__special_character, + STATE(4281), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 3, sym_file_descriptor, - ACTIONS(11877), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11880), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4269), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11874), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11872), 10, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [237038] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [239189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(11891), 1, + sym__special_character, + STATE(4284), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(4648), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272285,18 +274626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [237073] = 3, + [239228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272319,27 +274660,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [237108] = 7, + [239263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(11956), 1, + sym__special_character, + STATE(4284), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 18, + ACTIONS(1318), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -272347,6 +274683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -272355,15 +274692,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237151] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [239302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1296), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272386,81 +274724,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [237186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11888), 1, - sym__concat, - ACTIONS(6675), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6673), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [237223] = 4, + [239337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11890), 1, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11959), 1, sym__concat, - ACTIONS(6705), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6703), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [237260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 3, + STATE(4303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 24, + ACTIONS(1207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272483,18 +274761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [237295] = 3, + [239378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1260), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272517,15 +274793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [237330] = 3, + [239413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272549,40 +274825,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [237365] = 13, + [239448] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, + ACTIONS(4794), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11763), 1, + ACTIONS(11859), 1, anon_sym_LT_LT_LT, - ACTIONS(11802), 1, + ACTIONS(11889), 1, sym_file_descriptor, - STATE(4937), 1, + STATE(4765), 1, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + ACTIONS(4767), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(11887), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4513), 3, + ACTIONS(4792), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4669), 3, + STATE(4587), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -272591,16 +274866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [237420] = 3, + [239501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1250), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272610,8 +274884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272622,21 +274898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [237455] = 6, + [239536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, - aux_sym_concatenation_token1, - ACTIONS(11697), 1, - sym__concat, - STATE(4212), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, + ACTIONS(1298), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272646,9 +274917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272658,16 +274928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237496] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [239571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1288), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272677,8 +274948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272689,17 +274962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [237531] = 3, + [239606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11961), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(1213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272709,8 +274984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272720,17 +274997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [237566] = 3, + [239647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1258), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(1256), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272740,8 +275014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272753,23 +275029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [237601] = 6, + [239682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 3, + ACTIONS(1302), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 19, + ACTIONS(1300), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272779,7 +275046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272789,137 +275059,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237642] = 8, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [239717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(11794), 1, + ACTIONS(1306), 4, sym_file_descriptor, - ACTIONS(11894), 1, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4773), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11892), 12, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237687] = 13, + aux_sym_concatenation_token1, + [239752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(5212), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(11900), 1, + ACTIONS(1237), 5, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5210), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [237742] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [239787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(11794), 1, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, + sym__concat, + STATE(4277), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, sym_file_descriptor, - ACTIONS(11904), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4785), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11902), 12, + ACTIONS(4686), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [237787] = 6, + anon_sym_LT_LT_LT, + [239828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, - sym_file_descriptor, + ACTIONS(11963), 1, sym_variable_name, - ts_builtin_sym_end, + STATE(6696), 1, + sym_subscript, + ACTIONS(11764), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + STATE(4299), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11762), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272930,6 +275184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272939,20 +275195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [237828] = 6, + [239869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(11891), 1, + sym__special_character, + STATE(4284), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(5707), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272962,6 +275216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -272973,19 +275228,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, anon_sym_BQUOTE, - [237869] = 5, + [239908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11771), 1, + sym__concat, + STATE(4293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 23, + ACTIONS(4686), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273008,20 +275264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [237908] = 6, + [239949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11906), 1, - aux_sym_concatenation_token1, - ACTIONS(11909), 1, - sym__concat, - STATE(4292), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(1266), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1264), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273031,6 +275281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -273044,59 +275295,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [237949] = 11, + aux_sym_concatenation_token1, + [239984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(11966), 1, + aux_sym_concatenation_token1, + ACTIONS(11969), 1, + sym__concat, + STATE(4303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4171), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4253), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4255), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [238000] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11912), 1, - sym__special_character, - STATE(4294), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1302), 5, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273117,15 +275361,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [238039] = 3, + [240060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(11972), 1, + sym__concat, + ACTIONS(6900), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6898), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [240097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + ACTIONS(1268), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273135,10 +275414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273150,15 +275427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238074] = 3, + anon_sym_BQUOTE, + [240132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1252), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273181,20 +275458,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238109] = 6, + [240167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1254), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273204,6 +275478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -273216,15 +275491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [238150] = 3, + aux_sym_concatenation_token1, + [240202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 24, + ACTIONS(1308), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273249,15 +275524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238185] = 3, + [240237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1252), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273267,8 +275541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273280,20 +275556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [238220] = 6, + [240272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1254), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273303,9 +275574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273316,14 +275586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [238261] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [240307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 24, + ACTIONS(1276), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273348,20 +275620,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238296] = 6, + [240342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11865), 1, sym__concat, - STATE(4370), 1, + STATE(4382), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1233), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1231), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273381,22 +275654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, sym__special_character, - [238337] = 6, + [240383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4344), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273406,8 +275673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273417,15 +275686,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [238378] = 3, + aux_sym_concatenation_token1, + [240418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(11974), 1, + sym__concat, + ACTIONS(6906), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6904), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [240455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 24, + ACTIONS(1284), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273450,50 +275752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238413] = 7, + [240490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [238456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, + ACTIONS(11758), 1, + aux_sym_concatenation_token1, + ACTIONS(11760), 1, sym__concat, + STATE(4230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 24, + ACTIONS(5707), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273503,7 +275774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -273517,41 +275787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [238491] = 13, + [240531] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11809), 1, + ACTIONS(11982), 1, anon_sym_LT_LT_LT, - ACTIONS(11900), 1, + ACTIONS(11985), 1, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11898), 2, + ACTIONS(10554), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11979), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, + STATE(4318), 4, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11976), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -273560,48 +275814,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [238546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(10546), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [238581] = 3, + [240576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273624,61 +275856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [238616] = 13, + [240611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - ACTIONS(11841), 1, + ACTIONS(1258), 4, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4790), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [238671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11731), 1, sym__concat, - STATE(4194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, - sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273688,10 +275874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273701,15 +275885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238712] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [240646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273719,10 +275906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273732,35 +275917,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238747] = 7, + anon_sym_BQUOTE, + [240681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 3, + ACTIONS(1282), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 17, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -273769,14 +275950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238790] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [240716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 24, + ACTIONS(1272), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273801,19 +275984,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238825] = 6, + [240751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(11714), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(11988), 1, sym__concat, - STATE(4194), 1, + STATE(4210), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(1215), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273823,7 +276007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -273836,16 +276019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238866] = 3, + [240792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(11990), 1, + sym__special_character, + STATE(4325), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 4, sym_file_descriptor, - sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1318), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273866,20 +276052,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [238901] = 5, + [240831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11915), 1, - sym__special_character, - STATE(4181), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 3, - sym_file_descriptor, + ACTIONS(11993), 1, sym_variable_name, + STATE(6696), 1, + sym_subscript, + ACTIONS(11837), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 22, + STATE(4299), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11835), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273889,7 +276076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -273902,18 +276088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238940] = 5, + [240872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11917), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(1314), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1312), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273923,8 +276105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273935,16 +276119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [238979] = 3, + aux_sym_concatenation_token1, + [240907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(1248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273954,10 +276139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273968,14 +276151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [239014] = 3, + anon_sym_BQUOTE, + [240942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1258), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 24, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273998,25 +276183,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239049] = 8, + [240977] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(11318), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11924), 1, + ACTIONS(11999), 1, anon_sym_LT_LT_LT, - ACTIONS(11926), 1, + ACTIONS(12001), 1, sym_file_descriptor, - ACTIONS(11922), 2, + ACTIONS(11997), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4504), 3, + STATE(4275), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11920), 8, + ACTIONS(11995), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -274025,7 +276210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11713), 10, + ACTIONS(11312), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274036,19 +276221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [239093] = 6, + [241022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11928), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1290), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274058,6 +276240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -274068,21 +276251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [239133] = 6, + [241057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11930), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(11921), 1, + sym__special_character, + STATE(4334), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(4648), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274092,7 +276273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274103,20 +276287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [239173] = 6, + [241096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274126,9 +276305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274138,19 +276316,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239213] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [241131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(12003), 1, + sym__special_character, + STATE(4334), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(1318), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274160,6 +276339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -274172,19 +276352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239253] = 6, + anon_sym_LT_LT_LT, + [241170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11932), 1, - sym__concat, - STATE(4354), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(11921), 1, + sym__special_character, + STATE(4334), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(4682), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274194,6 +276373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -274206,14 +276386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239293] = 3, + anon_sym_LT_LT_LT, + [241209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274223,10 +276405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274236,15 +276416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239327] = 3, + anon_sym_BQUOTE, + [241244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274254,10 +276437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274267,21 +276448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239361] = 6, + anon_sym_BQUOTE, + [241279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11769), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11771), 1, sym__concat, - STATE(4370), 1, + STATE(4286), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 3, + ACTIONS(4650), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(4648), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274291,7 +276473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274301,56 +276486,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [239401] = 8, + [241320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11934), 1, + ACTIONS(11769), 1, + aux_sym_concatenation_token1, + ACTIONS(11771), 1, + sym__concat, + STATE(4293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 2, sym_file_descriptor, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4987), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11790), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239445] = 6, + [241361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11936), 1, - sym__concat, - STATE(4354), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274360,9 +276539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274372,14 +276550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239485] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [241396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1268), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274402,58 +276583,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239519] = 8, + [241431] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11942), 1, - anon_sym_LT_LT_LT, - ACTIONS(11944), 1, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 2, sym_file_descriptor, - ACTIONS(11719), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11940), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4365), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11938), 8, + ACTIONS(4648), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11713), 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12006), 1, + sym_variable_name, + STATE(6700), 1, + sym_subscript, + STATE(4455), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11837), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11835), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239563] = 6, + [241511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11946), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - STATE(4334), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11658), 3, + ACTIONS(1258), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11656), 19, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274463,7 +276670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274473,38 +276683,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239603] = 12, + aux_sym_concatenation_token1, + [241545] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, + ACTIONS(4263), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(11704), 1, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + ACTIONS(4253), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4255), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(4259), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(9880), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5206), 3, - anon_sym_SEMI, - anon_sym_AMP, + ACTIONS(4261), 4, + anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(4731), 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4185), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(9878), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -274513,17 +276722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239655] = 5, + [241593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274545,55 +276752,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [239693] = 12, + aux_sym_concatenation_token1, + [241627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(1294), 4, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5285), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239745] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [241661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274603,9 +276802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274615,16 +276813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239779] = 3, + anon_sym_BQUOTE, + [241695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274648,55 +276846,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239813] = 6, + [241729] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, - sym_file_descriptor, + ACTIONS(2327), 1, + ts_builtin_sym_end, + ACTIONS(4636), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, - anon_sym_SEMI, + ACTIONS(12008), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4502), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4634), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11752), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [239853] = 6, + [241779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11959), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - STATE(4334), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11741), 3, + ACTIONS(1298), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11739), 19, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274707,6 +276903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274716,20 +276914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239893] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [241813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4374), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 3, + ACTIONS(1310), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274740,6 +276934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274750,19 +276946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [239933] = 6, + aux_sym_concatenation_token1, + [241847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(1254), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274784,20 +276976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239973] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [241881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11961), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(1314), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274807,8 +276995,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274818,20 +277007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240013] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [241915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11963), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4156), 1, + STATE(4610), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1233), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(1231), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274841,7 +277032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -274852,17 +277042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240053] = 5, + sym__special_character, + [241955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11965), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274872,7 +277060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -274885,17 +277072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240091] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [241989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(1254), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274917,19 +277104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240129] = 5, + aux_sym_concatenation_token1, + [242023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 3, + ACTIONS(1266), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274939,8 +277122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274950,16 +277134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [240167] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [242057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274969,8 +277154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274981,18 +277167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240201] = 5, + [242091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275002,6 +277184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -275014,16 +277197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240239] = 3, + aux_sym_concatenation_token1, + [242125] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(12014), 1, sym__concat, + STATE(4153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275033,7 +277221,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -275044,17 +277231,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240273] = 3, + anon_sym_LT_LT_LT, + [242165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12016), 1, sym__concat, - ts_builtin_sym_end, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275075,20 +277266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240307] = 5, + [242205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 3, + ACTIONS(1266), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275098,8 +277283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275109,20 +277296,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [240345] = 6, + aux_sym_concatenation_token1, + [242239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11970), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(11973), 1, + ACTIONS(12018), 1, sym__concat, - STATE(4354), 1, + STATE(4177), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(1215), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275132,9 +277320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275144,14 +277331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240385] = 3, + [242279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(1254), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275173,19 +277361,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [240419] = 5, + [242313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(11893), 1, + aux_sym_concatenation_token1, + ACTIONS(11895), 1, + sym__concat, + STATE(4531), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(2137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275195,7 +277384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -275208,15 +277396,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240457] = 3, + [242353] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(4498), 1, + ts_builtin_sym_end, + ACTIONS(4504), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12008), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4502), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4500), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11752), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [242403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275239,24 +277466,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [240491] = 8, + [242437] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, + ACTIONS(4261), 1, + anon_sym_BQUOTE, + ACTIONS(4854), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(12020), 1, sym_file_descriptor, - ACTIONS(4294), 2, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11665), 2, + ACTIONS(4852), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11783), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4388), 3, + ACTIONS(4850), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4376), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -275265,25 +277505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11780), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - [240535] = 3, + [242487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1258), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275293,8 +277523,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275305,16 +277536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240569] = 3, + [242521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, - sym_variable_name, + STATE(4361), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(4648), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275325,8 +277560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275336,55 +277569,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [240603] = 11, + anon_sym_LT_LT_LT, + [242561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(1270), 3, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4290), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 23, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4292), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4294), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(2503), 3, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [240653] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [242595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275394,9 +277619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275407,51 +277631,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [240687] = 8, + anon_sym_BQUOTE, + [242629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11984), 1, - anon_sym_LT_LT_LT, - ACTIONS(11986), 1, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 3, sym_file_descriptor, - ACTIONS(11982), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4409), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11980), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11713), 10, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [240731] = 3, + anon_sym_LT_LT_LT, + [242669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1282), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275461,8 +277683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275473,25 +277697,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240765] = 8, + [242703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11994), 1, - anon_sym_LT_LT_LT, - ACTIONS(11997), 1, - sym_file_descriptor, - ACTIONS(11679), 2, - ts_builtin_sym_end, + ACTIONS(11833), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11991), 2, + ACTIONS(12020), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11783), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4365), 3, + STATE(4390), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11988), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -275500,24 +277724,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11671), 9, + ACTIONS(11831), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [240809] = 3, + anon_sym_BQUOTE, + [242747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1250), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(1248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275527,6 +277750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -275539,17 +277763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [240843] = 3, + [242781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275559,8 +277781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275571,54 +277795,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240877] = 5, + [242815] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(4261), 1, + anon_sym_RPAREN, + ACTIONS(4320), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, - anon_sym_SEMI, + ACTIONS(12022), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4491), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4314), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [240915] = 6, + [242865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12024), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12027), 1, sym__concat, - STATE(4667), 1, + STATE(4380), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1237), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(1235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275629,6 +277857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275638,21 +277868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [240955] = 6, + [242905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12004), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(12030), 1, + sym__special_character, + STATE(4424), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(4648), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275663,6 +277889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275673,18 +277901,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240995] = 5, + [242943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 3, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12032), 1, + sym__concat, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275694,7 +277925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -275705,15 +277935,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [241033] = 3, + [242983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12034), 1, sym__concat, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1213), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275724,8 +277960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275735,23 +277969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [241067] = 6, + [243023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 4, + ACTIONS(12036), 1, + sym__special_character, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 19, + ACTIONS(4682), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275761,7 +277989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275771,20 +278002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241107] = 6, + [243061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12006), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1258), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275794,6 +278020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -275804,65 +278031,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [241147] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [243095] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(11720), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11785), 1, + anon_sym_LT_LT_LT, + ACTIONS(12038), 1, + sym_file_descriptor, + ACTIONS(11783), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4712), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11718), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [241187] = 5, + anon_sym_BQUOTE, + [243139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12008), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -275872,51 +278102,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [241225] = 3, + [243177] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(11724), 1, + anon_sym_LT_LT_LT, + ACTIONS(12040), 1, sym_file_descriptor, - sym__concat, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11777), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(4940), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11752), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11775), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [241259] = 6, + [243221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4670), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(4294), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275936,86 +278169,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [241299] = 12, + anon_sym_BQUOTE, + [243257] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(11697), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(12051), 1, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(12045), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(12048), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5180), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, + STATE(4390), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [241351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(11686), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_BQUOTE, + ACTIONS(12042), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241385] = 3, + [243301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(1268), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276025,7 +278223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276038,21 +278235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [241419] = 6, + [243335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4374), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 3, + ACTIONS(1290), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(1288), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276062,7 +278254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276072,15 +278267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [241459] = 3, + aux_sym_concatenation_token1, + [243369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276104,14 +278299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [241493] = 3, + [243403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(12054), 1, + sym__special_character, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1318), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276121,6 +278319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276133,9 +278332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [241527] = 3, + [243441] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1262), 3, @@ -276166,54 +278363,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [241561] = 3, + [243475] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11785), 1, + anon_sym_LT_LT_LT, + ACTIONS(11791), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12038), 1, + sym_file_descriptor, + ACTIONS(11783), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4857), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11789), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241595] = 5, + anon_sym_BQUOTE, + [243519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -276222,6 +278420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -276230,24 +278429,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241633] = 8, + aux_sym_concatenation_token1, + [243553] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(11777), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12020), 1, + ACTIONS(11785), 1, + anon_sym_LT_LT_LT, + ACTIONS(12038), 1, sym_file_descriptor, - ACTIONS(12014), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12017), 2, + ACTIONS(11783), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4388), 3, + STATE(4940), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12011), 8, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -276256,24 +278455,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11872), 9, + ACTIONS(11775), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [241677] = 3, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [243597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(12030), 1, + sym__special_character, + STATE(4424), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(5699), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276283,7 +278486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276296,18 +278498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241711] = 4, + anon_sym_LT_LT_LT, + [243635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(1274), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 21, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276329,15 +278528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241747] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276347,6 +278547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276360,15 +278561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [241781] = 3, + [243703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1237), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1235), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276378,8 +278578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276389,17 +278590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [241815] = 3, + [243737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(12030), 1, + sym__special_character, + STATE(4424), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(4682), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276421,16 +278624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241849] = 3, + anon_sym_LT_LT_LT, + [243775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1262), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1260), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276453,15 +278656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [241883] = 3, + [243809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1237), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(1235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276484,45 +278687,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [241917] = 3, + [243843] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(4288), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, - anon_sym_SEMI, + ACTIONS(11704), 1, + sym_file_descriptor, + ACTIONS(4255), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4259), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4286), 2, + anon_sym_SEMI, anon_sym_AMP, + ACTIONS(9880), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2329), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9878), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - [241951] = 3, + [243891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11865), 1, sym__concat, + STATE(4542), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1231), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276532,10 +278748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276545,8 +278758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241985] = 3, + sym__special_character, + [243931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 4, @@ -276577,14 +278790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [242019] = 3, + [243965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4361), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(4682), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276594,10 +278813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276607,18 +278823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [242053] = 5, + anon_sym_LT_LT_LT, + [244005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(4686), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276629,8 +278848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276641,15 +278858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242091] = 3, + [244045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, - sym_variable_name, + STATE(4361), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(5699), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276660,8 +278882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276671,28 +278891,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [242125] = 3, + anon_sym_LT_LT_LT, + [244085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -276701,52 +278925,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [242159] = 3, + [244123] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11833), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12022), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4479), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [242193] = 6, + ACTIONS(11831), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + [244167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(12057), 1, + sym__special_character, + STATE(4499), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(5707), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276756,9 +278982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276768,17 +278993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242233] = 5, + anon_sym_BQUOTE, + [244205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(1266), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276788,7 +279012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276801,15 +279024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242271] = 3, + aux_sym_concatenation_token1, + [244239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(2082), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276819,7 +279048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -276830,20 +279058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [242305] = 5, + anon_sym_LT_LT_LT, + [244279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12023), 1, - sym__special_character, - STATE(4442), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 3, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11865), 1, + sym__concat, + STATE(4362), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5294), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(5292), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276853,9 +279082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276865,15 +279093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242343] = 3, + [244319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276896,50 +279124,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [242377] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12031), 1, - anon_sym_LT_LT_LT, - ACTIONS(12034), 1, - sym_file_descriptor, - ACTIONS(12028), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4409), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12025), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11671), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [242421] = 3, + [244353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11865), 1, sym__concat, + STATE(4364), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(5296), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276949,10 +279147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276962,16 +279158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [242455] = 3, + [244393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(12057), 1, + sym__special_character, + STATE(4499), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(4682), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276992,56 +279190,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [242489] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4292), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4294), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4513), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4255), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [242539] = 3, + [244431] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(11893), 1, + aux_sym_concatenation_token1, + ACTIONS(11895), 1, sym__concat, - sym_variable_name, + STATE(4512), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(4682), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277063,20 +279225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [242573] = 6, + [244471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, + ACTIONS(11893), 1, aux_sym_concatenation_token1, - ACTIONS(11845), 1, + ACTIONS(11895), 1, sym__concat, - STATE(4331), 1, + STATE(4531), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(4686), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277098,15 +279259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242613] = 3, + [244511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(12057), 1, + sym__special_character, + STATE(4499), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(5699), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277127,16 +279291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [242647] = 3, + [244549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, + ACTIONS(12059), 1, + sym__special_character, + STATE(4424), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(1318), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277146,7 +279312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277159,15 +279324,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [242681] = 3, + anon_sym_LT_LT_LT, + [244587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(11724), 1, + anon_sym_LT_LT_LT, + ACTIONS(12040), 1, sym_file_descriptor, - sym__concat, + ACTIONS(11720), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4712), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11752), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11718), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [244631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4294), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277178,8 +279384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277189,16 +279393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [242715] = 3, + [244667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277220,19 +279423,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [242749] = 5, + [244701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(11720), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11730), 1, + anon_sym_LT_LT_LT, + ACTIONS(12062), 1, + sym_file_descriptor, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4712), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11726), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11718), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [244745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1231), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277255,52 +279489,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242787] = 5, + anon_sym_LT_LT_LT, + sym__special_character, + [244779] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12037), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(11724), 1, + anon_sym_LT_LT_LT, + ACTIONS(12040), 1, sym_file_descriptor, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11791), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(4857), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11752), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11789), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [242825] = 6, + [244823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11893), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11895), 1, sym__concat, - STATE(4672), 1, + STATE(4512), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(4648), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277311,6 +279550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277320,22 +279561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [242865] = 6, + [244863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(12057), 1, + sym__special_character, + STATE(4499), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 20, + ACTIONS(4648), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277356,15 +279593,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242905] = 3, + anon_sym_BQUOTE, + [244901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(6920), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6918), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [244935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277387,46 +279656,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242939] = 3, + [244969] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(2329), 1, + anon_sym_RPAREN, + ACTIONS(4366), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, - anon_sym_SEMI, + ACTIONS(12022), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4491), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4364), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [242973] = 3, + [245019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277436,8 +279713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277448,16 +279726,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [243007] = 3, + [245053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12064), 1, sym__concat, - ts_builtin_sym_end, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277467,7 +279749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -277478,16 +279759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243041] = 3, + [245093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12066), 1, sym__concat, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277497,10 +279783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277510,16 +279793,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243075] = 3, + anon_sym_BQUOTE, + [245133] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, sym__concat, - sym_variable_name, + STATE(4583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1231), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277529,9 +279816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277541,18 +279827,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243109] = 5, + sym__special_character, + [245173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(12068), 1, + sym__concat, + STATE(4153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277562,10 +279850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277575,19 +279861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243147] = 6, + anon_sym_LT_LT_LT, + [245213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12070), 1, sym__concat, - STATE(4521), 1, + STATE(4153), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277608,54 +279895,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [243187] = 6, + anon_sym_LT_LT_LT, + [245253] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12040), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, - sym_file_descriptor, + ACTIONS(11318), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(12076), 1, + anon_sym_LT_LT_LT, + ACTIONS(12078), 1, + sym_file_descriptor, + ACTIONS(12074), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4444), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12072), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11312), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [245297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6926), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6924), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [245331] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10554), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12086), 1, + anon_sym_LT_LT_LT, + ACTIONS(12089), 1, + sym_file_descriptor, + ACTIONS(12083), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4444), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12080), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(10546), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243227] = 6, + [245375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12042), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277676,47 +280028,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243267] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [245409] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(12098), 1, sym_file_descriptor, - sym__concat, + ACTIONS(11697), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(12045), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12095), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4446), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11686), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12092), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243301] = 3, + [245453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(12101), 1, + sym__special_character, + STATE(4447), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 3, sym_file_descriptor, - sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1318), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277738,16 +280099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243335] = 3, + [245491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, - sym_variable_name, + STATE(4361), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(5707), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277758,8 +280123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277769,21 +280132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243369] = 6, + anon_sym_LT_LT_LT, + [245531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12044), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(12104), 1, + sym__concat, + STATE(4153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4438), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 20, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277793,7 +280156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -277804,33 +280166,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243409] = 7, + anon_sym_LT_LT_LT, + [245571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 17, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -277839,20 +280196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243451] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [245605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12046), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4438), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 20, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277873,21 +280227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243491] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [245639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(12036), 1, + sym__special_character, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 19, + ACTIONS(5699), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277897,7 +280249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277907,20 +280262,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243531] = 6, + [245677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11865), 1, sym__concat, - STATE(4370), 1, + STATE(4383), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 3, + ACTIONS(5298), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(5296), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277940,21 +280296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243571] = 6, + [245717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4374), 1, + STATE(4449), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 3, + ACTIONS(2139), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(2137), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277975,18 +280330,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [243611] = 5, + [245757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12049), 1, - sym__special_character, - STATE(4442), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, - sym_file_descriptor, + ACTIONS(12106), 1, sym_variable_name, + STATE(6700), 1, + sym_subscript, + STATE(4455), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11764), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(11762), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277997,8 +280355,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278008,14 +280364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243649] = 3, + [245797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, + ACTIONS(11893), 1, + aux_sym_concatenation_token1, + ACTIONS(11895), 1, sym__concat, + STATE(4531), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(4652), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278037,16 +280398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [243683] = 3, + [245837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(12036), 1, + sym__special_character, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(5707), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278056,6 +280418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278068,16 +280431,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [243717] = 3, + [245875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(7194), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7192), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [245909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7196), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [245943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278087,9 +280511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278099,16 +280522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243751] = 3, + anon_sym_BQUOTE, + [245977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1266), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278118,9 +280542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278130,16 +280553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243785] = 3, + anon_sym_BQUOTE, + [246011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278149,6 +280572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278161,17 +280585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243819] = 3, + [246045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1233), 4, sym_file_descriptor, - sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278181,9 +280604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278193,16 +280615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243853] = 3, + sym__special_character, + anon_sym_BQUOTE, + [246079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1282), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278224,16 +280646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243887] = 3, + [246113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278243,6 +280665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278256,15 +280679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243921] = 3, + [246147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278274,6 +280696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278287,55 +280710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243955] = 8, + [246181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11934), 1, + ACTIONS(1250), 3, sym_file_descriptor, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4991), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11892), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [243999] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278345,8 +280727,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278357,91 +280740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244039] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11786), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [244079] = 6, + [246215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4257), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [244119] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -278449,7 +280766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -278458,16 +280774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [244159] = 3, + [246253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278477,9 +280792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278490,19 +280804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244193] = 6, + anon_sym_BQUOTE, + [246287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1233), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1231), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278524,19 +280834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244233] = 6, + sym__special_character, + anon_sym_BQUOTE, + [246321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1290), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(1288), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278546,8 +280853,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278558,19 +280866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244273] = 6, + aux_sym_concatenation_token1, + [246355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(12109), 1, + sym_variable_name, + STATE(6667), 1, + sym_subscript, + ACTIONS(11837), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + STATE(4473), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11835), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278591,20 +280901,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [244313] = 6, + [246395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(12111), 1, + sym_variable_name, + STATE(6667), 1, + sym_subscript, + ACTIONS(11764), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + STATE(4473), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11762), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278625,15 +280935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [244353] = 3, + [246435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(12030), 1, + sym__special_character, + STATE(4424), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(5707), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278656,8 +280968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [244387] = 3, + [246473] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1306), 3, @@ -278688,14 +280999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244421] = 3, + [246507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(4294), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278705,9 +281020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278717,15 +281031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [244455] = 3, + [246543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(12114), 1, + sym__special_character, + STATE(4447), 1, + aux_sym__literal_repeat1, + ACTIONS(5294), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 24, + ACTIONS(5292), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278735,7 +281052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278748,16 +281064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [244489] = 3, + [246581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278767,10 +281082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278781,45 +281094,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244523] = 3, + anon_sym_BQUOTE, + [246615] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11697), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(12122), 1, + sym_file_descriptor, + ACTIONS(12045), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12119), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4479), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11686), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12116), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [244557] = 3, + [246659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278843,14 +281162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244591] = 3, + [246693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1262), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1260), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278874,15 +281193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244625] = 3, + [246727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1237), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1235), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278892,6 +281210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278905,15 +281224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244659] = 3, + [246761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1284), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278923,6 +281241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278936,15 +281255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244693] = 3, + [246795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1233), 3, sym_file_descriptor, - sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1231), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278954,6 +281272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278966,83 +281285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [244727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6653), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6651), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [244761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6641), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6639), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [244795] = 6, + sym__special_character, + [246829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4370), 1, + STATE(4440), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 3, + ACTIONS(5701), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(5699), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279052,6 +281308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279063,20 +281320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244835] = 6, + [246869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4374), 1, + STATE(4441), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 3, + ACTIONS(2084), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(2082), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279086,6 +281342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279097,21 +281354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244875] = 6, + [246909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12052), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4156), 1, + STATE(4440), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5709), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(5707), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279121,6 +281376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279131,57 +281387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244915] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11667), 1, anon_sym_LT_LT_LT, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11934), 1, - sym_file_descriptor, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4975), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11902), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [244959] = 6, + [246949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12054), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4156), 1, + STATE(4441), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(2139), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(2137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279191,6 +281410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279201,81 +281421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6726), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6724), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [245033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6730), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6728), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [245067] = 6, + anon_sym_LT_LT_LT, + [246989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4619), 1, + STATE(4441), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(4652), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279285,6 +281444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279296,15 +281456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [245107] = 3, + [247029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(4682), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279314,10 +281478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279327,15 +281489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [245141] = 3, + anon_sym_LT_LT_LT, + [247069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(4686), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279345,10 +281512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279358,55 +281523,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [245175] = 12, + anon_sym_LT_LT_LT, + [247109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5159), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [245227] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [247149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(1274), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279416,10 +281576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279429,20 +281587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [245261] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [247183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279464,20 +281618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245301] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12056), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279488,6 +281639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279497,20 +281650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [245341] = 6, + aux_sym_concatenation_token1, + [247251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279532,20 +281681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245381] = 6, + aux_sym_concatenation_token1, + [247285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12058), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1258), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279556,6 +281700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279565,21 +281711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [245421] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 3, + ACTIONS(1254), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279589,6 +281731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279599,21 +281742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [245461] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [247353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12060), 1, - sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(12125), 1, + sym__special_character, + STATE(4499), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4493), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 20, + ACTIONS(1318), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279623,6 +281765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279634,20 +281777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [245501] = 6, + [247391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12062), 1, - sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4493), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 20, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279657,6 +281795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279667,20 +281806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [245541] = 6, + [247425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1254), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279690,6 +281826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279700,55 +281837,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [245581] = 6, + [247459] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, + ACTIONS(11730), 1, + anon_sym_LT_LT_LT, + ACTIONS(11791), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12062), 1, + sym_file_descriptor, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4857), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11789), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245621] = 6, + [247503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(1262), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(1260), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279759,6 +281894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279768,55 +281905,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245661] = 6, + aux_sym_concatenation_token1, + [247537] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, + ACTIONS(11730), 1, + anon_sym_LT_LT_LT, + ACTIONS(11777), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12062), 1, + sym_file_descriptor, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4940), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11775), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245701] = 6, + [247581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1237), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279827,6 +281961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279836,21 +281972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245741] = 6, + aux_sym_concatenation_token1, + [247615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279861,6 +281991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279871,20 +282003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245781] = 6, + aux_sym_concatenation_token1, + [247649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1282), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279895,6 +282023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279904,21 +282034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245821] = 6, + aux_sym_concatenation_token1, + [247683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1250), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(1248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279929,6 +282054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279938,22 +282065,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245861] = 6, + aux_sym_concatenation_token1, + [247717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(11893), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(11895), 1, sym__concat, - STATE(4488), 1, + STATE(4512), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, + ACTIONS(5709), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 20, + ACTIONS(5707), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279964,6 +282089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279973,21 +282100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [245901] = 6, + [247757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4490), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(1286), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 20, + ACTIONS(1284), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279998,6 +282118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280007,88 +282129,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [245941] = 8, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12071), 1, - anon_sym_LT_LT_LT, - ACTIONS(12074), 1, + ACTIONS(12008), 1, sym_file_descriptor, - ACTIONS(12068), 2, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11754), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4504), 3, + ACTIONS(11833), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4446), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12065), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11671), 10, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11831), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [245985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11752), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [246019] = 6, + [247835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(11893), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(12128), 1, sym__concat, - STATE(4344), 1, + STATE(4380), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, + ACTIONS(1209), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 20, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280098,8 +282189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280109,19 +282201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246059] = 6, + [247875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11865), 1, sym__concat, - STATE(4672), 1, + STATE(4437), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(5294), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(5292), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280142,60 +282235,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [246098] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12077), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6580), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [246163] = 3, + [247915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 3, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11865), 1, + sym__concat, + STATE(4438), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(5296), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280205,7 +282258,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280216,16 +282268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [246196] = 3, + [247955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280235,6 +282286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280248,14 +282300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [246229] = 3, + [247989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, - sym_file_descriptor, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, sym__concat, + STATE(4671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1231), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280266,8 +282323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280277,15 +282332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [246262] = 3, + sym__special_character, + anon_sym_BQUOTE, + [248029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280295,6 +282351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280308,14 +282365,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [246295] = 3, + [248063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(12130), 1, + sym_variable_name, + STATE(6698), 1, + sym_subscript, + ACTIONS(11837), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + STATE(4520), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11835), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280325,7 +282388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280336,15 +282398,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, anon_sym_BQUOTE, - [246328] = 3, + [248103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(12132), 1, + sym__concat, + STATE(4153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 23, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280354,10 +282421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280368,15 +282432,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [246361] = 3, + anon_sym_BQUOTE, + [248143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 4, - sym_file_descriptor, + ACTIONS(12134), 1, sym_variable_name, - ts_builtin_sym_end, + STATE(6698), 1, + sym_subscript, + ACTIONS(11764), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 21, + STATE(4520), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11762), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280386,7 +282456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280398,58 +282467,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [246394] = 11, + [248183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4519), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5699), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246443] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [248223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12111), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4156), 1, + STATE(4529), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(2084), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(2082), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280469,14 +282533,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246482] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [248263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 3, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4519), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(5707), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280486,7 +282557,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280499,14 +282569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [246515] = 3, + [248303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 3, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4529), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, + ACTIONS(2137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280516,7 +282591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280529,65 +282603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [246548] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12117), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6585), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [246613] = 6, + [248343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12119), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4214), 1, + STATE(4519), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(4648), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280597,7 +282625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280608,14 +282635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246652] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [248383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 3, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4529), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(4652), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280625,7 +282659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280638,19 +282671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [246685] = 6, + [248423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12125), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4214), 1, + STATE(4519), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(4682), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280660,7 +282693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280671,14 +282703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246724] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [248463] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 3, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4529), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 22, + ACTIONS(4686), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280688,7 +282727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280701,30 +282739,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [246757] = 5, + [248503] = 6, ACTIONS(3), 1, sym_comment, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12133), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12136), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(12137), 1, + sym__concat, + STATE(4153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 20, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -280733,51 +282771,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246794] = 4, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [248543] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, - sym_file_descriptor, + ACTIONS(2329), 1, + anon_sym_BQUOTE, + ACTIONS(4914), 1, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 20, - anon_sym_SEMI, + ACTIONS(12020), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4852), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11783), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4912), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11781), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [246829] = 6, + [248593] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11893), 1, aux_sym_concatenation_token1, - ACTIONS(12138), 1, + ACTIONS(12139), 1, sym__concat, - STATE(4214), 1, + STATE(4380), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1215), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280788,6 +282835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280797,14 +282846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246868] = 3, + [248633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 3, + ACTIONS(1290), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280814,8 +282864,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280825,57 +282876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [246901] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12148), 1, - anon_sym_LT_LT_LT, - ACTIONS(12150), 1, - sym_file_descriptor, - ACTIONS(12146), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4531), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12144), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11713), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [246944] = 6, + aux_sym_concatenation_token1, + [248667] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11893), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11895), 1, sym__concat, - STATE(4667), 1, + STATE(4512), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 3, + ACTIONS(5701), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 19, + ACTIONS(5699), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280886,6 +282900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280895,49 +282911,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246983] = 8, + [248707] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12158), 1, - anon_sym_LT_LT_LT, - ACTIONS(12161), 1, + ACTIONS(11893), 1, + aux_sym_concatenation_token1, + ACTIONS(11895), 1, + sym__concat, + STATE(4531), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 2, sym_file_descriptor, - ACTIONS(12155), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4531), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12152), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11671), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247026] = 3, + [248747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(1306), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 22, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280947,7 +282963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280960,90 +282975,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247059] = 8, + aux_sym_concatenation_token1, + [248781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12173), 1, + ACTIONS(12036), 1, + sym__special_character, + STATE(4394), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 2, sym_file_descriptor, - ACTIONS(12167), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12170), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4533), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(4648), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(12164), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247102] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - ACTIONS(12176), 1, - sym_file_descriptor, - ACTIONS(11792), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11837), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11835), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11790), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [247145] = 6, + [248819] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11865), 1, sym__concat, - STATE(4527), 1, + STATE(4382), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 3, + ACTIONS(5294), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 19, + ACTIONS(5292), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281063,13 +283043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247184] = 3, + [248859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(1262), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 23, + ACTIONS(1260), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281079,7 +283060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -281092,50 +283072,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [247217] = 8, + aux_sym_concatenation_token1, + [248892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, + ACTIONS(12141), 1, + sym__special_character, + STATE(4659), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 2, sym_file_descriptor, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4678), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11798), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(5707), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11902), 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [248929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12145), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12143), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247260] = 3, + anon_sym_LT_LT_LT, + [248962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281158,14 +283165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247293] = 3, + [248995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12147), 1, sym__concat, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281176,8 +283189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281187,15 +283198,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247326] = 3, + [249034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12149), 1, sym__concat, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(1213), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281206,8 +283222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281217,14 +283231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247359] = 3, + [249073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 23, + ACTIONS(4652), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281248,14 +283261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [247392] = 3, + [249106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(12151), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(12153), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281265,9 +283278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281277,14 +283289,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247425] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [249139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 2, + ACTIONS(12155), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 23, + ACTIONS(12157), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281294,10 +283308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281308,14 +283320,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [247458] = 3, + anon_sym_BQUOTE, + [249172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 3, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12161), 1, + sym__concat, + STATE(4607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5437), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5435), 19, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [249211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 22, + ACTIONS(4686), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281338,14 +283384,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [247491] = 3, + [249244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12161), 1, + sym__concat, + STATE(4616), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5441), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5439), 19, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [249283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281368,21 +283447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247524] = 5, + [249316] = 3, ACTIONS(3), 1, sym_comment, - STATE(4546), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(5298), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12188), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 20, + ACTIONS(5296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -281392,6 +283468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -281400,14 +283477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247561] = 3, + [249349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(12165), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(12163), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281417,6 +283493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -281429,52 +283506,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [247594] = 10, + anon_sym_LT_LT_LT, + [249382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(12169), 2, sym_file_descriptor, - ACTIONS(4169), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12167), 23, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4171), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4173), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2503), 4, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247641] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [249415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(4682), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281484,7 +283560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -281495,85 +283570,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [247674] = 8, + [249454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(12191), 1, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 3, sym_file_descriptor, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11896), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11790), 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12165), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12163), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [247717] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 1, - sym_file_descriptor, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4709), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11896), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11892), 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [249526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12171), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [247760] = 3, + anon_sym_LT_LT_LT, + [249559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 2, + ACTIONS(12177), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 23, + ACTIONS(12175), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281597,157 +283693,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [247793] = 8, + [249592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 1, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 3, sym_file_descriptor, - ACTIONS(11883), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12196), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4553), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 7, + ACTIONS(5707), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(12193), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247836] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 3, sym_file_descriptor, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11904), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4678), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11835), 8, + ACTIONS(5699), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11902), 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2084), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247879] = 11, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [249703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(4531), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, + ACTIONS(2082), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247928] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, + ACTIONS(1233), 2, sym_file_descriptor, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11798), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11790), 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [249775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247971] = 3, + anon_sym_LT_LT_LT, + [249808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12161), 1, + sym__concat, + STATE(4607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 19, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [249847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 3, + ACTIONS(5298), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(5296), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281768,16 +283944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [248004] = 3, + [249880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, sym__concat, + STATE(4660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(2137), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281788,8 +283969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281799,15 +283978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248037] = 3, + [249919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(12173), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(12171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281817,9 +283995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281829,15 +284006,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248070] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [249952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, sym__concat, + STATE(4610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(4648), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281848,8 +284032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281859,65 +284041,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248103] = 8, + [249991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 1, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4660), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 3, sym_file_descriptor, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4678), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11896), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11902), 10, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [248146] = 5, + [250030] = 3, ACTIONS(3), 1, sym_comment, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12133), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12136), 3, + ACTIONS(1298), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 19, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -281926,46 +284103,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [248183] = 19, + aux_sym_concatenation_token1, + [250063] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12179), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12083), 1, + ACTIONS(12185), 1, aux_sym__c_word_token1, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12204), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - STATE(6482), 1, + STATE(6489), 1, sym__c_expression, - STATE(6686), 1, + STATE(6671), 1, sym__c_variable_assignment, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3195), 7, + STATE(3228), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -281973,13 +284150,13 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [248248] = 3, + [250128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 2, + ACTIONS(12205), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 23, + ACTIONS(12203), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282003,14 +284180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [248281] = 3, + [250161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(12209), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(12207), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282020,6 +284196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282032,15 +284209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248314] = 3, + anon_sym_LT_LT_LT, + [250194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1274), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282063,19 +284240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248347] = 6, + [250227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1237), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(1235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282085,8 +284257,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282096,19 +284269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248386] = 6, + aux_sym_concatenation_token1, + [250260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1266), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282118,8 +284287,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282129,19 +284299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248425] = 6, + aux_sym_concatenation_token1, + [250293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(12211), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(12213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282162,19 +284328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248464] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [250326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(12215), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(12217), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282195,19 +284358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248503] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [250359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(12219), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(12221), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282228,19 +284388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248542] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [250392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(12145), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(12143), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282261,19 +284418,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248581] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [250425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1282), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282283,8 +284437,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282294,19 +284449,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248620] = 6, + aux_sym_concatenation_token1, + [250458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12223), 1, sym__concat, - STATE(4523), 1, + STATE(4254), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282327,13 +284483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248659] = 3, + [250497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12225), 1, + sym__concat, + STATE(4254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 23, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282343,10 +284505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282356,15 +284516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248692] = 3, + [250536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 3, + ACTIONS(1250), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(1248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282374,8 +284533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282385,92 +284545,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [248725] = 6, + aux_sym_concatenation_token1, + [250569] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12216), 1, - sym__concat, - STATE(4591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(4848), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(12227), 1, + sym_file_descriptor, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4846), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [248764] = 3, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11885), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [250616] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11833), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(12227), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4593), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11831), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [250659] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11720), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11859), 1, + anon_sym_LT_LT_LT, + ACTIONS(12229), 1, + sym_file_descriptor, + ACTIONS(11887), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + STATE(4712), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11885), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11718), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248797] = 3, + [250702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 23, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282479,14 +284685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248830] = 3, + [250739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(4294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 23, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282496,10 +284706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282509,22 +284716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248863] = 5, + [250774] = 3, ACTIONS(3), 1, sym_comment, - STATE(4546), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12220), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12222), 2, + ACTIONS(5952), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12218), 20, + ACTIONS(5950), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -282534,6 +284737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282542,47 +284746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248900] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12224), 1, - sym__concat, - STATE(4591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [248939] = 3, + [250807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1258), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282605,36 +284776,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248972] = 11, + [250840] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, + ACTIONS(11697), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(12237), 1, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(12045), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11898), 2, + ACTIONS(12234), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, + STATE(4593), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + ACTIONS(11686), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12231), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282643,14 +284811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249021] = 3, + [250883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 3, + ACTIONS(12141), 1, + sym__special_character, + STATE(4659), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(4682), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282660,8 +284831,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282671,16 +284843,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [250920] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11791), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11859), 1, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [249054] = 3, + ACTIONS(12229), 1, + sym_file_descriptor, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4857), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11885), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11789), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [250963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 3, + ACTIONS(5956), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 22, + ACTIONS(5954), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282690,8 +284895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282701,32 +284908,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [249087] = 5, + [250996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 3, + ACTIONS(12211), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 17, + ACTIONS(12213), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282735,23 +284937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249124] = 8, + anon_sym_LT_LT_LT, + [251029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, + ACTIONS(11777), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11859), 1, anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + ACTIONS(12229), 1, sym_file_descriptor, - ACTIONS(11837), 2, + ACTIONS(11887), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11894), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4709), 2, + STATE(4940), 3, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, - ACTIONS(11835), 8, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282760,46 +284963,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11892), 9, + ACTIONS(11775), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [251072] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12240), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6610), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [251137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249167] = 11, + sym__special_character, + [251170] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4792), 1, + ACTIONS(4798), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, + ACTIONS(12227), 1, sym_file_descriptor, - ACTIONS(4157), 2, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11887), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4790), 3, + ACTIONS(4796), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4645), 3, + STATE(4587), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282808,29 +285086,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249216] = 5, + [251217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(5956), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 18, + ACTIONS(5954), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282840,85 +285116,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [249253] = 6, + [251250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12236), 1, - aux_sym_concatenation_token1, - ACTIONS(12239), 1, - sym__concat, - STATE(4591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(4654), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 19, + ACTIONS(4652), 22, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [249292] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(5212), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5210), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249341] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [251283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 3, + ACTIONS(12219), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(12221), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282928,8 +285162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282940,18 +285176,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [251316] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, anon_sym_BQUOTE, - [249374] = 4, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12242), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6472), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [251381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(5952), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 20, + ACTIONS(5950), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282961,6 +285240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -282972,27 +285252,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [249409] = 3, + [251414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12244), 1, sym__concat, + STATE(4628), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1207), 19, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [251453] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5515), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12248), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12251), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12246), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -283001,18 +285317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [249442] = 5, + [251490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12246), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(12205), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(12203), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283022,9 +285334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283034,18 +285345,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249479] = 4, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [251523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 3, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12253), 1, + sym__concat, + STATE(4254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283065,17 +285380,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249514] = 5, + [251562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(2139), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(2137), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283085,9 +285397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283097,22 +285408,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249551] = 8, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [251595] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, + ACTIONS(4320), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, + ACTIONS(11861), 1, sym_file_descriptor, - ACTIONS(11800), 2, + ACTIONS(4314), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4316), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4318), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(10446), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4709), 2, + ACTIONS(4261), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4278), 4, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11798), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -283121,112 +285447,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11892), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [249594] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12251), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6605), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [249659] = 8, + [251642] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(4769), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12259), 1, + ACTIONS(12227), 1, sym_file_descriptor, - ACTIONS(12167), 2, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(12256), 2, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11887), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4601), 3, + ACTIONS(4765), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 8, + ACTIONS(11885), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [251689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12255), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(12253), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249702] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [251722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4670), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, + ACTIONS(1278), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 19, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283237,6 +285532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283246,20 +285543,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249741] = 6, + aux_sym_concatenation_token1, + [251755] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12259), 1, + sym__concat, + STATE(4628), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 19, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [251794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(11865), 1, sym__concat, - STATE(4517), 1, + STATE(4542), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(5294), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 19, + ACTIONS(5292), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283279,14 +285610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249780] = 3, + [251833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 3, + ACTIONS(12141), 1, + sym__special_character, + STATE(4659), 1, + aux_sym__literal_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 22, + ACTIONS(5699), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283296,7 +285630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -283309,20 +285642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249813] = 6, + [251870] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12262), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11865), 1, + sym__concat, + STATE(4543), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5298), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4606), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 19, + ACTIONS(5296), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283342,31 +285675,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249852] = 6, + [251909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12264), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(11658), 2, + STATE(4620), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12251), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4606), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 19, + ACTIONS(12261), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12246), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -283375,17 +285707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249891] = 5, + [251946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, + ACTIONS(12141), 1, sym__special_character, - STATE(4596), 1, + STATE(4659), 1, aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(4648), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283407,15 +285739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249928] = 3, + [251983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 4, + ACTIONS(1290), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 21, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283425,8 +285756,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283436,27 +285768,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [249961] = 3, + aux_sym_concatenation_token1, + [252016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 3, + STATE(4620), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12266), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12268), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(12264), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -283465,121 +285801,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [249994] = 6, + [252053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, + ACTIONS(1306), 3, + sym_file_descriptor, sym__concat, - STATE(4577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 3, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 19, + ACTIONS(1304), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [250033] = 10, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [252086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(1286), 3, sym_file_descriptor, - ACTIONS(4171), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4253), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4255), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10930), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250080] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [252119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(1254), 3, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4601), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 8, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(11896), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250123] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [252152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 3, + ACTIONS(2139), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 22, + ACTIONS(2137), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283589,8 +285907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283601,21 +285921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [250156] = 6, + [252185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(12270), 1, aux_sym_concatenation_token1, - ACTIONS(12267), 1, + ACTIONS(12273), 1, sym__concat, - STATE(4582), 1, + STATE(4628), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 3, + ACTIONS(1237), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 19, + ACTIONS(1235), 19, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -283635,13 +285954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [250195] = 3, + [252224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(12215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(12217), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283664,14 +285983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [250228] = 3, + anon_sym_LT_LT_LT, + [252257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(12177), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 23, + ACTIONS(12175), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283681,10 +286001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283695,57 +286013,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250261] = 11, + anon_sym_BQUOTE, + [252290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(12155), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12157), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4513), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250310] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [252323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4866), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283756,6 +286062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283765,20 +286073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [250349] = 6, + aux_sym_concatenation_token1, + [252356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12269), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(12257), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(12255), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283788,6 +286091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -283799,19 +286103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250388] = 6, + anon_sym_BQUOTE, + [252389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12271), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1254), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283822,6 +286122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283831,15 +286133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250427] = 3, + aux_sym_concatenation_token1, + [252422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 3, + ACTIONS(12278), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 22, + ACTIONS(12276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283862,13 +286163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [250460] = 3, + anon_sym_LT_LT_LT, + [252455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4583), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 23, + ACTIONS(5699), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283878,10 +286186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283891,66 +286197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250493] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12273), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6565), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [250558] = 6, + [252494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4619), 1, + STATE(4584), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(2082), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283960,6 +286219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -283970,20 +286230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250597] = 6, + [252533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4620), 1, + STATE(4583), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(4648), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283993,6 +286252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284003,20 +286263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250636] = 6, + [252572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4619), 1, + STATE(4584), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(4652), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284026,6 +286285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284036,20 +286296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250675] = 6, + [252611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4620), 1, + STATE(4583), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(5709), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(5707), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284059,6 +286318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284069,14 +286329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250714] = 3, + [252650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 23, + ACTIONS(2137), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284086,10 +286351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284099,20 +286362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250747] = 6, + [252689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4619), 1, + STATE(4583), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(4682), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284122,6 +286384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284132,20 +286395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250786] = 6, + [252728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4620), 1, + STATE(4584), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(4686), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284155,6 +286417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284165,20 +286428,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250825] = 6, + [252767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4619), 1, + STATE(4807), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(1231), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284198,20 +286460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250864] = 6, + sym__special_character, + [252806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12280), 1, sym__concat, - STATE(4620), 1, + STATE(4153), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284232,20 +286494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250903] = 6, + [252845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12282), 1, sym__concat, - STATE(4667), 1, + STATE(4153), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 3, + ACTIONS(1215), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 19, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284265,50 +286526,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [250942] = 3, + anon_sym_LT_LT_LT, + [252884] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, - sym_file_descriptor, + ACTIONS(4366), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 23, - anon_sym_SEMI, + ACTIONS(11861), 1, + sym_file_descriptor, + ACTIONS(4316), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4318), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LT_LT_DASH, + ACTIONS(4364), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(10446), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2329), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250975] = 6, + [252931] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12284), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6611), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [252996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 3, + ACTIONS(12169), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 19, + ACTIONS(12167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284318,6 +286627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284328,20 +286638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251014] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [253029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4667), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 3, + ACTIONS(1233), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 19, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284351,6 +286657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284361,20 +286668,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251053] = 6, + sym__special_character, + anon_sym_BQUOTE, + [253062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 3, + ACTIONS(12286), 1, + sym_variable_name, + STATE(6656), 1, + sym_subscript, + ACTIONS(11837), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 19, + STATE(4652), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11835), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284394,14 +286703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251092] = 3, + [253101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, + ACTIONS(12288), 1, + sym_variable_name, + STATE(6656), 1, + sym_subscript, + ACTIONS(11764), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + STATE(4652), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11762), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284411,7 +286726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284422,15 +286736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [251125] = 3, + [253140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 23, + ACTIONS(1231), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284453,18 +286765,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251158] = 5, + sym__special_character, + [253173] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12291), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6521), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253238] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12293), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6530), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253303] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12295), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6532), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253368] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12297), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6509), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253433] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12299), 1, + anon_sym_RPAREN_RPAREN, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6465), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, + ACTIONS(12301), 1, sym__special_character, - STATE(4596), 1, + STATE(4659), 1, aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(1320), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1318), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284486,20 +287028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251195] = 6, + [253535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12304), 1, sym__concat, - STATE(4667), 1, + STATE(4254), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 3, + ACTIONS(1215), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 19, + ACTIONS(1213), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284519,14 +287061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251234] = 3, + [253574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(12209), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(12207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284536,9 +287078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284548,14 +287089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [251267] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [253607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 23, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284565,7 +287108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -284578,102 +287120,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251300] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12275), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6466), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [251365] = 8, + aux_sym_concatenation_token1, + [253640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12202), 1, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11782), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4553), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 7, + ACTIONS(5699), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11835), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [251408] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [253679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4527), 1, + STATE(4646), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 3, + ACTIONS(2084), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 19, + ACTIONS(2082), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284693,14 +287186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251447] = 3, + anon_sym_LT_LT_LT, + [253718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(5707), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284711,8 +287210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284722,15 +287219,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [251480] = 3, + anon_sym_LT_LT_LT, + [253757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 3, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4646), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(2137), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284740,7 +287242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284752,20 +287253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [251513] = 6, + [253796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12277), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4214), 1, + STATE(4645), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(4648), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284785,20 +287285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251552] = 6, + anon_sym_LT_LT_LT, + [253835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4649), 1, + STATE(4646), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(4652), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284818,20 +287318,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251591] = 6, + anon_sym_LT_LT_LT, + [253874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4672), 1, + STATE(4645), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(4682), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284851,20 +287351,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251630] = 6, + anon_sym_LT_LT_LT, + [253913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4649), 1, + STATE(4646), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(4686), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284884,20 +287384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251669] = 6, + anon_sym_LT_LT_LT, + [253952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12306), 1, sym__concat, - STATE(4672), 1, + STATE(4254), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284918,19 +287418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [251708] = 6, + [253991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284941,6 +287436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284950,20 +287447,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251747] = 6, + aux_sym_concatenation_token1, + [254024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12308), 1, sym__concat, - STATE(4672), 1, + STATE(4254), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284984,30 +287481,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [251786] = 6, + [254063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + STATE(5515), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12248), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12251), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(12246), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -285017,13 +287513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [251825] = 3, + [254100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 23, + ACTIONS(5699), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285033,10 +287535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285046,14 +287545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251858] = 3, + anon_sym_BQUOTE, + [254139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4673), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 23, + ACTIONS(2082), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285063,10 +287568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285076,15 +287578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251891] = 3, + anon_sym_BQUOTE, + [254178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, sym__concat, + STATE(4671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(4648), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285095,8 +287602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285106,97 +287611,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [251924] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12283), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6532), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [251989] = 6, + [254217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12267), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4577), 1, + STATE(4673), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(4654), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 19, + ACTIONS(4652), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [252028] = 5, + [254256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(5707), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285207,8 +287668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285218,13 +287677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252065] = 3, + anon_sym_BQUOTE, + [254295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4673), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 23, + ACTIONS(2137), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285234,10 +287700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285247,14 +287710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [252098] = 3, + anon_sym_BQUOTE, + [254334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(4682), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285265,8 +287734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285276,16 +287743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [252131] = 3, + anon_sym_BQUOTE, + [254373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 3, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(4673), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(4686), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285295,7 +287766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -285306,25 +287776,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [252164] = 5, + [254412] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, + ACTIONS(4794), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12227), 1, + sym_file_descriptor, + ACTIONS(4257), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4159), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4669), 3, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4792), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 18, + ACTIONS(11885), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [254459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12278), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -285332,6 +287833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -285340,20 +287842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252201] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [254492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12285), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(12151), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(12153), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285363,7 +287860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285373,15 +287873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252240] = 3, + anon_sym_LT_LT_LT, + [254525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 4, + ACTIONS(2084), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(2082), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285391,8 +287890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285402,56 +287903,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [254558] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12314), 1, + anon_sym_RBRACE3, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, - [252273] = 8, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7270), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [254616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(12177), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4533), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(12175), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [252316] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [254648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12287), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(12151), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(12153), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285462,6 +287992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285471,65 +288003,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252355] = 19, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [254680] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12330), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7417), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + anon_sym_POUND, + anon_sym__, + [254738] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12289), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6578), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12332), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, sym_command_substitution, - [252420] = 6, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7312), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [254796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12291), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(4688), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [254828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12334), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(12336), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285539,6 +288134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -285550,59 +288146,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [252459] = 19, - ACTIONS(71), 1, + [254860] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12338), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7049), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [254918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12089), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(12091), 1, aux_sym_number_token2, - ACTIONS(12093), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12293), 1, - anon_sym_RPAREN_RPAREN, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6464), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [252524] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [254950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 2, + ACTIONS(4688), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 22, + ACTIONS(4686), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285612,10 +288234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285625,101 +288245,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252556] = 18, - ACTIONS(71), 1, + anon_sym_BQUOTE, + [254982] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, - sym__c_binary_expression, - STATE(3171), 1, - sym__c_postfix_expression, - STATE(6499), 1, - sym__c_expression, - STATE(6692), 1, - sym__c_variable_assignment, - ACTIONS(12299), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3164), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12340), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, sym_command_substitution, - [252618] = 16, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7190), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [255040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12344), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12342), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [255072] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, - anon_sym_RBRACE3, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - STATE(3386), 1, + ACTIONS(12346), 1, + anon_sym_RBRACE3, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6939), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6770), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [252676] = 3, + [255130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1250), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 20, + ACTIONS(1248), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -285740,14 +288388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [252708] = 3, + [255162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12341), 3, + ACTIONS(12211), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 21, + ACTIONS(12213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285769,56 +288417,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [252740] = 16, + [255194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255258] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12345), 1, + ACTIONS(12348), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6915), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6714), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [252798] = 3, + [255316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 3, + ACTIONS(12352), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(12350), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285828,8 +288533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285839,15 +288546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [252830] = 3, + [255348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 3, + ACTIONS(12257), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 21, + ACTIONS(12255), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285857,8 +288562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285868,43 +288574,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [252862] = 3, + anon_sym_LT_LT_LT, + [255380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, - sym_file_descriptor, + ACTIONS(1282), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(1280), 20, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [252894] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 2, + ACTIONS(12278), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 22, + ACTIONS(12276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285914,7 +288620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -285927,56 +288632,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252926] = 16, + anon_sym_LT_LT_LT, + [255444] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12359), 1, + ACTIONS(12354), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7326), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6761), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [252984] = 3, + [255502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 3, + ACTIONS(2084), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(2082), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285986,8 +288691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285997,57 +288704,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [253016] = 16, + [255534] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12365), 1, + ACTIONS(12356), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7228), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6782), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [253074] = 3, + [255592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 3, + ACTIONS(12358), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(12360), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286069,85 +288775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [253106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [253138] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12367), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7120), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [253196] = 3, + [255624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 3, + ACTIONS(12362), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, + ACTIONS(12364), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286169,98 +288804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [253228] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12369), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6944), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [253286] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12371), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7036), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [253344] = 3, + [255656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 3, + ACTIONS(12368), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(12366), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286270,8 +288820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286281,14 +288833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [253376] = 3, + [255688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(12370), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(12372), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286298,9 +288850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286310,56 +288861,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [253408] = 16, + anon_sym_BQUOTE, + [255720] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12377), 1, + ACTIONS(12374), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7071), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6891), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [253466] = 3, + [255778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(12376), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(12378), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286369,10 +288921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286382,142 +288932,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253498] = 16, + anon_sym_BQUOTE, + [255810] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12379), 1, + ACTIONS(12380), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6868), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6929), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [253556] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, - anon_sym_BQUOTE, - ACTIONS(12319), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, - sym__c_binary_expression, - STATE(3171), 1, - sym__c_postfix_expression, - STATE(6562), 1, - sym__c_expression, - STATE(6692), 1, - sym__c_variable_assignment, - ACTIONS(12299), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3164), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [253618] = 16, + [255868] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12381), 1, + ACTIONS(12382), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7073), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7347), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [253676] = 3, + [255926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 3, + ACTIONS(12145), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(12143), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286539,56 +289045,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253708] = 16, + anon_sym_LT_LT_LT, + [255958] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12383), 1, + ACTIONS(12384), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7161), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7009), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [253766] = 3, + [256016] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12390), 1, + aux_sym__c_word_token1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, + aux_sym_number_token1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12404), 1, + anon_sym_BQUOTE, + ACTIONS(12406), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + STATE(6522), 1, + sym__c_expression, + STATE(6652), 1, + sym__c_variable_assignment, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3242), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [256078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [256110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 3, + ACTIONS(2139), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 21, + ACTIONS(2137), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286598,8 +289177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286609,85 +289190,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [253798] = 16, + [256142] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12389), 1, + ACTIONS(12408), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7570), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6916), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [253856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12393), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [253888] = 3, + [256200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(12165), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 22, + ACTIONS(12163), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286697,7 +289248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286710,84 +289260,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253920] = 16, + anon_sym_LT_LT_LT, + [256232] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12399), 1, + ACTIONS(12410), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7268), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7224), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [253978] = 3, + [256290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 2, - sym_file_descriptor, + ACTIONS(1258), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 22, + ACTIONS(1256), 20, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [254010] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [256322] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12390), 1, + aux_sym__c_word_token1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, + aux_sym_number_token1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12404), 1, + anon_sym_BQUOTE, + ACTIONS(12406), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + STATE(6549), 1, + sym__c_expression, + STATE(6652), 1, + sym__c_variable_assignment, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3242), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [256384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(12414), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 22, + ACTIONS(12412), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286810,14 +289405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254042] = 3, + [256416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 3, + ACTIONS(4654), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 21, + ACTIONS(4652), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286827,8 +289421,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286838,135 +289433,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [254074] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, - sym_file_descriptor, - ACTIONS(4290), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4292), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4294), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(2503), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [254120] = 16, + anon_sym_LT_LT_LT, + [256448] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12405), 1, + ACTIONS(12416), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7176), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [254178] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12407), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, + STATE(6300), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7374), 1, + STATE(7007), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [254236] = 3, + [256506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 3, + ACTIONS(12418), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 21, + ACTIONS(12420), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286988,13 +289505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254268] = 3, + [256538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(12422), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(12424), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287004,10 +289522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287017,14 +289533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254300] = 3, + anon_sym_BQUOTE, + [256570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 3, + ACTIONS(12426), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(12428), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287046,29 +289563,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254332] = 5, + [256602] = 3, ACTIONS(3), 1, sym_comment, - STATE(4716), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(12430), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12413), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 19, + ACTIONS(12432), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -287077,14 +289591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254368] = 3, + anon_sym_BQUOTE, + [256634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 3, + ACTIONS(12215), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(12217), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287094,8 +289608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287105,15 +289621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [254400] = 3, + [256666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(12436), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 21, + ACTIONS(12434), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287123,6 +289637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -287135,13 +289650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254432] = 3, + [256698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 2, + ACTIONS(12438), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 22, + ACTIONS(12440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287151,9 +289667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287163,14 +289678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [254464] = 3, + anon_sym_BQUOTE, + [256730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(12442), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 22, + ACTIONS(12444), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287180,10 +289696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287193,97 +289707,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254496] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12420), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6722), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [254554] = 16, + [256762] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12422), 1, + ACTIONS(12446), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7237), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6735), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [254612] = 3, + [256820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 2, + ACTIONS(12450), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 22, + ACTIONS(12448), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287306,72 +289779,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [254676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12424), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [254708] = 3, + [256852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 3, + ACTIONS(12344), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(12342), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287381,8 +289795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287392,128 +289808,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [254740] = 16, + [256884] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12428), 1, + ACTIONS(12452), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7238), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [254798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12140), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [254830] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12430), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, + STATE(6300), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6781), 1, + STATE(7163), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [254888] = 3, + [256942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 3, + ACTIONS(12278), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(12276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287523,8 +289866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287534,48 +289879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [254920] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 7, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11949), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [254962] = 3, + [256974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 2, + ACTIONS(12456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 22, + ACTIONS(12454), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287598,48 +289908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254994] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(12438), 1, - sym_file_descriptor, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11949), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11790), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [255036] = 3, + [257006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 3, + ACTIONS(12458), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 21, + ACTIONS(12460), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287661,14 +289937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [255068] = 3, + [257038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 3, + ACTIONS(12334), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(12336), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287690,147 +289966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [255100] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [255136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12418), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [255168] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12440), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7295), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [255226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [255260] = 3, + [257070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1302), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(1300), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -287851,81 +289995,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [255292] = 8, + [257102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12448), 1, + ACTIONS(12211), 2, sym_file_descriptor, - ACTIONS(12167), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12445), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(12213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(12442), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [255334] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(12438), 1, - sym_file_descriptor, - ACTIONS(11951), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4709), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11949), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11892), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [255376] = 3, + anon_sym_LT_LT_LT, + [257134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(12278), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(12276), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287935,9 +290041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287947,78 +290052,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [255408] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(12438), 1, - sym_file_descriptor, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4678), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11949), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11902), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [255450] = 3, + anon_sym_BQUOTE, + [257166] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [255482] = 3, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12462), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7161), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [257224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 3, + ACTIONS(2139), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 21, + ACTIONS(2137), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288028,8 +290111,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288039,16 +290123,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255514] = 3, + anon_sym_LT_LT_LT, + [257256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1266), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 20, + ACTIONS(1264), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -288069,27 +290153,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [255546] = 3, + [257288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + STATE(4917), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(12464), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12264), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -288098,14 +290184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255578] = 3, + [257324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 3, + ACTIONS(2084), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 21, + ACTIONS(2082), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288127,14 +290213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [255610] = 3, + [257356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 3, + ACTIONS(12370), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 21, + ACTIONS(12372), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288156,55 +290242,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [255642] = 16, + [257388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(1274), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12459), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7300), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [255700] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [257420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(12352), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(12350), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288227,328 +290300,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [255764] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12461), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7346), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [255822] = 16, + [257452] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12463), 1, + ACTIONS(12466), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6917), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [255880] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12469), 1, - aux_sym__c_word_token1, - ACTIONS(12471), 1, - anon_sym_DQUOTE, - ACTIONS(12473), 1, - aux_sym_number_token1, - ACTIONS(12475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, - anon_sym_BQUOTE, - ACTIONS(12481), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(6429), 1, - sym__c_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + STATE(6299), 1, sym_command_substitution, - [255942] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12483), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, + STATE(6300), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, STATE(6819), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256000] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12469), 1, - aux_sym__c_word_token1, - ACTIONS(12471), 1, - anon_sym_DQUOTE, - ACTIONS(12473), 1, - aux_sym_number_token1, - ACTIONS(12475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, - anon_sym_BQUOTE, - ACTIONS(12481), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(6439), 1, - sym__c_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [256062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256094] = 16, + [257510] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12485), 1, + ACTIONS(12468), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6897), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7087), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256152] = 3, + [257568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 3, + ACTIONS(12470), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(12472), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288570,14 +290413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [256184] = 3, + [257600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 3, + ACTIONS(12474), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 21, + ACTIONS(12476), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288599,14 +290442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [256216] = 3, + [257632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 3, + ACTIONS(12478), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 21, + ACTIONS(12480), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288628,44 +290471,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [256248] = 3, + [257664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12482), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 20, + ACTIONS(12484), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256280] = 3, + [257696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1262), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 20, + ACTIONS(1260), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -288686,13 +290529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [256312] = 3, + [257728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 2, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 22, + ACTIONS(4686), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288715,13 +290558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256344] = 3, + [257760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(12173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(12171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288744,15 +290587,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256376] = 3, + [257792] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12486), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7492), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [257850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 20, + ACTIONS(1235), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -288773,14 +290658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [256408] = 3, + [257882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 3, + ACTIONS(5298), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 21, + ACTIONS(5296), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288790,8 +290675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288801,14 +290687,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [257914] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, - [256440] = 3, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12488), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6917), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [257972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(12219), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(12221), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288831,13 +290758,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [256472] = 3, + [258004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(12492), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 22, + ACTIONS(12490), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288860,14 +290787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256504] = 3, + [258036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 3, + ACTIONS(12458), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 21, + ACTIONS(12460), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288889,13 +290816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [256536] = 3, + [258068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 2, + ACTIONS(5931), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 22, + ACTIONS(5929), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288918,13 +290845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256568] = 3, + [258100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 2, + ACTIONS(5931), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 22, + ACTIONS(5929), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288947,43 +290874,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256600] = 3, + [258132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12205), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 20, + ACTIONS(12203), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [258164] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256632] = 3, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12494), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7321), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [258222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, + ACTIONS(12209), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(12207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288993,8 +290961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289004,14 +290973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [256664] = 3, + anon_sym_LT_LT_LT, + [258254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 2, + ACTIONS(12496), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 22, + ACTIONS(12498), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289021,10 +290991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289034,13 +291002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256696] = 3, + anon_sym_BQUOTE, + [258286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 2, + ACTIONS(12502), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 22, + ACTIONS(12500), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289063,55 +291032,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256728] = 16, + [258318] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12507), 1, + ACTIONS(12504), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7365), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6975), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256786] = 3, + [258376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 22, + ACTIONS(2082), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289121,7 +291090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -289134,56 +291102,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256818] = 16, + anon_sym_LT_LT_LT, + [258408] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12513), 1, + ACTIONS(12506), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6759), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [258466] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12508), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, sym_command_substitution, - STATE(6847), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7115), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256876] = 3, + [258524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 3, + ACTIONS(12512), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 21, + ACTIONS(12510), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289193,8 +291203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289204,15 +291216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [256908] = 3, + [258556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 3, + ACTIONS(12470), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 21, + ACTIONS(12472), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289222,8 +291232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289233,15 +291245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [256940] = 3, + [258588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 3, + ACTIONS(12438), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(12440), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289251,8 +291261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289262,14 +291274,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [258620] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12514), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6972), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [258678] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, - [256972] = 3, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12516), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7397), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [258736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12341), 2, + ACTIONS(12520), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 22, + ACTIONS(12518), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289292,14 +291387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257004] = 3, + [258768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 3, + ACTIONS(12524), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 21, + ACTIONS(12522), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289309,8 +291403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289320,56 +291416,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [257036] = 16, + [258800] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12515), 1, + ACTIONS(12526), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7433), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7005), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257094] = 3, + [258858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 2, + ACTIONS(12376), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 22, + ACTIONS(12378), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289392,13 +291487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257126] = 3, + [258890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(12376), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 22, + ACTIONS(12378), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289421,100 +291516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257158] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12517), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6873), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [257216] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, - anon_sym_BQUOTE, - ACTIONS(12319), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, - sym__c_binary_expression, - STATE(3171), 1, - sym__c_postfix_expression, - STATE(6534), 1, - sym__c_expression, - STATE(6692), 1, - sym__c_variable_assignment, - ACTIONS(12299), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3164), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [257278] = 3, + [258922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 3, + ACTIONS(12528), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 21, + ACTIONS(12530), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289536,99 +291545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [257310] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12523), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6797), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [257368] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6646), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [257430] = 3, + [258954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 2, + ACTIONS(12334), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 22, + ACTIONS(12336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289651,55 +291574,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257462] = 16, + [258986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12529), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6901), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [257520] = 3, + ACTIONS(12334), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12336), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [259018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, + ACTIONS(12496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 22, + ACTIONS(12498), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289722,91 +291632,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257552] = 10, + [259050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(12155), 2, sym_file_descriptor, - ACTIONS(4157), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12157), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + anon_sym_LT_LT_LT, + [259082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12430), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12432), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5180), 3, + anon_sym_LT_LT_DASH, + [259114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12532), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12534), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [259146] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5515), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12248), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12251), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12246), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [257598] = 16, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [259182] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12535), 1, + ACTIONS(12536), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6740), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [259240] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12538), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, sym_command_substitution, - STATE(7135), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7047), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257656] = 3, + [259298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12540), 1, + sym__concat, + STATE(4254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 22, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289816,10 +291856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289829,13 +291866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257688] = 3, + [259336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(12173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 22, + ACTIONS(12171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289845,7 +291882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -289858,13 +291894,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257720] = 3, + anon_sym_LT_LT_LT, + [259368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12542), 1, + sym__concat, + STATE(4254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [259406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(12546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(12544), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289874,6 +291943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -289886,229 +291956,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [257752] = 16, + [259438] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 1, + ts_builtin_sym_end, + ACTIONS(4636), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12008), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4502), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11754), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4634), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4511), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11752), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [259484] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12541), 1, + ACTIONS(12548), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6924), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7235), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257810] = 16, + [259542] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5870), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12554), 1, + anon_sym_LT_LT_LT, + ACTIONS(12556), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12552), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12550), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [259590] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12543), 1, + ACTIONS(12558), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6788), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6870), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [257900] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6685), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [257962] = 16, + [259648] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12545), 1, + ACTIONS(12560), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6984), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7149), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258020] = 5, + [259706] = 3, ACTIONS(3), 1, sym_comment, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12133), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12136), 2, + ACTIONS(12562), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 19, + ACTIONS(12564), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290117,133 +292183,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258056] = 16, + anon_sym_BQUOTE, + [259738] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12547), 1, + ACTIONS(12566), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7504), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6716), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258114] = 16, + [259796] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4261), 1, + anon_sym_RPAREN, + ACTIONS(4320), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12022), 1, + sym_file_descriptor, + ACTIONS(4491), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4314), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11726), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [259842] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12549), 1, + ACTIONS(12568), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6957), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6971), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258172] = 10, + [259900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(12532), 2, sym_file_descriptor, - ACTIONS(4292), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12534), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4294), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4513), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4255), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [258218] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [259932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(12532), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(12534), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290266,13 +292362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258250] = 3, + [259964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(12512), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(12510), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290282,10 +292379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290295,127 +292390,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258282] = 16, + anon_sym_BQUOTE, + [259996] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12551), 1, + ACTIONS(12570), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6716), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6788), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258340] = 3, - ACTIONS(3), 1, + [260054] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(12555), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [258372] = 16, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, + anon_sym_BQUOTE, + ACTIONS(12201), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6631), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [260116] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12557), 1, + ACTIONS(12572), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6992), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7550), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258430] = 3, + [260174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 3, + ACTIONS(12145), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 21, + ACTIONS(12143), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290437,14 +292548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [258462] = 3, + [260206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 3, + ACTIONS(12370), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(12372), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290454,8 +292564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290465,14 +292577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [258494] = 3, + [260238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 2, + ACTIONS(12370), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 22, + ACTIONS(12372), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290495,13 +292606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258526] = 3, + [260270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(12426), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 22, + ACTIONS(12428), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290524,29 +292635,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258558] = 5, + [260302] = 3, ACTIONS(3), 1, sym_comment, - STATE(4716), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(12458), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12563), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 19, + ACTIONS(12460), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290555,86 +292664,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258594] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12565), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7389), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [258652] = 3, + [260334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12458), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 20, + ACTIONS(12460), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [258684] = 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [260366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1294), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 20, + ACTIONS(1292), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -290655,84 +292722,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [258716] = 3, + [260398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(4654), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 20, + ACTIONS(4652), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [258748] = 16, + [260430] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12567), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7026), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [258806] = 3, + ACTIONS(12554), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [260470] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12554), 1, + anon_sym_LT_LT_LT, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4290), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [260508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 2, + ACTIONS(12524), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 22, + ACTIONS(12522), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290742,10 +292833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290755,13 +292844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258838] = 3, + anon_sym_BQUOTE, + [260540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(12422), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 22, + ACTIONS(12424), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290784,14 +292874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258870] = 3, + [260572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 3, + ACTIONS(12520), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 21, + ACTIONS(12518), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290813,55 +292903,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [258902] = 16, + [260604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12569), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7246), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [258960] = 3, + ACTIONS(12576), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12574), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [260636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(12576), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 22, + ACTIONS(12574), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290884,126 +292961,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258992] = 16, + [260668] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12571), 1, + ACTIONS(12578), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7054), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6845), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12113), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259082] = 16, + [260726] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12573), 1, + ACTIONS(12580), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7118), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7177), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259140] = 3, + [260784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(12532), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(12534), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291013,9 +293062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291025,56 +293073,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259172] = 16, + anon_sym_BQUOTE, + [260816] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12575), 1, + ACTIONS(12582), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7076), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6816), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259230] = 3, + [260874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 2, + ACTIONS(12145), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 22, + ACTIONS(12143), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291097,13 +293145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259262] = 3, + [260906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(12165), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(12163), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291113,6 +293161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -291125,15 +293174,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259294] = 3, + [260938] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 3, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12584), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6868), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [260996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12173), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 21, + ACTIONS(12171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291155,14 +293245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [259326] = 3, + [261028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 3, + ACTIONS(1233), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 21, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291172,8 +293261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291183,14 +293273,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + sym__special_character, + [261060] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, - [259358] = 3, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12586), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7299), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [261118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(12219), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(12221), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291200,6 +293332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -291212,15 +293345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259390] = 3, + [261150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 3, + ACTIONS(12165), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 21, + ACTIONS(12163), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291242,14 +293374,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [259422] = 3, + [261182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 3, + ACTIONS(1314), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [261214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12562), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 21, + ACTIONS(12564), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291259,8 +293419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291270,100 +293432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [259454] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, - anon_sym_BQUOTE, - ACTIONS(12319), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, - sym__c_binary_expression, - STATE(3171), 1, - sym__c_postfix_expression, - STATE(6659), 1, - sym__c_expression, - STATE(6692), 1, - sym__c_variable_assignment, - ACTIONS(12299), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3164), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [259516] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12581), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6802), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [259574] = 3, + [261246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 2, + ACTIONS(12482), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 22, + ACTIONS(12484), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291373,6 +293448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -291385,56 +293461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259606] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12583), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7090), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [259664] = 3, + [261278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(12414), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(12412), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291444,9 +293478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291456,15 +293489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259696] = 3, + anon_sym_BQUOTE, + [261310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 3, + ACTIONS(12456), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(12454), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291486,85 +293519,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [259728] = 16, + [261342] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(4261), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12585), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7047), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [259786] = 18, + ACTIONS(4854), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12020), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4852), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11783), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4850), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11781), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [261388] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12303), 1, + ACTIONS(12592), 1, aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - STATE(6628), 1, - sym__c_expression, - STATE(6692), 1, + STATE(6401), 1, sym__c_variable_assignment, - ACTIONS(12299), 2, + STATE(6442), 1, + sym__c_expression, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3164), 7, + STATE(3060), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -291572,13 +293599,14 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [259848] = 3, + [261450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(12352), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 22, + ACTIONS(12350), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291588,10 +293616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291601,13 +293627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259880] = 3, + anon_sym_BQUOTE, + [261482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(12352), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(12350), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291617,9 +293645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291629,98 +293656,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259912] = 16, + anon_sym_BQUOTE, + [261514] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11248), 1, + anon_sym_DOLLAR, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12592), 1, + aux_sym__c_word_token1, + ACTIONS(12594), 1, + anon_sym_DQUOTE, + ACTIONS(12596), 1, + aux_sym_number_token1, + ACTIONS(12598), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12600), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12602), 1, + anon_sym_BQUOTE, + ACTIONS(12604), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + STATE(6389), 1, + sym__c_expression, + STATE(6401), 1, + sym__c_variable_assignment, + ACTIONS(12588), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3060), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [261576] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12587), 1, + ACTIONS(12606), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6736), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6839), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259970] = 16, + [261634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12177), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12175), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [261666] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12589), 1, + ACTIONS(12608), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7107), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7311), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260028] = 3, + [261724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 2, + ACTIONS(12215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 22, + ACTIONS(12217), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291730,7 +293830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -291743,55 +293842,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260060] = 16, + anon_sym_LT_LT_LT, + [261756] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12595), 1, + ACTIONS(12610), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7124), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6944), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260118] = 3, + [261814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 2, + ACTIONS(12502), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 22, + ACTIONS(12500), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291801,10 +293902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291814,43 +293913,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260150] = 3, + anon_sym_BQUOTE, + [261846] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 2, - sym_file_descriptor, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12612), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7065), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [261904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 22, + ACTIONS(1304), 20, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [261936] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_RPAREN, + ACTIONS(4366), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12022), 1, + sym_file_descriptor, + ACTIONS(4491), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4364), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4413), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11726), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [260182] = 3, + [261982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(12492), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(12490), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291872,13 +294050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [260214] = 3, + [262014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 2, + ACTIONS(12418), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 22, + ACTIONS(12420), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291901,13 +294079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260246] = 3, + [262046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(5931), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 22, + ACTIONS(5929), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291917,10 +294096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291930,145 +294107,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260278] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12601), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7013), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [260336] = 16, + [262078] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12603), 1, + ACTIONS(12614), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7432), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [260394] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12605), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, + STATE(6300), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6825), 1, + STATE(7099), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260452] = 6, + [262136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12607), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(12169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(12167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292079,6 +294167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292088,19 +294178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260490] = 6, + anon_sym_LT_LT_LT, + [262168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12609), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(12257), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(12255), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292110,6 +294196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -292120,55 +294207,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260528] = 16, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [262200] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12390), 1, + aux_sym__c_word_token1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, + aux_sym_number_token1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12611), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + STATE(6474), 1, + sym__c_expression, + STATE(6652), 1, + sym__c_variable_assignment, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3242), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(7148), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [260586] = 3, + [262262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(12546), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(12544), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292178,10 +294269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292191,55 +294280,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260618] = 16, + anon_sym_BQUOTE, + [262294] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12613), 1, + ACTIONS(12616), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7151), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6861), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260676] = 3, + [262352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12368), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12366), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [262384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(12362), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(12364), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292262,78 +294381,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260708] = 16, + [262416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5931), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5929), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [262448] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12615), 1, + ACTIONS(12618), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7168), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7209), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12101), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [260798] = 3, + [262506] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1254), 4, @@ -292362,19 +294481,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [260830] = 6, + [262538] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12620), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6867), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [262596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4866), 1, + STATE(4807), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(5701), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 19, + ACTIONS(5699), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292394,19 +294555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260868] = 6, + [262634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4867), 1, + STATE(4809), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 19, + ACTIONS(2082), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292426,19 +294587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260906] = 6, + [262672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4866), 1, + STATE(4807), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 19, + ACTIONS(4648), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292458,19 +294619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260944] = 6, + [262710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4867), 1, + STATE(4809), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 19, + ACTIONS(4652), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292490,19 +294651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260982] = 6, + [262748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4866), 1, + STATE(4807), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(5709), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 19, + ACTIONS(5707), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292522,19 +294683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261020] = 6, + [262786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4867), 1, + STATE(4809), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 19, + ACTIONS(2137), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292554,19 +294715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261058] = 6, + [262824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4866), 1, + STATE(4807), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(4684), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 19, + ACTIONS(4682), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292586,19 +294747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261096] = 6, + [262862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4867), 1, + STATE(4809), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 19, + ACTIONS(4686), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292618,98 +294779,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261134] = 16, + [262900] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12617), 1, + ACTIONS(12622), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7359), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7502), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261192] = 16, + [262958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12576), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12574), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [262990] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12619), 1, + ACTIONS(12624), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7184), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6888), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261250] = 3, + [263048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 3, + ACTIONS(12474), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 21, + ACTIONS(12476), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292719,8 +294908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292730,14 +294921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [261282] = 3, + [263080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(5952), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(5950), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292759,44 +294950,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261314] = 3, + [263112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, - sym_file_descriptor, + ACTIONS(1310), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(1308), 20, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [263144] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5863), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12554), 1, + anon_sym_LT_LT_LT, + ACTIONS(12556), 1, + sym_file_descriptor, + STATE(4765), 1, + sym_herestring_redirect, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12552), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12550), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261346] = 3, + [263192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 3, + ACTIONS(12344), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(12342), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292818,97 +295045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [261378] = 16, + [263224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12621), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7086), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [261436] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12623), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7199), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [261494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12101), 2, + ACTIONS(12576), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(12574), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292918,9 +295062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292930,106 +295073,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261526] = 16, + anon_sym_BQUOTE, + [263256] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12625), 1, + ACTIONS(12626), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7213), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7262), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261584] = 3, + [263314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, - sym_file_descriptor, + ACTIONS(1254), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 22, + ACTIONS(1252), 20, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [261616] = 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [263346] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, + ACTIONS(4498), 1, + ts_builtin_sym_end, + ACTIONS(4504), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(12008), 1, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + ACTIONS(4502), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(11754), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5159), 3, + ACTIONS(4500), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4731), 3, + STATE(4511), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(11752), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -293038,84 +295181,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [261662] = 16, + [263392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12627), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6846), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [261720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12442), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 20, + ACTIONS(12444), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [261752] = 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [263424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 2, + ACTIONS(5956), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 22, + ACTIONS(5954), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293137,122 +295239,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261784] = 3, + [263456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12478), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 20, + ACTIONS(12480), 22, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [261816] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5208), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5206), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [261862] = 16, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [263488] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12629), 1, + ACTIONS(12628), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7229), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7204), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261920] = 3, + [263546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 3, + ACTIONS(12257), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(12255), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293262,8 +295326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293273,15 +295339,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [263578] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, - [261952] = 3, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12630), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7086), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [263636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 3, + ACTIONS(12436), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(12434), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293303,211 +295410,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [261984] = 16, + [263668] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12631), 1, + ACTIONS(12632), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7251), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7246), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262042] = 16, - ACTIONS(3), 1, + [263726] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12185), 1, + aux_sym__c_word_token1, + ACTIONS(12187), 1, + anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, + aux_sym_number_token1, + ACTIONS(12193), 1, + aux_sym_number_token2, + ACTIONS(12195), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12633), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + STATE(6629), 1, + sym__c_expression, + STATE(6671), 1, + sym__c_variable_assignment, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3228), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(6717), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [262100] = 16, + [263788] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12635), 1, + ACTIONS(12634), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7274), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7285), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12639), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [262190] = 3, + [263846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 2, + STATE(4917), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12251), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12636), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [262222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12559), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 22, + ACTIONS(12246), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -293516,197 +295569,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262254] = 16, + [263882] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12645), 1, + ACTIONS(12639), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6865), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7277), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [262344] = 16, + [263940] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12647), 1, + ACTIONS(12641), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7043), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7136), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262402] = 3, + [263998] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [262434] = 16, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12643), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7148), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [264056] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12649), 1, + ACTIONS(12645), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(7293), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7319), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262492] = 3, + [264114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(12177), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(12175), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293729,13 +295766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [262524] = 3, + [264146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(12211), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(12213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293745,6 +295782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -293757,80 +295795,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [262556] = 10, + [264178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(12528), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12530), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5285), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [262602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [262634] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [264210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 3, + ACTIONS(12219), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 21, + ACTIONS(12221), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293852,14 +295853,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [262666] = 3, + [264242] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12647), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6978), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [264300] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12649), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6736), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [264358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 3, + ACTIONS(12344), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 21, + ACTIONS(12342), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293881,14 +295966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [262698] = 3, + [264390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 3, + ACTIONS(12376), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 21, + ACTIONS(12378), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293910,14 +295995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [262730] = 3, + [264422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 3, + ACTIONS(12215), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 21, + ACTIONS(12217), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293927,9 +296012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293939,14 +296023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262762] = 3, + anon_sym_BQUOTE, + [264454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 3, + ACTIONS(2139), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(2137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293968,169 +296053,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [262794] = 3, + [264486] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, anon_sym_BQUOTE, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [262826] = 16, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12651), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7339), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [264544] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12651), 1, + ACTIONS(12653), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6752), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7146), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262884] = 16, + [264602] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12653), 1, + ACTIONS(12655), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6810), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7365), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262942] = 16, + [264660] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12655), 1, + ACTIONS(12657), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6741), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7392), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [263000] = 3, + [264718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12639), 3, + ACTIONS(12358), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 21, + ACTIONS(12360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294140,8 +296237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294151,15 +296250,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [264750] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12659), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7410), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [264808] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12661), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(6966), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [264866] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, anon_sym_BQUOTE, - [263032] = 3, + ACTIONS(4914), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12020), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4852), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11783), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4912), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4376), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11781), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [264912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 3, + ACTIONS(12450), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 21, + ACTIONS(12448), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294181,56 +296399,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [263064] = 16, + [264944] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12657), 1, + ACTIONS(12663), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7421), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [265002] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12665), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(7491), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [265060] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12667), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, sym_command_substitution, - STATE(6804), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7252), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [263122] = 3, + [265118] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 3, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12669), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7240), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [265176] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12316), 1, + anon_sym_BANG2, + ACTIONS(12320), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12322), 1, + anon_sym_BQUOTE, + ACTIONS(12324), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12326), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12328), 1, + sym_variable_name, + ACTIONS(12671), 1, + anon_sym_RBRACE3, + STATE(3456), 1, + sym_subscript, + STATE(6299), 1, + sym_command_substitution, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7327), 1, + sym__expansion_body, + ACTIONS(12318), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12310), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12312), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [265234] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12390), 1, + aux_sym__c_word_token1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, + aux_sym_number_token1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12404), 1, + anon_sym_BQUOTE, + ACTIONS(12406), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + STATE(6652), 1, + sym__c_variable_assignment, + STATE(6699), 1, + sym__c_expression, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3242), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [265296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [265328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4654), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(4652), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294240,8 +296698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294251,57 +296711,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [265360] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12390), 1, + aux_sym__c_word_token1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, + aux_sym_number_token1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12404), 1, anon_sym_BQUOTE, - [263154] = 16, + ACTIONS(12406), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + STATE(6652), 1, + sym__c_variable_assignment, + STATE(6701), 1, + sym__c_expression, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3242), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [265422] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(12316), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(12326), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(12328), 1, sym_variable_name, - ACTIONS(12659), 1, + ACTIONS(12673), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3456), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6299), 1, sym_command_substitution, - STATE(6770), 1, + STATE(6300), 1, + aux_sym__expansion_body_repeat1, + STATE(7143), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(12318), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(12310), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(12312), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [263212] = 3, + [265480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 3, + ACTIONS(12474), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(12476), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294311,8 +296813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294322,15 +296825,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [263244] = 3, + [265511] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 3, + ACTIONS(10554), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12681), 1, + anon_sym_LT_LT_LT, + ACTIONS(12684), 1, + sym_file_descriptor, + ACTIONS(12678), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4952), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10546), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12675), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [265552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 21, + ACTIONS(12255), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294340,8 +296874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294351,15 +296886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [263276] = 3, + [265583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 3, + ACTIONS(12278), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(12276), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294369,8 +296902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294380,14 +296914,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [263308] = 3, + [265614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(12458), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(12460), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294397,7 +296930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -294410,27 +296942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263340] = 3, + [265645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + STATE(5020), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 22, + ACTIONS(12687), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12264), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -294439,14 +296972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263372] = 3, + [265680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 3, + ACTIONS(12173), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 21, + ACTIONS(12171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294456,8 +296988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294467,14 +297000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [263404] = 3, + [265711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(12211), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 22, + ACTIONS(12213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294484,7 +297016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -294497,97 +297028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263436] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12661), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7313), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [263494] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12663), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6863), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [263552] = 3, + [265742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(12352), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(12350), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294609,13 +297056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263583] = 3, + [265773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(12438), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(12440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294637,43 +297084,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263614] = 5, + [265804] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12698), 1, + anon_sym_LT_LT_LT, + ACTIONS(12701), 1, + sym_file_descriptor, + ACTIONS(10546), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12695), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12692), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4961), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10554), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(12689), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [265847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12665), 1, - sym__special_character, - STATE(4943), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(12562), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 18, + ACTIONS(12564), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [263649] = 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [265878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(12418), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(12420), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294695,19 +297174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263680] = 5, + [265909] = 5, ACTIONS(3), 1, sym_comment, - STATE(4957), 1, + STATE(4986), 1, aux_sym_pipeline_repeat1, - ACTIONS(12668), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12222), 3, + ACTIONS(12268), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12218), 17, + ACTIONS(12704), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12264), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294725,13 +297203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263715] = 3, + anon_sym_BQUOTE, + [265944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(12215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, + ACTIONS(12217), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294753,49 +297232,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263746] = 11, + [265975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5852), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12676), 1, + ACTIONS(5931), 2, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5929), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [263793] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [266006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(12470), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(12472), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294817,13 +297288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263824] = 3, + [266037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(12520), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(12518), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294845,13 +297316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263855] = 3, + [266068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 2, + ACTIONS(12430), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 21, + ACTIONS(12432), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294873,13 +297344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263886] = 3, + [266099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 2, + ACTIONS(12532), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 21, + ACTIONS(12534), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294901,48 +297372,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263917] = 10, + [266130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, + ACTIONS(12458), 2, sym_file_descriptor, - ACTIONS(4527), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12460), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4529), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, + anon_sym_LT_LT_DASH, + [266161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12524), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12522), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [263962] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [266192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(12422), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(12424), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294964,13 +297456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263993] = 3, + [266223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 2, + ACTIONS(12219), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 21, + ACTIONS(12221), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294992,13 +297484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264024] = 3, + [266254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(12414), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(12412), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295020,13 +297512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264055] = 3, + [266285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 2, + ACTIONS(12576), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 21, + ACTIONS(12574), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295048,43 +297540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264086] = 5, + [266316] = 3, ACTIONS(3), 1, sym_comment, - STATE(4957), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12678), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12136), 3, + ACTIONS(12376), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12281), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 21, + ACTIONS(12378), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295106,13 +297568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264152] = 3, + [266347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(12376), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(12378), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295134,13 +297596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264183] = 3, + [266378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 2, + ACTIONS(12532), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 21, + ACTIONS(12534), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295162,25 +297624,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264214] = 3, + [266409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12639), 2, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11865), 1, + sym__concat, + STATE(5122), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 21, - anon_sym_SEMI, + ACTIONS(1231), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -295190,13 +297654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264245] = 3, + sym__special_character, + [266446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 21, + ACTIONS(4652), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295218,13 +297683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264276] = 3, + [266477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(12334), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(12336), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295246,13 +297711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264307] = 3, + [266508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 2, + ACTIONS(12370), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 21, + ACTIONS(12372), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295274,28 +297739,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264338] = 5, + [266539] = 3, ACTIONS(3), 1, sym_comment, - STATE(4980), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(12370), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 18, + ACTIONS(12372), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -295304,13 +297767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264373] = 3, + [266570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(12145), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(12143), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295332,26 +297795,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264404] = 3, + [266601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 2, + STATE(4986), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12251), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 21, + ACTIONS(12706), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12246), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -295360,13 +297824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264435] = 3, + anon_sym_BQUOTE, + [266636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 2, + ACTIONS(12576), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 21, + ACTIONS(12574), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295388,54 +297853,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264466] = 3, + [266667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 2, - sym_file_descriptor, + ACTIONS(12709), 1, + sym__special_character, + STATE(4988), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 21, + ACTIONS(1318), 18, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264497] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [266702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + STATE(5013), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12712), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12268), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(12264), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -295444,48 +297913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264528] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(5212), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5210), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [264573] = 3, + [266737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 2, + ACTIONS(12344), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 21, + ACTIONS(12342), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295507,13 +297941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264604] = 3, + [266768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 2, + ACTIONS(12528), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 21, + ACTIONS(12530), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295535,48 +297969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264635] = 10, + [266799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [264680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12341), 2, + ACTIONS(12352), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 21, + ACTIONS(12350), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295598,13 +297997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264711] = 3, + [266830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(12492), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 21, + ACTIONS(12490), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295626,13 +298025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264742] = 3, + [266861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 2, + ACTIONS(12368), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 21, + ACTIONS(12366), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295654,13 +298053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264773] = 3, + [266892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 21, + ACTIONS(2137), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295682,13 +298081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264804] = 3, + [266923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(12165), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(12163), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295710,157 +298109,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264835] = 5, - ACTIONS(3), 1, + [266954] = 6, + ACTIONS(71), 1, sym_comment, - STATE(4980), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12683), 2, + ACTIONS(12714), 1, + anon_sym_LT_LT_LT, + STATE(5573), 1, + sym_herestring_redirect, + STATE(5221), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4257), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12347), 2, + ACTIONS(4290), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264901] = 5, + [266991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12686), 1, - sym__special_character, - STATE(4943), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(4848), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 18, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [264936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12501), 2, + ACTIONS(12227), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 21, - anon_sym_SEMI, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(11887), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12455), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 21, + ACTIONS(4846), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264998] = 3, + [267034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(5931), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(5929), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295882,13 +298202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265029] = 3, + [267065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(12344), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(12342), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295910,13 +298230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265060] = 3, + [267096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 2, + ACTIONS(12456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 21, + ACTIONS(12454), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295938,72 +298258,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265091] = 6, + [267127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(5078), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(12716), 1, sym__special_character, - [265128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12210), 2, - sym_file_descriptor, + STATE(4988), 1, + aux_sym__literal_repeat1, + ACTIONS(5437), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 21, + ACTIONS(5435), 18, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [265159] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [267162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 2, + ACTIONS(12512), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 21, + ACTIONS(12510), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296025,13 +298316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265190] = 3, + [267193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 2, + ACTIONS(12436), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 21, + ACTIONS(12434), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296053,43 +298344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265221] = 5, + [267224] = 3, ACTIONS(3), 1, sym_comment, - STATE(5006), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(12450), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12688), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [265256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(12448), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296111,13 +298372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265287] = 3, + [267255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(12502), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(12500), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296139,13 +298400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265318] = 3, + [267286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(12442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(12444), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296167,13 +298428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265349] = 3, + [267317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(12482), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(12484), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296195,13 +298456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265380] = 3, + [267348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 2, + ACTIONS(12426), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 21, + ACTIONS(12428), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296223,13 +298484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265411] = 3, + [267379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 2, + ACTIONS(12177), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 21, + ACTIONS(12175), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296251,34 +298512,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265442] = 11, + [267410] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, + ACTIONS(4798), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12676), 1, + ACTIONS(12227), 1, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(4493), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + ACTIONS(4767), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 2, + ACTIONS(11887), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5163), 3, + ACTIONS(4796), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -296287,85 +298546,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [265489] = 6, - ACTIONS(3), 1, + [267453] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(5103), 1, + STATE(5102), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12718), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, sym__special_character, - [265526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12180), 2, + ACTIONS(1233), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 21, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265557] = 3, + anon_sym_LT_LT_LT, + [267488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + STATE(5013), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12720), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12251), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(12246), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -296374,13 +298606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265588] = 3, + [267523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(12362), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(12364), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296402,41 +298634,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265619] = 3, + [267554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, - sym_file_descriptor, + ACTIONS(4769), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, - anon_sym_SEMI, + ACTIONS(12227), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4765), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [265650] = 3, + [267597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(12334), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 21, + ACTIONS(12336), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296458,27 +298696,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265681] = 5, + [267628] = 6, ACTIONS(3), 1, sym_comment, - STATE(5006), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(5106), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12690), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 18, - anon_sym_SEMI, + ACTIONS(1231), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -296487,114 +298725,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [265716] = 5, + anon_sym_LT_LT_LT, + sym__special_character, + [267665] = 9, ACTIONS(71), 1, sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 8, + ACTIONS(12729), 1, + anon_sym_LT_LT_LT, + ACTIONS(12731), 1, + sym_file_descriptor, + ACTIONS(11312), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 12, - sym_file_descriptor, + ACTIONS(12727), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12725), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4961), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11318), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [265751] = 10, - ACTIONS(3), 1, + ACTIONS(12723), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [267708] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, - sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, anon_sym_LT_LT, + ACTIONS(6044), 1, anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + ACTIONS(12739), 1, + anon_sym_LT_LT_LT, + ACTIONS(12741), 1, + sym_file_descriptor, + STATE(5508), 1, + sym_herestring_redirect, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(12737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4513), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [265796] = 10, + [267759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, + STATE(5020), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12251), 2, sym_file_descriptor, - ACTIONS(4527), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12743), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12246), 18, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4529), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4790), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, + anon_sym_LT_LT_DASH, + [267794] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(12714), 1, + anon_sym_LT_LT_LT, + STATE(5573), 1, + sym_herestring_redirect, + STATE(5221), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, + ACTIONS(4292), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4294), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [265841] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(2084), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(2082), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296616,13 +298890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265872] = 3, + [267866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(12358), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 21, + ACTIONS(12360), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296644,48 +298918,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265903] = 10, + [267897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(12496), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12498), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [265948] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 2, + ACTIONS(12546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 21, + ACTIONS(12544), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296707,73 +298974,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265979] = 7, + [267959] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, - sym_file_descriptor, + ACTIONS(4794), 1, aux_sym_heredoc_redirect_token1, - STATE(5163), 3, + ACTIONS(12227), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4767), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11887), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4792), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4587), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11885), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [266018] = 3, + [268002] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, - sym_file_descriptor, + ACTIONS(11318), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, - anon_sym_SEMI, + ACTIONS(12750), 1, + anon_sym_LT_LT_LT, + ACTIONS(12752), 1, + sym_file_descriptor, + ACTIONS(12748), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4952), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11312), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12746), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [266049] = 3, + [268043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 2, + ACTIONS(12478), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 21, + ACTIONS(12480), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296795,44 +299069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [266117] = 3, + [268074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 2, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 21, + ACTIONS(4686), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296854,19 +299097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266148] = 6, + [268105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(12012), 1, sym__concat, - STATE(5181), 1, + STATE(5167), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 17, + ACTIONS(1231), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -296884,22 +299127,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, sym__special_character, - [266184] = 5, + [268141] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, + anon_sym_LT_LT, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7446), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12737), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [268189] = 5, ACTIONS(71), 1, sym_comment, - STATE(5039), 1, + STATE(5054), 1, aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, + ACTIONS(12756), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5130), 6, + ACTIONS(5435), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 13, + ACTIONS(5437), 13, sym_test_operator, sym__brace_start, anon_sym_RPAREN, @@ -296913,22 +299192,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [266218] = 5, + [268223] = 5, ACTIONS(71), 1, sym_comment, - STATE(5040), 1, + STATE(5055), 1, aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, + ACTIONS(12756), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5134), 6, + ACTIONS(5439), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 13, + ACTIONS(5441), 13, sym_test_operator, sym__brace_start, anon_sym_RPAREN, @@ -296942,39 +299221,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [266252] = 16, + [268257] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12697), 1, + ACTIONS(12758), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3105), 7, + STATE(3137), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -296982,39 +299261,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266308] = 16, + [268313] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12699), 1, + ACTIONS(12760), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3107), 7, + STATE(3138), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297022,39 +299301,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266364] = 16, + [268369] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12701), 1, + ACTIONS(12762), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3114), 7, + STATE(3140), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297062,39 +299341,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266420] = 16, + [268425] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12703), 1, + ACTIONS(12764), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3119), 7, + STATE(3144), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297102,39 +299381,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266476] = 16, + [268481] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12705), 1, + ACTIONS(12766), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3120), 7, + STATE(3146), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297142,39 +299421,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266532] = 16, + [268537] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12707), 1, + ACTIONS(12768), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3122), 7, + STATE(3149), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297182,39 +299461,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266588] = 16, + [268593] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12709), 1, + ACTIONS(12770), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3123), 7, + STATE(3160), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297222,39 +299501,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266644] = 16, + [268649] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12711), 1, + ACTIONS(12772), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3125), 7, + STATE(3165), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297262,39 +299541,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266700] = 16, + [268705] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12713), 1, + ACTIONS(12774), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3127), 7, + STATE(3170), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297302,39 +299581,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266756] = 16, + [268761] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12715), 1, + ACTIONS(12776), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3131), 7, + STATE(3173), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297342,39 +299621,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266812] = 16, + [268817] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12717), 1, + ACTIONS(12778), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3133), 7, + STATE(3209), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297382,39 +299661,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266868] = 16, + [268873] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12183), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12187), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12189), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12191), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12193), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12197), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12719), 1, + ACTIONS(12780), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3230), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3237), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3238), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12181), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3135), 7, + STATE(3076), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297422,15 +299701,15 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266924] = 5, + [268929] = 5, ACTIONS(71), 1, sym_comment, - STATE(5068), 1, + STATE(5102), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(5699), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297438,7 +299717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 12, + ACTIONS(5701), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297451,15 +299730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [266958] = 5, + [268963] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(5105), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297467,7 +299746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 12, + ACTIONS(2084), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297480,15 +299759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [266992] = 5, + [268997] = 5, ACTIONS(71), 1, sym_comment, - STATE(5068), 1, + STATE(5102), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5561), 7, + ACTIONS(5707), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297496,7 +299775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 12, + ACTIONS(5709), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297509,15 +299788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [267026] = 5, + [269031] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(5105), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2160), 7, + ACTIONS(2137), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297525,7 +299804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 12, + ACTIONS(2139), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297538,77 +299817,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [267060] = 9, + [269065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12161), 1, + sym__concat, + STATE(5068), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12784), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12782), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12161), 1, + sym__concat, + STATE(5069), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12788), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12786), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269137] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(12727), 1, - anon_sym_LT_LT_LT, - ACTIONS(12729), 1, - sym_file_descriptor, - ACTIONS(11713), 2, - anon_sym_PIPE, + ACTIONS(6042), 1, anon_sym_LT_LT, - ACTIONS(12725), 2, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + ACTIONS(11831), 1, + anon_sym_PIPE, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(12737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12723), 3, + ACTIONS(12735), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5049), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11719), 5, + ACTIONS(11833), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(12721), 5, + STATE(5079), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [267102] = 6, + [269181] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12695), 1, - aux_sym_concatenation_token1, - ACTIONS(12731), 1, - sym__concat, - STATE(5041), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 6, + ACTIONS(11248), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(11254), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 13, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12594), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12596), 1, + aux_sym_number_token1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12600), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12602), 1, + anon_sym_BQUOTE, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [267138] = 6, + ACTIONS(12790), 1, + aux_sym__c_word_token1, + STATE(3061), 1, + sym__c_unary_expression, + STATE(3064), 1, + sym__c_binary_expression, + STATE(3065), 1, + sym__c_postfix_expression, + ACTIONS(12588), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3034), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [269237] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12695), 1, + ACTIONS(12756), 1, aux_sym_concatenation_token1, - ACTIONS(12733), 1, + ACTIONS(12792), 1, sym__concat, - STATE(5041), 1, + STATE(5056), 1, aux_sym_concatenation_repeat1, ACTIONS(1207), 6, anon_sym_DOLLAR, @@ -297631,14 +299981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [267174] = 5, + [269273] = 6, ACTIONS(71), 1, sym_comment, - STATE(5041), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12735), 2, - sym__concat, + ACTIONS(12756), 1, aux_sym_concatenation_token1, + ACTIONS(12794), 1, + sym__concat, + STATE(5056), 1, + aux_sym_concatenation_repeat1, ACTIONS(1213), 6, anon_sym_DOLLAR, aux_sym_number_token1, @@ -297660,75 +300011,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [267208] = 6, - ACTIONS(3), 1, + [269309] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(5053), 1, + STATE(5056), 1, aux_sym_concatenation_repeat1, - ACTIONS(12740), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12738), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(12796), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 6, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [267244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(5054), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12744), 3, + ACTIONS(1237), 13, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12742), 16, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [267280] = 5, + [269343] = 5, ACTIONS(71), 1, sym_comment, - STATE(5068), 1, + STATE(5102), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(4648), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297736,7 +300056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 12, + ACTIONS(4650), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297749,15 +300069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [267314] = 5, + [269377] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(5105), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(4652), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297765,7 +300085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 12, + ACTIONS(4654), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297778,44 +300098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [267348] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5039), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 13, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [267382] = 5, + [269411] = 5, ACTIONS(71), 1, sym_comment, - STATE(5068), 1, + STATE(5102), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4307), 7, + ACTIONS(4682), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297823,7 +300114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 12, + ACTIONS(4684), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297836,15 +300127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [267416] = 5, + [269445] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(5105), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(12718), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 7, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297852,7 +300143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 12, + ACTIONS(4688), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297865,132 +300156,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [267450] = 9, + [269479] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LT_LT_LT, - ACTIONS(12758), 1, - sym_file_descriptor, - ACTIONS(11671), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12752), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12749), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5049), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11679), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(12746), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [267492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 3, + STATE(5054), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12756), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1233), 13, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 19, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [267522] = 9, - ACTIONS(3), 1, + [269513] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(5287), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, - sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, anon_sym_LT_LT, + ACTIONS(6044), 1, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + ACTIONS(7485), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(12737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5285), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [267564] = 16, + [269561] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12761), 1, + ACTIONS(12799), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3064), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3065), 1, + sym__c_postfix_expression, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2931), 7, + STATE(3007), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297998,129 +300261,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267620] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12763), 1, - sym__concat, - STATE(4591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [267656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12765), 1, - sym__concat, - STATE(4591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [267692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(5053), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [267728] = 16, + [269617] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12767), 1, + ACTIONS(12801), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3064), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3065), 1, + sym__c_postfix_expression, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2978), 7, + STATE(3018), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298128,103 +300301,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267784] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12773), 1, - anon_sym_LT_LT_LT, - ACTIONS(12775), 1, - sym_file_descriptor, - ACTIONS(12771), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5058), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11713), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12769), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [267824] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12783), 1, - anon_sym_LT_LT_LT, - ACTIONS(12786), 1, - sym_file_descriptor, - ACTIONS(12780), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5058), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11671), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12777), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [267864] = 16, + [269673] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12789), 1, + ACTIONS(12803), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3064), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3065), 1, + sym__c_postfix_expression, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2984), 7, + STATE(3021), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298232,111 +300341,66 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267920] = 16, - ACTIONS(71), 1, + [269729] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(1233), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 19, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12473), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(12475), 1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12791), 1, - aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2985), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [267976] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - STATE(5583), 1, - sym_herestring_redirect, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4159), 9, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [268016] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269759] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12795), 1, + ACTIONS(12805), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3064), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3065), 1, + sym__c_postfix_expression, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2996), 7, + STATE(3032), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298344,159 +300408,129 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268072] = 16, - ACTIONS(71), 1, + [269815] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12807), 1, + sym__concat, + STATE(4628), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12473), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(12475), 1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12797), 1, - aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2919), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268128] = 16, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269851] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12809), 1, + sym__concat, + STATE(4628), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12473), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(12475), 1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12799), 1, - aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2807), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268184] = 16, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269887] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(12159), 1, + aux_sym_concatenation_token1, + ACTIONS(12161), 1, + sym__concat, + STATE(5068), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12473), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(12475), 1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12801), 1, - aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2820), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268240] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269923] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12803), 1, + ACTIONS(12811), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3064), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3065), 1, + sym__c_postfix_expression, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2826), 7, + STATE(3047), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298504,129 +300538,72 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268296] = 6, + [269979] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(5079), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, - sym_file_descriptor, + ACTIONS(5863), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12813), 1, + sym_file_descriptor, + ACTIONS(4257), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268332] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12693), 1, - aux_sym_concatenation_token1, - ACTIONS(12805), 1, - sym__concat, - STATE(5072), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4493), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1229), 12, - sym_file_descriptor, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(12552), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268368] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12693), 1, - aux_sym_concatenation_token1, - ACTIONS(12807), 1, - sym__concat, - STATE(5072), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, - anon_sym_PIPE, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12550), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268404] = 16, + [270021] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12809), 1, + ACTIONS(12815), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3047), 7, + STATE(3051), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298634,39 +300611,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268460] = 16, + [270077] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12811), 1, + ACTIONS(12817), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3049), 7, + STATE(3063), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298674,68 +300651,72 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268516] = 5, - ACTIONS(71), 1, + [270133] = 9, + ACTIONS(3), 1, sym_comment, - STATE(5072), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 7, + ACTIONS(5870), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12813), 1, + sym_file_descriptor, + ACTIONS(4257), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(4493), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1215), 12, - sym_file_descriptor, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12552), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12550), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268550] = 16, + [270175] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12816), 1, + ACTIONS(12819), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3051), 7, + STATE(2864), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298743,39 +300724,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268606] = 16, + [270231] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12818), 1, + ACTIONS(12821), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3053), 7, + STATE(2912), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298783,39 +300764,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268662] = 16, + [270287] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11254), 1, + aux_sym_number_token2, + ACTIONS(12590), 1, + anon_sym_LPAREN, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12820), 1, + ACTIONS(12823), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3056), 7, + STATE(2913), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298823,199 +300804,73 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268718] = 6, - ACTIONS(3), 1, + [270343] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(5103), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11686), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(12828), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(12837), 1, anon_sym_LT_LT_DASH, - [268754] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(5104), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(12840), 1, sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(12834), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [268790] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12822), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(12831), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268826] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12824), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 17, + ACTIONS(11697), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + STATE(5079), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12825), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268862] = 16, + [270387] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, - anon_sym_BQUOTE, - ACTIONS(12319), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12826), 1, - aux_sym__c_word_token1, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, - sym__c_binary_expression, - STATE(3171), 1, - sym__c_postfix_expression, - ACTIONS(12299), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3059), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268918] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12301), 1, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12828), 1, + ACTIONS(12843), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3064), 7, + STATE(2914), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299023,79 +300878,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268974] = 16, + [270443] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11248), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11254), 1, aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, - anon_sym_BQUOTE, - ACTIONS(12319), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12830), 1, - aux_sym__c_word_token1, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, - sym__c_binary_expression, - STATE(3171), 1, - sym__c_postfix_expression, - ACTIONS(12299), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3066), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269030] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12301), 1, + ACTIONS(12590), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12594), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12596), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12600), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12832), 1, + ACTIONS(12845), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3061), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3064), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3065), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12588), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 7, + STATE(2956), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299103,39 +300918,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269086] = 16, + [270499] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(12392), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(12398), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12834), 1, + ACTIONS(12847), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3244), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3245), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3070), 7, + STATE(3293), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299143,39 +300958,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269142] = 16, + [270555] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(12392), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(12398), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12836), 1, + ACTIONS(12849), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3244), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3245), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3077), 7, + STATE(3294), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299183,39 +300998,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269198] = 16, + [270611] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(12392), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(12398), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12838), 1, + ACTIONS(12851), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3244), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3245), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3078), 7, + STATE(3295), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299223,39 +301038,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269254] = 16, + [270667] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12840), 1, + ACTIONS(12853), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3244), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2829), 7, + STATE(3296), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299263,39 +301078,69 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269310] = 16, + [270723] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(5107), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [270759] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12842), 1, + ACTIONS(12855), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3244), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2835), 7, + STATE(3298), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299303,39 +301148,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269366] = 16, + [270815] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12844), 1, + ACTIONS(12857), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3244), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2836), 7, + STATE(3299), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299343,39 +301188,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269422] = 16, + [270871] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12846), 1, + ACTIONS(12859), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3244), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2837), 7, + STATE(3300), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299383,72 +301228,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269478] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5159), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [269520] = 16, + [270927] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(12392), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(12398), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12848), 1, + ACTIONS(12861), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3244), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3245), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3263), 7, + STATE(3301), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299456,97 +301268,62 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269576] = 5, - ACTIONS(71), 1, + [270983] = 8, + ACTIONS(3), 1, sym_comment, - STATE(5190), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1225), 12, + ACTIONS(11833), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12813), 1, sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [269610] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(4493), 2, anon_sym_LT_LT, - ACTIONS(5927), 1, anon_sym_LT_LT_DASH, - ACTIONS(12858), 1, - anon_sym_LT_LT_LT, - ACTIONS(12860), 1, - sym_file_descriptor, - STATE(5460), 1, - sym_herestring_redirect, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, + ACTIONS(12552), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, + ACTIONS(11831), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5096), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + ACTIONS(12550), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [269660] = 9, + anon_sym_GT_PIPE, + [271023] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, + ACTIONS(11720), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(12554), 1, + anon_sym_LT_LT_LT, + ACTIONS(12863), 1, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(12552), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5206), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, + STATE(4712), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11718), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12550), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -299555,72 +301332,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [269702] = 9, + [271063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(4257), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4294), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5180), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, + aux_sym_heredoc_redirect_token1, + STATE(5091), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(4292), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [269744] = 16, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [271097] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12392), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(12396), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(12398), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12862), 1, + ACTIONS(12865), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3244), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3245), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(12386), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3275), 7, + STATE(3302), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299628,27 +301401,26 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269800] = 5, + [271153] = 4, ACTIONS(3), 1, sym_comment, - STATE(5099), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(4294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12864), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 17, - anon_sym_SEMI, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -299657,296 +301429,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269834] = 5, + [271185] = 8, ACTIONS(3), 1, sym_comment, - STATE(5099), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, + ACTIONS(11697), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12866), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 17, - anon_sym_SEMI, + ACTIONS(12873), 1, + sym_file_descriptor, + ACTIONS(12045), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12870), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11686), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5096), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12867), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [271225] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11791), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12554), 1, + anon_sym_LT_LT_LT, + ACTIONS(12863), 1, + sym_file_descriptor, + ACTIONS(12552), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [269868] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 7, + STATE(4857), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11789), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12550), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [269902] = 6, - ACTIONS(71), 1, + [271265] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(12793), 1, + ACTIONS(11777), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12554), 1, anon_sym_LT_LT_LT, - STATE(5583), 1, - sym_herestring_redirect, - STATE(5381), 3, + ACTIONS(12863), 1, + sym_file_descriptor, + ACTIONS(12552), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4940), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 7, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11775), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12550), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4268), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [269938] = 15, + [271305] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7760), 1, + ACTIONS(12388), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(12392), 1, + anon_sym_DOLLAR, + ACTIONS(12394), 1, anon_sym_DQUOTE, - ACTIONS(7778), 1, + ACTIONS(12396), 1, + aux_sym_number_token1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7790), 1, - sym_variable_name, - ACTIONS(12873), 1, + ACTIONS(12402), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12404), 1, + anon_sym_BQUOTE, + ACTIONS(12406), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12876), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3303), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [271361] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12392), 1, anon_sym_DOLLAR, - ACTIONS(12875), 1, - anon_sym_RBRACE3, - ACTIONS(12877), 1, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, + aux_sym_number_token1, + ACTIONS(12398), 1, + aux_sym_number_token2, + ACTIONS(12400), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12879), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(12881), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6567), 1, - sym_process_substitution, - STATE(7221), 1, - sym__concatenation_in_expansion, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(12871), 4, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(6437), 5, + ACTIONS(12878), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3304), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_array, + sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [269992] = 6, - ACTIONS(3), 1, + [271417] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12883), 1, - sym__concat, - STATE(4156), 1, + STATE(5148), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [270028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12885), 1, + ACTIONS(12880), 2, sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + aux_sym_concatenation_token1, + ACTIONS(1231), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [270064] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12887), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(11741), 2, + sym__special_character, + ACTIONS(1233), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5106), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270100] = 6, - ACTIONS(3), 1, + [271451] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(12889), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(11658), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5106), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12718), 1, + aux_sym_concatenation_token1, + ACTIONS(12882), 1, + sym__concat, + STATE(5108), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [270136] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(5078), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1209), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270172] = 6, + [271487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11865), 1, sym__concat, - STATE(5079), 1, + STATE(5122), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(5294), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 17, + ACTIONS(5292), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299963,20 +301694,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [270208] = 6, + [271523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11865), 1, sym__concat, - STATE(5078), 1, + STATE(5123), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(5298), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 17, + ACTIONS(5296), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299993,80 +301724,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [270244] = 6, - ACTIONS(3), 1, + [271559] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12718), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12884), 1, sym__concat, - STATE(5079), 1, + STATE(5108), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [270280] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(5078), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1215), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270316] = 6, + [271595] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12886), 1, sym__concat, - STATE(5079), 1, + STATE(4153), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 17, + ACTIONS(1207), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300084,19 +301784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270352] = 6, + [271631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12888), 1, sym__concat, - STATE(5078), 1, + STATE(4153), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 17, + ACTIONS(1213), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300114,15 +301814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270388] = 5, + [271667] = 5, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, + STATE(5108), 1, aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, + ACTIONS(12890), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 8, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300130,8 +301830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 11, + ACTIONS(1237), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300143,74 +301842,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270422] = 9, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [271701] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(5852), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4157), 2, + ACTIONS(4257), 1, anon_sym_PIPE, + ACTIONS(4290), 1, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(6042), 1, anon_sym_LT_LT, + ACTIONS(6044), 1, anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + ACTIONS(7415), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 2, + ACTIONS(12737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5163), 3, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [270463] = 4, + [271749] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12900), 1, - anon_sym_esac, - ACTIONS(12896), 5, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12392), 1, anon_sym_DOLLAR, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, aux_sym_number_token1, + ACTIONS(12398), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12898), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12404), 1, anon_sym_BQUOTE, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270494] = 5, + ACTIONS(12893), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3269), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [271805] = 5, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, + STATE(5180), 1, aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, + ACTIONS(12895), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(1231), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300218,180 +301935,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 11, + ACTIONS(1233), 12, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270527] = 5, + sym__special_character, + [271839] = 12, ACTIONS(71), 1, sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(4257), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4439), 11, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7397), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, sym_file_descriptor, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12737), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12735), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + STATE(5052), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [271887] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12903), 1, + anon_sym_LT_LT_LT, + ACTIONS(12905), 1, + sym_file_descriptor, + ACTIONS(11312), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12901), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + ACTIONS(12899), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11318), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [270560] = 19, - ACTIONS(3), 1, + STATE(5120), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12897), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [271929] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(12902), 1, + ACTIONS(7955), 1, anon_sym_LPAREN, - ACTIONS(12904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12906), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12910), 1, - anon_sym_DOLLAR, - ACTIONS(12912), 1, + ACTIONS(7965), 1, + anon_sym_DQUOTE, + ACTIONS(7973), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12914), 1, + ACTIONS(7985), 1, + sym_variable_name, + ACTIONS(12909), 1, + anon_sym_DOLLAR, + ACTIONS(12911), 1, anon_sym_RBRACE3, - ACTIONS(12916), 1, + ACTIONS(12913), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, + ACTIONS(12915), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, + ACTIONS(12917), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12922), 1, - aux_sym__simple_variable_name_token1, - STATE(5452), 1, + STATE(6605), 1, + sym_process_substitution, + STATE(6730), 1, + sym__concatenation_in_expansion, + ACTIONS(7692), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12907), 4, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6444), 5, + sym_string, + sym_array, sym_simple_expansion, - STATE(6253), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6208), 2, - sym_number, sym_expansion, - STATE(7371), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, sym_command_substitution, - [270621] = 4, + [271983] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, - anon_sym_esac, - ACTIONS(12924), 5, + ACTIONS(12183), 1, + anon_sym_LPAREN, + ACTIONS(12187), 1, anon_sym_DOLLAR, + ACTIONS(12189), 1, + anon_sym_DQUOTE, + ACTIONS(12191), 1, aux_sym_number_token1, + ACTIONS(12193), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12926), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, anon_sym_BQUOTE, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270652] = 5, + ACTIONS(12919), 1, + aux_sym__c_word_token1, + STATE(3230), 1, + sym__c_unary_expression, + STATE(3237), 1, + sym__c_binary_expression, + STATE(3238), 1, + sym__c_postfix_expression, + ACTIONS(12181), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3223), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [272039] = 12, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 7, + ACTIONS(4257), 1, anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, + anon_sym_LT_LT, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7359), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12737), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + [272087] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5118), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12268), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12921), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12264), 17, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270685] = 5, - ACTIONS(71), 1, + [272121] = 5, + ACTIONS(3), 1, sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 7, + STATE(5118), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12251), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12923), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12246), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270718] = 5, + [272155] = 5, ACTIONS(71), 1, sym_comment, - STATE(5190), 1, + STATE(5211), 1, aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, + ACTIONS(12926), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5264), 7, + ACTIONS(1231), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300399,9 +302206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5266), 11, + ACTIONS(1233), 12, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -300411,615 +302217,611 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270751] = 5, + anon_sym_LT_LT_LT, + sym__special_character, + [272189] = 9, ACTIONS(71), 1, sym_comment, - STATE(5192), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5268), 7, + ACTIONS(12937), 1, + anon_sym_LT_LT_LT, + ACTIONS(12940), 1, + sym_file_descriptor, + ACTIONS(10546), 2, anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12934), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12931), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10554), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + STATE(5120), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12928), 5, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [272231] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, anon_sym_LT_LT, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7423), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12737), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5270), 11, + [272279] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(12943), 1, + sym__concat, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, sym_file_descriptor, sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270784] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270813] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270842] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270871] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12928), 1, - anon_sym_esac, - ACTIONS(12924), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12926), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270902] = 3, - ACTIONS(71), 1, + [272315] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(11863), 1, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270931] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 15, + ACTIONS(12945), 1, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270960] = 10, + STATE(4177), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [272351] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(5925), 1, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, anon_sym_LT_LT, - ACTIONS(5927), 1, + ACTIONS(6044), 1, anon_sym_LT_LT_DASH, - ACTIONS(11780), 1, - anon_sym_PIPE, - ACTIONS(12930), 1, + ACTIONS(7452), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, sym_file_descriptor, - ACTIONS(12856), 2, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + ACTIONS(12735), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5171), 3, + STATE(5052), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11782), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(12852), 5, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [271003] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271032] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271061] = 5, + [272399] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + ACTIONS(4257), 1, anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, + anon_sym_LT_LT, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7561), 1, + anon_sym_RBRACK, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12737), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 12, + [272447] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12947), 1, + sym_variable_name, + STATE(6680), 1, + sym_subscript, + ACTIONS(11837), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5127), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11835), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271094] = 6, - ACTIONS(71), 1, + [272483] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12934), 1, + ACTIONS(12949), 1, sym_variable_name, - STATE(6657), 1, + STATE(6680), 1, sym_subscript, - STATE(5173), 2, + ACTIONS(11764), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5127), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 7, + ACTIONS(11762), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(11741), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271129] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12940), 1, - anon_sym_esac, - ACTIONS(12936), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12938), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271160] = 5, - ACTIONS(71), 1, + [272519] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(5106), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5699), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4309), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271193] = 5, - ACTIONS(71), 1, + [272555] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(11857), 1, + sym__concat, + STATE(5107), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5689), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271226] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [272591] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(11857), 1, + sym__concat, + STATE(5106), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5707), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2158), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271259] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [272627] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(11857), 1, + sym__concat, + STATE(5107), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2137), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [272663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(5106), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4648), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271292] = 5, - ACTIONS(71), 1, + [272699] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(11857), 1, + sym__concat, + STATE(5107), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [272735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(5106), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4682), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271325] = 3, + [272771] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 6, + ACTIONS(12388), 1, + anon_sym_LPAREN, + ACTIONS(12392), 1, anon_sym_DOLLAR, + ACTIONS(12394), 1, + anon_sym_DQUOTE, + ACTIONS(12396), 1, aux_sym_number_token1, + ACTIONS(12398), 1, aux_sym_number_token2, + ACTIONS(12400), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12404), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271354] = 3, + ACTIONS(12952), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3244), 1, + sym__c_binary_expression, + STATE(3245), 1, + sym__c_postfix_expression, + ACTIONS(12386), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3297), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [272827] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 6, + ACTIONS(12958), 1, + anon_sym_esac, + ACTIONS(12954), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 15, - sym__concat, + ACTIONS(12956), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271383] = 3, + [272858] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 6, + ACTIONS(12964), 1, + anon_sym_esac, + ACTIONS(12960), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 15, - sym__concat, + ACTIONS(12962), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271412] = 3, + [272889] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 6, + ACTIONS(12970), 1, + anon_sym_esac, + ACTIONS(12966), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 15, - sym__concat, + ACTIONS(12968), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271441] = 3, + [272920] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 6, + ACTIONS(1264), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 15, + ACTIONS(1266), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301035,43 +302837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271470] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5561), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5563), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271503] = 5, + [272949] = 5, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 7, + ACTIONS(12972), 1, + sym__special_character, + STATE(5183), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301079,29 +302852,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(4650), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271536] = 3, + [272982] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 6, + ACTIONS(1252), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 15, + ACTIONS(1254), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301117,17 +302891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271565] = 3, + [273011] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 6, + ACTIONS(1308), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 15, + ACTIONS(1310), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301143,44 +302917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271594] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12946), 1, - anon_sym_esac, - ACTIONS(12942), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12944), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271625] = 3, + [273040] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 6, + ACTIONS(1252), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 15, + ACTIONS(1254), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301196,17 +302943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271654] = 3, + [273069] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 6, + ACTIONS(1268), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 15, + ACTIONS(1270), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301222,136 +302969,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271683] = 3, + [273098] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 6, + ACTIONS(12978), 1, + anon_sym_esac, + ACTIONS(12974), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 15, - sym__concat, + ACTIONS(12976), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271712] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271741] = 3, + [273129] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 6, + ACTIONS(12978), 1, + anon_sym_esac, + ACTIONS(12974), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 15, - sym__concat, + ACTIONS(12976), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271770] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(12902), 1, - anon_sym_LPAREN, - ACTIONS(12906), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12910), 1, - anon_sym_DOLLAR, - ACTIONS(12912), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, - anon_sym_BQUOTE, - ACTIONS(12920), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12948), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12950), 1, - anon_sym_RBRACE3, - ACTIONS(12952), 1, - aux_sym__simple_variable_name_token1, - STATE(5454), 1, - sym_simple_expansion, - STATE(6265), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6239), 2, - sym_number, - sym_expansion, - STATE(6980), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [271831] = 6, + [273160] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12892), 1, - aux_sym_concatenation_token1, - ACTIONS(12954), 1, - sym__concat, - STATE(5161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, + ACTIONS(12972), 1, + sym__special_character, + STATE(5183), 1, + aux_sym__literal_repeat1, + ACTIONS(4682), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301359,7 +303038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 11, + ACTIONS(4684), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301371,14 +303050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271866] = 6, + anon_sym_LT_LT_LT, + [273193] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12892), 1, + ACTIONS(12880), 1, aux_sym_concatenation_token1, - ACTIONS(12956), 1, + ACTIONS(12980), 1, sym__concat, - STATE(5161), 1, + STATE(5159), 1, aux_sym_concatenation_repeat1, ACTIONS(1207), 7, anon_sym_PIPE, @@ -301400,60 +303080,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271901] = 22, - ACTIONS(3), 1, + [273228] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(1272), 6, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(7776), 1, aux_sym_number_token2, - ACTIONS(12902), 1, - anon_sym_LPAREN, - ACTIONS(12906), 1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 15, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(12910), 1, - anon_sym_DOLLAR, - ACTIONS(12912), 1, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, - anon_sym_BQUOTE, - ACTIONS(12920), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12958), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12960), 1, - anon_sym_RBRACE3, - ACTIONS(12962), 1, - aux_sym__simple_variable_name_token1, - STATE(5432), 1, - sym_simple_expansion, - STATE(6173), 1, - sym_number, - STATE(6174), 1, - sym_expansion, - STATE(6175), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(7132), 1, - sym_parenthesized_expression, - STATE(7134), 1, - sym_arithmetic_expansion, - STATE(7158), 1, - sym_command_substitution, - [271968] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [273257] = 5, ACTIONS(71), 1, sym_comment, - STATE(5161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12964), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 7, + ACTIONS(12972), 1, + sym__special_character, + STATE(5183), 1, + aux_sym__literal_repeat1, + ACTIONS(5699), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301461,7 +303121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 11, + ACTIONS(5701), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301473,18 +303133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272001] = 4, + anon_sym_LT_LT_LT, + [273290] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12946), 1, + ACTIONS(12986), 1, anon_sym_esac, - ACTIONS(12942), 5, + ACTIONS(12982), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(12984), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -301500,290 +303161,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272032] = 8, - ACTIONS(3), 1, + [273321] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + ACTIONS(6042), 1, anon_sym_LT_LT, + ACTIONS(6044), 1, anon_sym_LT_LT_DASH, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5167), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 4, + ACTIONS(12754), 1, + sym_file_descriptor, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(12737), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12735), 3, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - [272071] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12967), 1, - sym_file_descriptor, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, + STATE(5052), 4, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11790), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12670), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272110] = 5, - ACTIONS(3), 1, + [273366] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 2, + STATE(5148), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12880), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5699), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [272143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 2, + ACTIONS(5701), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272174] = 8, - ACTIONS(3), 1, + [273399] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11883), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12975), 1, - sym_file_descriptor, - ACTIONS(12167), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12972), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5167), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12972), 1, + sym__special_character, + STATE(5183), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12969), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272213] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12967), 1, + ACTIONS(5709), 12, sym_file_descriptor, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4709), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11892), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - [272252] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12967), 1, - sym_file_descriptor, - ACTIONS(12672), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4678), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11902), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272291] = 9, + anon_sym_LT_LT_LT, + [273432] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, + ACTIONS(7969), 1, + aux_sym_number_token1, + ACTIONS(7971), 1, + aux_sym_number_token2, + ACTIONS(12988), 1, + anon_sym_LPAREN, + ACTIONS(12990), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272332] = 10, + ACTIONS(12992), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12994), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12996), 1, + anon_sym_DOLLAR, + ACTIONS(12998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13000), 1, + anon_sym_RBRACE3, + ACTIONS(13002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13004), 1, + anon_sym_BQUOTE, + ACTIONS(13006), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13008), 1, + aux_sym__simple_variable_name_token1, + STATE(5430), 1, + sym_simple_expansion, + STATE(6224), 1, + sym__expansion_max_length_binary_expression, + STATE(6307), 1, + sym__expansion_max_length_expression, + STATE(6157), 2, + sym_number, + sym_expansion, + STATE(7002), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [273493] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(11872), 1, + ACTIONS(12714), 1, + anon_sym_LT_LT_LT, + ACTIONS(13016), 1, + sym_file_descriptor, + ACTIONS(11718), 2, anon_sym_PIPE, - ACTIONS(12981), 1, anon_sym_LT_LT, - ACTIONS(12990), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12993), 1, - sym_file_descriptor, - ACTIONS(12987), 2, + ACTIONS(13014), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12984), 3, + ACTIONS(13012), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5171), 3, + STATE(5605), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11883), 4, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11720), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(12978), 5, + anon_sym_LT_LT_DASH, + ACTIONS(13010), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [272375] = 5, + [273534] = 5, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, + STATE(5211), 1, aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, + ACTIONS(12926), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5561), 7, + ACTIONS(5699), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301791,29 +303341,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(5701), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272408] = 6, + anon_sym_LT_LT_LT, + [273567] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12996), 1, - sym_variable_name, - STATE(6657), 1, - sym_subscript, - STATE(5173), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 7, + ACTIONS(12880), 1, + aux_sym_concatenation_token1, + ACTIONS(13018), 1, + sym__concat, + STATE(5159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301821,26 +303370,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11658), 10, + ACTIONS(1215), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272443] = 5, + [273602] = 5, ACTIONS(71), 1, sym_comment, STATE(5159), 1, aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, + ACTIONS(13020), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2160), 7, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301848,7 +303398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(1237), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301860,79 +303410,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272476] = 12, + [273635] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7117), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, - sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [272523] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1254), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [272552] = 4, + ACTIONS(13027), 1, + anon_sym_esac, + ACTIONS(13023), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13025), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [273666] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12900), 1, + ACTIONS(13033), 1, anon_sym_esac, - ACTIONS(12896), 5, + ACTIONS(13029), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12898), 15, + ACTIONS(13031), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -301948,10 +303464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272583] = 3, + [273697] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + STATE(5212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12926), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301959,25 +303480,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 14, + ACTIONS(2084), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [273730] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5148), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12880), 2, + sym__concat, aux_sym_concatenation_token1, - [272612] = 3, + ACTIONS(4648), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4650), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [273763] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1256), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301985,7 +303531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 14, + ACTIONS(1258), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302000,10 +303546,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [272641] = 3, + [273792] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7969), 1, + aux_sym_number_token1, + ACTIONS(7971), 1, + aux_sym_number_token2, + ACTIONS(12988), 1, + anon_sym_LPAREN, + ACTIONS(12992), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12994), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12996), 1, + anon_sym_DOLLAR, + ACTIONS(12998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13004), 1, + anon_sym_BQUOTE, + ACTIONS(13006), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13035), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13037), 1, + anon_sym_RBRACE3, + ACTIONS(13039), 1, + aux_sym__simple_variable_name_token1, + STATE(5423), 1, + sym_simple_expansion, + STATE(6259), 1, + sym__expansion_max_length_binary_expression, + STATE(6307), 1, + sym__expansion_max_length_expression, + STATE(6201), 2, + sym_number, + sym_expansion, + STATE(7404), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [273853] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + STATE(5211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12926), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5707), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302011,34 +303604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 14, + ACTIONS(5709), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [272670] = 6, + [273886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(12999), 1, + ACTIONS(13041), 1, sym__concat, - STATE(4214), 1, + STATE(4254), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, + ACTIONS(1207), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -302055,19 +303645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272705] = 6, + [273921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(12010), 1, aux_sym_concatenation_token1, - ACTIONS(13001), 1, + ACTIONS(13043), 1, sym__concat, - STATE(4214), 1, + STATE(4254), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 16, + ACTIONS(1213), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -302084,10 +303674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272740] = 3, + [273956] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + STATE(5212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12926), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2137), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302095,110 +303690,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 14, + ACTIONS(2139), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [272769] = 4, - ACTIONS(71), 1, + [273989] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(13007), 1, - anon_sym_esac, - ACTIONS(13003), 5, - anon_sym_DOLLAR, + ACTIONS(7969), 1, aux_sym_number_token1, + ACTIONS(7971), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13005), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(12988), 1, anon_sym_LPAREN, + ACTIONS(12992), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12994), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [272800] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12940), 1, - anon_sym_esac, - ACTIONS(12936), 5, + ACTIONS(12996), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12938), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12998), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(13002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13004), 1, anon_sym_BQUOTE, + ACTIONS(13006), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [272831] = 4, + ACTIONS(13045), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13047), 1, + anon_sym_RBRACE3, + ACTIONS(13049), 1, + aux_sym__simple_variable_name_token1, + STATE(5434), 1, + sym_simple_expansion, + STATE(6208), 1, + sym_number, + STATE(6226), 1, + sym_expansion, + STATE(6236), 1, + sym__expansion_max_length_binary_expression, + STATE(6307), 1, + sym__expansion_max_length_expression, + STATE(6907), 1, + sym_parenthesized_expression, + STATE(6912), 1, + sym_arithmetic_expansion, + STATE(6926), 1, + sym_command_substitution, + [274056] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13013), 1, - anon_sym_esac, - ACTIONS(13009), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13011), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [272862] = 5, + STATE(5158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12880), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4652), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4654), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [274089] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(1260), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302206,8 +303786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 12, + ACTIONS(1262), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302219,10 +303800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [272895] = 3, + aux_sym_concatenation_token1, + [274118] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302230,7 +303812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 14, + ACTIONS(1237), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302245,43 +303827,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [272924] = 4, + [274147] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(13019), 1, - anon_sym_esac, - ACTIONS(13015), 5, + ACTIONS(12714), 1, + anon_sym_LT_LT_LT, + ACTIONS(13016), 1, + sym_file_descriptor, + ACTIONS(11789), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(13014), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13012), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5585), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11791), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(13010), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [274188] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13017), 15, + ACTIONS(1278), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272955] = 6, + [274217] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12850), 1, - aux_sym_concatenation_token1, - ACTIONS(13021), 1, - sym__concat, - STATE(5194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302289,63 +303896,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 11, + ACTIONS(1314), 14, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272990] = 12, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [274246] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(1264), 7, anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7277), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1266), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - ACTIONS(12930), 1, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [274275] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1268), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1270), 14, sym_file_descriptor, - ACTIONS(5923), 2, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [274304] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1274), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [274333] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12895), 1, + aux_sym_concatenation_token1, + ACTIONS(13051), 1, + sym__concat, + STATE(5185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [273037] = 6, + ACTIONS(1209), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [274368] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12850), 1, + ACTIONS(12895), 1, aux_sym_concatenation_token1, - ACTIONS(13023), 1, + ACTIONS(13053), 1, sym__concat, - STATE(5194), 1, + STATE(5185), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, + ACTIONS(1213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302353,7 +304035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 11, + ACTIONS(1215), 11, sym_file_descriptor, sym_variable_name, anon_sym_PIPE_PIPE, @@ -302365,14 +304047,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273072] = 5, + [274403] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12714), 1, + anon_sym_LT_LT_LT, + ACTIONS(13016), 1, + sym_file_descriptor, + ACTIONS(11775), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(13014), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13012), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5542), 3, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + ACTIONS(11777), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(13010), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [274444] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13025), 1, + ACTIONS(13055), 1, sym__special_character, - STATE(5193), 1, + STATE(5183), 1, aux_sym__literal_repeat1, - ACTIONS(1316), 7, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302380,7 +304094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 12, + ACTIONS(1320), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302393,15 +304107,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273105] = 5, + [274477] = 3, ACTIONS(71), 1, sym_comment, - STATE(5194), 1, + ACTIONS(1280), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1282), 15, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [274506] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5185), 1, aux_sym_concatenation_repeat1, - ACTIONS(13028), 2, + ACTIONS(13058), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 7, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302409,7 +304149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 11, + ACTIONS(1237), 11, sym_file_descriptor, sym_variable_name, anon_sym_PIPE_PIPE, @@ -302421,42 +304161,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273138] = 4, + [274539] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13035), 1, - anon_sym_esac, - ACTIONS(13031), 5, + ACTIONS(1284), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13033), 15, + ACTIONS(1286), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273169] = 5, + [274568] = 5, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, + STATE(5211), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(12926), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(4648), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302464,7 +304203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 11, + ACTIONS(4650), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302476,15 +304215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273202] = 5, + [274601] = 5, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, + STATE(5212), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(12926), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(4652), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302492,7 +304231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 11, + ACTIONS(4654), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302504,77 +304243,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273235] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13041), 1, - anon_sym_esac, - ACTIONS(13037), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13039), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [273266] = 12, + [274634] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + STATE(5211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12926), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4682), 7, anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7129), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4684), 11, sym_file_descriptor, - ACTIONS(5923), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [274667] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5148), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12880), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4682), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [273313] = 5, + ACTIONS(4684), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [274700] = 5, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, + STATE(5212), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(12926), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4307), 7, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302582,7 +304315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + ACTIONS(4688), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302594,10 +304327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273346] = 3, + [274733] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302605,7 +304338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 14, + ACTIONS(1278), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302620,15 +304353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273375] = 5, + [274762] = 3, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 7, + ACTIONS(1280), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302636,22 +304364,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 11, + ACTIONS(1282), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273408] = 3, + aux_sym_concatenation_token1, + [274791] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302659,7 +304390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 14, + ACTIONS(1286), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302674,10 +304405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273437] = 3, + [274820] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1288), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302685,7 +304416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 14, + ACTIONS(1290), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302700,18 +304431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273466] = 4, + [274849] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13019), 1, + ACTIONS(13065), 1, anon_sym_esac, - ACTIONS(13015), 5, + ACTIONS(13061), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(13063), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302727,10 +304458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273497] = 3, + [274880] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302738,7 +304469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 14, + ACTIONS(1298), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302753,10 +304484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273526] = 3, + [274909] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302764,7 +304495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 14, + ACTIONS(1302), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302779,10 +304510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273555] = 3, + [274938] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302790,7 +304521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 14, + ACTIONS(1250), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302805,10 +304536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273584] = 3, + [274967] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302816,7 +304547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 14, + ACTIONS(1306), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302831,10 +304562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273613] = 3, + [274996] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + STATE(5158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12880), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302842,9 +304578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 14, + ACTIONS(4688), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302855,12 +304590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [273642] = 3, + [275029] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + STATE(5180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12895), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302868,87 +304606,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 14, + ACTIONS(5294), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [273671] = 12, + [275062] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + STATE(5181), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12895), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5296), 7, anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7299), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5298), 11, sym_file_descriptor, - ACTIONS(5923), 2, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [273718] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13013), 1, - anon_sym_esac, - ACTIONS(13009), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13011), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [273749] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [275095] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + STATE(5158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12880), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302956,9 +304662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 14, + ACTIONS(2084), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302969,12 +304674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [273778] = 3, + [275128] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302982,7 +304685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 14, + ACTIONS(1254), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302997,10 +304700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273807] = 3, + [275157] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303008,7 +304711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 14, + ACTIONS(1310), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -303023,15 +304726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273836] = 5, + [275186] = 3, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303039,28 +304737,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 11, + ACTIONS(1254), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [275215] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13071), 1, + anon_sym_esac, + ACTIONS(13067), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13069), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275246] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13077), 1, + anon_sym_esac, + ACTIONS(13073), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13075), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - [273869] = 6, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275277] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12869), 1, - aux_sym_concatenation_token1, - ACTIONS(13045), 1, - sym__concat, - STATE(5220), 1, + STATE(5362), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303068,7 +304822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 11, + ACTIONS(1233), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303079,15 +304833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [273904] = 6, + sym__special_character, + [275310] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12869), 1, + ACTIONS(12926), 1, aux_sym_concatenation_token1, - ACTIONS(13047), 1, + ACTIONS(13081), 1, sym__concat, - STATE(5220), 1, + STATE(5214), 1, aux_sym_concatenation_repeat1, ACTIONS(1207), 7, anon_sym_PIPE, @@ -303109,14 +304863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273939] = 5, + [275345] = 6, ACTIONS(71), 1, sym_comment, - STATE(5220), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13049), 2, - sym__concat, + ACTIONS(12926), 1, aux_sym_concatenation_token1, + ACTIONS(13083), 1, + sym__concat, + STATE(5214), 1, + aux_sym_concatenation_repeat1, ACTIONS(1213), 7, anon_sym_PIPE, anon_sym_LT, @@ -303137,85 +304892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273972] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7309), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, - sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274019] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13058), 1, - anon_sym_LT_LT_LT, - ACTIONS(13060), 1, - sym_file_descriptor, - ACTIONS(11713), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(13056), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13054), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5235), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11719), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(13052), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274060] = 4, + [275380] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13066), 1, + ACTIONS(13089), 1, anon_sym_esac, - ACTIONS(13062), 5, + ACTIONS(13085), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13064), 15, + ACTIONS(13087), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303231,49 +304919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274091] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7043), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, - sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274138] = 5, + [275411] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + STATE(5214), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13091), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303281,58 +304935,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 12, + ACTIONS(1237), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [274171] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13072), 1, - anon_sym_esac, - ACTIONS(13068), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13070), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [274202] = 4, + [275444] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13078), 1, + ACTIONS(13098), 1, anon_sym_esac, - ACTIONS(13074), 5, + ACTIONS(13094), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13076), 15, + ACTIONS(13096), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303348,53 +304974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274233] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7107), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, - sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274280] = 4, + [275475] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13084), 1, + ACTIONS(13104), 1, anon_sym_esac, - ACTIONS(13080), 5, + ACTIONS(13100), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13082), 15, + ACTIONS(13102), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303410,18 +305001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274311] = 4, + [275506] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13090), 1, + ACTIONS(13110), 1, anon_sym_esac, - ACTIONS(13086), 5, + ACTIONS(13106), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13088), 15, + ACTIONS(13108), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303437,72 +305028,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274342] = 4, + [275537] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13096), 1, - anon_sym_esac, - ACTIONS(13092), 5, + ACTIONS(1288), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13094), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [274373] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13102), 1, - anon_sym_esac, - ACTIONS(13098), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13100), 15, + ACTIONS(1290), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274404] = 4, + [275566] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13102), 1, + ACTIONS(13110), 1, anon_sym_esac, - ACTIONS(13098), 5, + ACTIONS(13106), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13100), 15, + ACTIONS(13108), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303518,317 +305081,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274435] = 12, + [275597] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(11686), 1, anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(13115), 1, anon_sym_LT_LT, - ACTIONS(5927), 1, + ACTIONS(13124), 1, anon_sym_LT_LT_DASH, - ACTIONS(7111), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, + ACTIONS(13127), 1, sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, + ACTIONS(13121), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + ACTIONS(11697), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(13118), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, + STATE(5220), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + ACTIONS(13112), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [274482] = 9, + [275640] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(13113), 1, - anon_sym_LT_LT_LT, - ACTIONS(13116), 1, - sym_file_descriptor, - ACTIONS(11671), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(13110), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13107), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5235), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11679), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(13104), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274523] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274558] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5182), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274593] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274628] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5182), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11831), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(13130), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(13132), 1, anon_sym_LT_LT_DASH, - [274663] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(13134), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(13014), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274698] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5182), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 16, + ACTIONS(11833), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(13012), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274768] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5182), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(5220), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13010), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274803] = 4, + [275683] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13078), 1, + ACTIONS(12970), 1, anon_sym_esac, - ACTIONS(13074), 5, + ACTIONS(12966), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13076), 15, + ACTIONS(12968), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303844,65 +305174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274834] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1262), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [274863] = 3, + [275714] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1306), 13, - sym_file_descriptor, - sym__concat, + ACTIONS(13136), 1, sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [274891] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13119), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + STATE(6672), 1, + sym_subscript, + STATE(5249), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11835), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303910,28 +305192,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 11, + ACTIONS(11837), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274923] = 3, + [275749] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(13077), 1, + anon_sym_esac, + ACTIONS(13073), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13124), 15, + ACTIONS(13075), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303947,41 +305230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274951] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1298), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [274979] = 3, + [275780] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(13142), 1, + anon_sym_esac, + ACTIONS(13138), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13128), 15, + ACTIONS(13140), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303997,40 +305257,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275007] = 3, + [275811] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(1292), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13128), 15, + ACTIONS(1294), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275035] = 5, + [275840] = 5, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, + STATE(5148), 1, aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(12880), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(5707), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304038,79 +305299,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 10, + ACTIONS(5709), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275067] = 5, + [275873] = 3, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(1296), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 15, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(4437), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4439), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [275099] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275902] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13092), 5, + ACTIONS(1300), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13094), 15, + ACTIONS(1302), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275127] = 3, + [275931] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(12986), 1, + anon_sym_esac, + ACTIONS(12982), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13128), 15, + ACTIONS(12984), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304126,41 +305390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275155] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1258), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [275183] = 3, + [275962] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13098), 5, + ACTIONS(13142), 1, + anon_sym_esac, + ACTIONS(13138), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13100), 15, + ACTIONS(13140), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304176,16 +305417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275211] = 3, + [275993] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(13065), 1, + anon_sym_esac, + ACTIONS(13061), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13128), 15, + ACTIONS(13063), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304201,16 +305444,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275239] = 3, + [276024] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4290), 1, + anon_sym_PIPE_AMP, + STATE(5221), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4294), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276059] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13098), 5, + ACTIONS(13148), 1, + anon_sym_esac, + ACTIONS(13144), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13100), 15, + ACTIONS(13146), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304226,91 +305500,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275267] = 3, + [276090] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1248), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1250), 15, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276119] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + STATE(5221), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4292), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4294), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(5167), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5699), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276185] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(5168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(5167), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4650), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4648), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(5168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4654), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276290] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(5167), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5707), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 13, - sym_file_descriptor, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276325] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, sym__concat, + STATE(5168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2137), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [275295] = 5, - ACTIONS(71), 1, + [276360] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(5167), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4682), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276395] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12010), 1, + aux_sym_concatenation_token1, + ACTIONS(12012), 1, + sym__concat, + STATE(5168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4688), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275327] = 3, + [276430] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13132), 5, + ACTIONS(1256), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13134), 15, + ACTIONS(1258), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275355] = 5, + [276459] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + STATE(5158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12880), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2137), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304318,7 +305827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 11, + ACTIONS(2139), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304330,64 +305839,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275387] = 3, + [276492] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(1304), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13124), 15, + ACTIONS(1306), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275415] = 3, + [276521] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(1260), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13124), 15, + ACTIONS(1262), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275443] = 5, + [276550] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(13150), 1, + sym_variable_name, + STATE(6672), 1, + sym_subscript, + STATE(5249), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11762), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304395,53 +305909,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + ACTIONS(11764), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275475] = 3, + [276585] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(1235), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13140), 15, + ACTIONS(1237), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275503] = 3, + [276614] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13074), 5, + ACTIONS(12964), 1, + anon_sym_esac, + ACTIONS(12960), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13076), 15, + ACTIONS(12962), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304457,40 +305973,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275531] = 3, + [276645] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(1312), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13140), 15, + ACTIONS(1314), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275559] = 5, + [276674] = 3, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304498,54 +306010,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 10, + ACTIONS(1294), 14, sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [275591] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4313), 10, - sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275623] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [276703] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12896), 5, + ACTIONS(13153), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12898), 15, + ACTIONS(13155), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304561,16 +306050,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275651] = 3, + [276731] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13003), 5, + ACTIONS(13157), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13005), 15, + ACTIONS(13159), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304586,23 +306075,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275679] = 3, + [276759] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12936), 5, + ACTIONS(13161), 1, + sym__special_character, + STATE(5280), 1, + aux_sym__literal_repeat1, + ACTIONS(5435), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12938), 15, + ACTIONS(5437), 13, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -304611,10 +306102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275707] = 3, + [276791] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(13163), 1, + sym__special_character, + STATE(5327), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304622,28 +306117,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(4650), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [275735] = 5, + [276823] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, + ACTIONS(13163), 1, sym__special_character, - STATE(5247), 1, + STATE(5327), 1, aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(4682), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304651,7 +306144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + ACTIONS(4684), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304663,16 +306156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275767] = 3, + [276855] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13062), 5, + ACTIONS(13165), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13064), 15, + ACTIONS(13167), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304688,10 +306181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275795] = 3, + [276883] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 8, + ACTIONS(1280), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304699,28 +306192,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 12, + ACTIONS(1282), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275823] = 5, + aux_sym_concatenation_token1, + [276911] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, + ACTIONS(13169), 1, sym__special_character, - STATE(5359), 1, + STATE(5354), 1, aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(5292), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5294), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276943] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304728,8 +306244,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(1250), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304740,10 +306257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275855] = 3, + aux_sym_concatenation_token1, + [276971] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1288), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304751,10 +306269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1290), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304764,11 +306281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [275883] = 3, + [276999] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304776,10 +306294,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 13, + ACTIONS(1306), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [277027] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1294), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304789,17 +306331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [275911] = 3, + [277055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12924), 5, + ACTIONS(13165), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12926), 15, + ACTIONS(13167), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304815,16 +306358,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275939] = 3, + [277083] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(13171), 1, + aux_sym_heredoc_redirect_token1, + STATE(6756), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [277123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12716), 1, + sym__special_character, + STATE(4988), 1, + aux_sym__literal_repeat1, + ACTIONS(12784), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12782), 15, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [277155] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(13173), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(13175), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304840,10 +306441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275967] = 3, + [277183] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304851,10 +306452,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1254), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304864,8 +306464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [275995] = 3, + [277211] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1308), 7, @@ -304879,7 +306480,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1310), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304889,11 +306489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276023] = 3, + [277239] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304901,57 +306502,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(1254), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276051] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13146), 1, - sym__special_character, - STATE(5303), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5266), 11, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276083] = 3, + [277267] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13148), 5, + ACTIONS(13173), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13150), 15, + ACTIONS(13175), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304967,10 +306541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276111] = 3, + [277295] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(13163), 1, + sym__special_character, + STATE(5327), 1, + aux_sym__literal_repeat1, + ACTIONS(5699), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304978,9 +306556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(5701), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304991,11 +306568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [276139] = 3, + [277327] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + STATE(5362), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5699), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305003,24 +306584,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 13, + ACTIONS(5701), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [276167] = 3, + [277359] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + STATE(5363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305028,68 +306611,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 13, + ACTIONS(2084), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [276195] = 9, + [277391] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - ACTIONS(13158), 1, - sym_file_descriptor, - ACTIONS(11892), 2, + ACTIONS(1276), 7, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(13156), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(13154), 3, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1278), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11894), 4, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [277419] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5362), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5707), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5709), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(13152), 5, + [277451] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2137), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [276235] = 3, + ACTIONS(2139), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [277483] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(13177), 1, + sym__special_character, + STATE(5280), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13124), 15, + ACTIONS(1320), 13, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -305098,10 +306728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276263] = 3, + [277515] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305109,24 +306739,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(1286), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276291] = 3, + [277543] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(13180), 1, + aux_sym_heredoc_redirect_token1, + STATE(6833), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [277583] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(13182), 1, + aux_sym_heredoc_redirect_token1, + STATE(6854), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [277623] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(13184), 1, + sym__special_character, + STATE(5397), 1, + aux_sym__literal_repeat1, + ACTIONS(5699), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305134,9 +306830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(5701), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305147,17 +306842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [276319] = 3, + [277655] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(13157), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(13159), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305173,10 +306867,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276347] = 3, + [277683] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(13186), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13188), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [277711] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13184), 1, + sym__special_character, + STATE(5397), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305184,53 +306907,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(5709), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [276375] = 3, + anon_sym_LT_LT_LT, + [277743] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(13186), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13188), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [277771] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7955), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + anon_sym_DQUOTE, + ACTIONS(7973), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12909), 1, + anon_sym_DOLLAR, + ACTIONS(12913), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12915), 1, + anon_sym_BQUOTE, + ACTIONS(12917), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(13190), 5, + sym_variable_name, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6425), 6, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [277815] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, sym_file_descriptor, - sym__concat, + ACTIONS(13192), 1, + aux_sym_heredoc_redirect_token1, + STATE(6952), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [276403] = 5, + [277855] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, + ACTIONS(13163), 1, sym__special_character, - STATE(5359), 1, + STATE(5327), 1, aux_sym__literal_repeat1, - ACTIONS(4280), 7, + ACTIONS(5707), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305238,28 +307023,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 11, + ACTIONS(5709), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276435] = 3, + [277887] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5863), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12813), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12552), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12550), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [277925] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(13153), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(13155), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305275,16 +307090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276463] = 3, + [277953] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13164), 5, + ACTIONS(13194), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13166), 15, + ACTIONS(13196), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305300,62 +307115,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276491] = 3, - ACTIONS(71), 1, + [277981] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 7, - anon_sym_PIPE, + ACTIONS(5870), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12813), 1, + sym_file_descriptor, + ACTIONS(4493), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5861), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12552), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12550), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + anon_sym_GT_PIPE, + [278019] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13194), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13196), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278047] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13194), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13196), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278075] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13194), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13196), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278103] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, sym_file_descriptor, - sym__concat, + ACTIONS(13198), 1, + aux_sym_heredoc_redirect_token1, + STATE(6753), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(3114), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [276519] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13168), 1, - sym__special_character, - STATE(5303), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, - anon_sym_PIPE, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 11, + anon_sym_GT_PIPE, + [278143] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(13200), 1, + aux_sym_heredoc_redirect_token1, + STATE(6757), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276551] = 3, + [278183] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(13186), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13188), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278211] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13186), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13188), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278239] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13023), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13025), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278267] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13029), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13031), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278295] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13153), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13155), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278323] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13153), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13155), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278351] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13067), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13069), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278379] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1256), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305363,21 +307468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1258), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276579] = 3, + [278407] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1260), 7, @@ -305391,54 +307496,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1262), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276607] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12930), 1, - sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [276651] = 3, + [278435] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305446,7 +307518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1237), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -305460,10 +307532,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276679] = 3, + [278463] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(13073), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13075), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278491] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305471,24 +307568,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276707] = 3, + [278519] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1264), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305496,61 +307593,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1266), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276735] = 9, - ACTIONS(71), 1, + [278547] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(12793), 1, + ACTIONS(3118), 1, anon_sym_LT_LT_LT, - ACTIONS(13158), 1, + ACTIONS(3144), 1, sym_file_descriptor, - ACTIONS(11790), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(13156), 2, + ACTIONS(13202), 1, + aux_sym_heredoc_redirect_token1, + STATE(7073), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3114), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5601), 2, + STATE(5422), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, - ACTIONS(13154), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11792), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(13152), 5, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [276775] = 3, + anon_sym_GT_PIPE, + [278587] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(13204), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(13206), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305566,14 +307663,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276803] = 5, + [278615] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(13208), 1, + aux_sym_heredoc_redirect_token1, + STATE(7079), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [278655] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5362), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4648), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4650), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [278687] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1268), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1270), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [278715] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + STATE(5363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4652), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305581,7 +307762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + ACTIONS(4654), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305592,17 +307773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276835] = 3, + [278747] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12924), 5, + ACTIONS(13085), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12926), 15, + ACTIONS(13087), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305618,16 +307798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276863] = 3, + [278775] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(13210), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(13212), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305643,41 +307823,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276891] = 3, + [278803] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12936), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12938), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276919] = 3, + ACTIONS(1272), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1274), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [278831] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(13214), 1, + aux_sym_heredoc_redirect_token1, + STATE(7202), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [278871] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_LT_LT_LT, + ACTIONS(3144), 1, + sym_file_descriptor, + ACTIONS(13216), 1, + aux_sym_heredoc_redirect_token1, + STATE(7205), 1, + sym__heredoc_expression, + ACTIONS(3108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3114), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5422), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3112), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [278911] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 5, + ACTIONS(13094), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(13096), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305693,16 +307935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276947] = 3, + [278939] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(13100), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(13102), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305718,10 +307960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276975] = 3, + [278967] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(13218), 1, + sym__special_character, + STATE(5327), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305729,9 +307975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1320), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305742,11 +307987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [277003] = 3, + [278999] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + STATE(5362), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4682), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305754,24 +308003,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(4684), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [277031] = 3, + [279031] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(13157), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13159), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [279059] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305779,24 +308050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1298), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277059] = 3, + [279087] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305804,30 +308075,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277087] = 3, + [279115] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 5, + ACTIONS(13106), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(13108), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305843,16 +308114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277115] = 3, + [279143] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(13106), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(13108), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305868,80 +308139,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277143] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7760), 1, - anon_sym_LPAREN, - ACTIONS(7770), 1, - anon_sym_DQUOTE, - ACTIONS(7778), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12873), 1, - anon_sym_DOLLAR, - ACTIONS(12877), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12879), 1, - anon_sym_BQUOTE, - ACTIONS(12881), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7788), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(13175), 5, - sym_variable_name, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(6435), 6, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [277187] = 9, + [279171] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - ACTIONS(13158), 1, - sym_file_descriptor, - ACTIONS(11902), 2, + ACTIONS(1256), 7, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(13156), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5590), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(13154), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11904), 4, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1258), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(13152), 5, + aux_sym_concatenation_token1, + [279199] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1231), 8, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [277227] = 3, + sym__special_character, + ACTIONS(1233), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [279227] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(13073), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(13075), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305957,10 +308214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277255] = 3, + [279255] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1260), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305968,24 +308225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1262), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277283] = 3, + [279283] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305993,30 +308250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 13, + ACTIONS(1237), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277311] = 6, + [279311] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13043), 1, - aux_sym_concatenation_token1, - ACTIONS(13177), 1, - sym__concat, - STATE(5332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306024,8 +308275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 10, + ACTIONS(1314), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306035,10 +308288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [277345] = 3, + aux_sym_concatenation_token1, + [279339] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(1264), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306046,9 +308300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 13, + ACTIONS(1266), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306058,18 +308313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277373] = 6, + [279367] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13043), 1, - aux_sym_concatenation_token1, - ACTIONS(13179), 1, - sym__concat, - STATE(5332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306077,54 +308325,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 10, + ACTIONS(1278), 13, sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [277407] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13181), 2, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1215), 10, - sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [277439] = 3, + aux_sym_concatenation_token1, + [279395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(12982), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(12984), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306140,10 +308364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277467] = 3, + [279423] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1280), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306151,74 +308375,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(1282), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277495] = 3, + [279451] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13009), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13011), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(13184), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [277523] = 3, + STATE(5397), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4650), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [279483] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13162), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [277551] = 3, + ACTIONS(1284), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1286), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [279511] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1288), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306226,57 +308452,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(1290), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277579] = 5, - ACTIONS(3), 1, + [279539] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(12686), 1, - sym__special_character, - STATE(4943), 1, - aux_sym__literal_repeat1, - ACTIONS(12740), 3, + ACTIONS(1292), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1294), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [279567] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12954), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12956), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12738), 15, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [277611] = 3, + [279595] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13015), 5, + ACTIONS(13061), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(13063), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306292,10 +308541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277639] = 3, + [279623] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306303,24 +308552,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 13, + ACTIONS(1298), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277667] = 3, + [279651] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306328,24 +308577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277695] = 3, + [279679] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(13184), 1, + sym__special_character, + STATE(5397), 1, + aux_sym__literal_repeat1, + ACTIONS(4682), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306353,9 +308606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 13, + ACTIONS(4684), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306366,11 +308618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [277723] = 3, + [279711] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306378,7 +308629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1250), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -306392,35 +308643,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277751] = 3, + [279739] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13015), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13017), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(13221), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [277779] = 3, + STATE(5354), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1320), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [279771] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306428,7 +308681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1270), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -306442,10 +308695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277807] = 3, + [279799] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306453,7 +308706,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(1306), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [279827] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1274), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -306467,7 +308745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277835] = 3, + [279855] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1252), 7, @@ -306485,22 +308763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277863] = 5, + [279883] = 3, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306508,21 +308781,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 10, + ACTIONS(1310), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [277895] = 3, + aux_sym_concatenation_token1, + [279911] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306530,29 +308806,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1254), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277923] = 5, + [279939] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7969), 1, + aux_sym_number_token1, + ACTIONS(7971), 1, + aux_sym_number_token2, + ACTIONS(12988), 1, + anon_sym_LPAREN, + ACTIONS(12992), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12994), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13004), 1, + anon_sym_BQUOTE, + ACTIONS(13006), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13224), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13226), 1, + anon_sym_COLON, + ACTIONS(13228), 1, + anon_sym_RBRACE3, + ACTIONS(13230), 1, + aux_sym__simple_variable_name_token1, + STATE(6117), 1, + sym__expansion_max_length_binary_expression, + STATE(6307), 1, + sym__expansion_max_length_expression, + STATE(6136), 2, + sym_number, + sym_expansion, + STATE(6675), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [279997] = 6, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, + ACTIONS(13079), 1, aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(13232), 1, + sym__concat, + STATE(5364), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306560,7 +308877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 10, + ACTIONS(1209), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -306571,10 +308888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [277955] = 3, + [280031] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(13079), 1, + aux_sym_concatenation_token1, + ACTIONS(13234), 1, + sym__concat, + STATE(5364), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306582,9 +308905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1215), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306594,12 +308916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [277983] = 3, + [280065] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + STATE(5364), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13236), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306607,9 +308932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1237), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306619,58 +308943,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [278011] = 18, - ACTIONS(3), 1, + [280097] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(13144), 5, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(7776), 1, aux_sym_number_token2, - ACTIONS(12902), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13146), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, anon_sym_LPAREN, - ACTIONS(12906), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13184), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13186), 1, - anon_sym_COLON, - ACTIONS(13188), 1, - anon_sym_RBRACE3, - ACTIONS(13190), 1, - aux_sym__simple_variable_name_token1, - STATE(6147), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6135), 2, - sym_number, - sym_expansion, - STATE(6661), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [278069] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280125] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13009), 5, + ACTIONS(13239), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(13241), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306686,41 +308993,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278097] = 3, + [280153] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1270), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [278125] = 3, + ACTIONS(13243), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13245), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280181] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(13138), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(13140), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306736,10 +309043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278153] = 3, + [280209] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306747,7 +309054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(1278), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -306761,10 +309068,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [278181] = 3, + [280237] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(13243), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13245), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280265] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306772,7 +309104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1286), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -306786,14 +309118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [278209] = 5, + [280293] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13192), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + ACTIONS(1260), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306801,8 +309129,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 11, + ACTIONS(1262), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306813,10 +309142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [278241] = 3, + aux_sym_concatenation_token1, + [280321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306824,30 +309154,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1237), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [278269] = 3, + [280349] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(13247), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13140), 15, + ACTIONS(13249), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306863,7 +309193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278297] = 3, + [280377] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(13138), 5, @@ -306888,16 +309218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278325] = 3, + [280405] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13195), 5, + ACTIONS(13061), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13197), 15, + ACTIONS(13063), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306913,16 +309243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278353] = 3, + [280433] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(13251), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(13253), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306938,41 +309268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278381] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1250), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [278409] = 3, + [280461] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(13255), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(13257), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306988,7 +309293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278437] = 3, + [280489] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1296), 7, @@ -307013,16 +309318,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [278465] = 3, + [280517] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1302), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [280545] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1256), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1258), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [280573] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(13259), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(13261), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307038,16 +309393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278493] = 3, + [280601] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13031), 5, + ACTIONS(13259), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13033), 15, + ACTIONS(13261), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307063,10 +309418,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278521] = 3, + [280629] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(12974), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12976), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280657] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13259), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13261), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280685] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13259), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13261), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280713] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307074,10 +309504,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307087,45 +309516,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [278549] = 6, + [280741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(1264), 7, anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4159), 9, + ACTIONS(1266), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [278583] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [280769] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13203), 5, + ACTIONS(13243), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13205), 15, + ACTIONS(13245), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307141,42 +309568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278611] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4159), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [278641] = 3, + [280797] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13207), 5, + ACTIONS(13243), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13209), 15, + ACTIONS(13245), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307192,10 +309593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278669] = 3, + [280825] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307203,7 +309604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(1270), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -307217,16 +309618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [278697] = 3, + [280853] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13211), 5, + ACTIONS(12974), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13213), 15, + ACTIONS(12976), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307242,10 +309643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278725] = 3, + [280881] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307253,7 +309654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1274), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -307267,41 +309668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [278753] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13215), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13217), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278781] = 3, + [280909] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(12982), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(12984), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307317,67 +309693,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278809] = 3, + [280937] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13201), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278837] = 10, + ACTIONS(1280), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1282), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [280965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11780), 1, + ACTIONS(1248), 7, anon_sym_PIPE, - ACTIONS(13219), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(13221), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13223), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1250), 13, sym_file_descriptor, - ACTIONS(13156), 2, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11782), 3, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [280993] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13263), 1, + sym__special_character, + STATE(5397), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1320), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(13154), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5396), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(13152), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [281025] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1288), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [278879] = 3, + ACTIONS(1290), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [281053] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307385,7 +309806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -307399,16 +309820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [278907] = 3, + [281081] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(12966), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(12968), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307424,10 +309845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278935] = 3, + [281109] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307435,7 +309856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1294), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -307449,16 +309870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [278963] = 3, + [281137] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(12960), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(12962), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307474,41 +309895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278991] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1290), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [279019] = 3, + [281165] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(13165), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(13167), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307524,25 +309920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279047] = 5, + [281193] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13225), 1, - sym__special_character, - STATE(5390), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 5, + ACTIONS(13165), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5132), 13, + ACTIONS(13167), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -307551,16 +309945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279079] = 3, + [281221] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13068), 5, + ACTIONS(13266), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13070), 15, + ACTIONS(13268), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307576,25 +309970,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279107] = 5, + [281249] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13227), 1, - sym__special_character, - STATE(5390), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 5, + ACTIONS(12960), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1318), 13, + ACTIONS(12962), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -307603,35 +309995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279139] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1262), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [279167] = 3, + [281277] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307639,9 +310006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1254), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307651,12 +310019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [279195] = 3, + [281305] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307664,28 +310031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, + ACTIONS(1310), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279223] = 5, + [281333] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307693,36 +310056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(1254), 13, sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [279255] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5561), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5563), 10, - sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307732,100 +310069,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279287] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11872), 1, - anon_sym_PIPE, - ACTIONS(13233), 1, - anon_sym_LT_LT, - ACTIONS(13242), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13245), 1, - sym_file_descriptor, - ACTIONS(13239), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11883), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(13236), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5396), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(13230), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [279329] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, aux_sym_concatenation_token1, - ACTIONS(2160), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2162), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [279361] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13074), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13076), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279389] = 3, + [281361] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13080), 5, + ACTIONS(13173), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13082), 15, + ACTIONS(13175), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307841,16 +310095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279417] = 3, + [281389] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13086), 5, + ACTIONS(13173), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13088), 15, + ACTIONS(13175), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307866,16 +310120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279445] = 3, + [281417] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13248), 5, + ACTIONS(12966), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13250), 15, + ACTIONS(12968), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307891,16 +310145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279473] = 3, + [281445] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13037), 5, + ACTIONS(13270), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13039), 15, + ACTIONS(13272), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307916,16 +310170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279501] = 3, + [281473] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12896), 5, + ACTIONS(13157), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12898), 15, + ACTIONS(13159), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307941,38 +310195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279529] = 3, + [281501] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1306), 12, - sym_file_descriptor, + STATE(5363), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13079), 2, sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279556] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307980,7 +310211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 10, + ACTIONS(4688), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -307991,10 +310222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279587] = 3, + [281533] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1260), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308002,7 +310233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 12, + ACTIONS(1262), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308015,10 +310246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279614] = 3, + [281560] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(13274), 1, + sym__special_character, + STATE(5452), 1, + aux_sym__literal_repeat1, + ACTIONS(4648), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308026,23 +310261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 12, + ACTIONS(4650), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [279641] = 3, + [281591] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(1231), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308050,7 +310283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 12, + sym__special_character, + ACTIONS(1233), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308062,65 +310296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [279668] = 3, + [281618] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 14, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(13274), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279695] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13254), 1, - aux_sym_heredoc_redirect_token1, - STATE(7205), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [279734] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 7, + STATE(5452), 1, + aux_sym__literal_repeat1, + ACTIONS(4682), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308128,9 +310311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 12, + ACTIONS(4684), 10, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308140,44 +310322,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [279761] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [279798] = 5, + [281649] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, + ACTIONS(13274), 1, sym__special_character, - STATE(5431), 1, + STATE(5452), 1, aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(5699), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308185,7 +310337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 10, + ACTIONS(5701), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308196,37 +310348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13258), 1, - sym__concat, - STATE(5527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [279862] = 3, + [281680] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(4652), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308234,7 +310359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 12, + ACTIONS(4654), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308247,57 +310372,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [279889] = 8, + [281707] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5852), 1, + ACTIONS(10554), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [279926] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, + ACTIONS(13282), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(13285), 1, sym_file_descriptor, - ACTIONS(13260), 1, - aux_sym_heredoc_redirect_token1, - STATE(6960), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(10546), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(13279), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5422), 4, sym_file_redirect, + sym_incomplete_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(13276), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308306,118 +310401,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [279965] = 9, + [281744] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13262), 1, + ACTIONS(7969), 1, + aux_sym_number_token1, + ACTIONS(7971), 1, + aux_sym_number_token2, + ACTIONS(12988), 1, + anon_sym_LPAREN, + ACTIONS(12992), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12994), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13004), 1, + anon_sym_BQUOTE, + ACTIONS(13006), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13288), 1, aux_sym_heredoc_redirect_token1, - STATE(6965), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [280004] = 3, + ACTIONS(13290), 1, + anon_sym_RBRACE3, + ACTIONS(13292), 1, + aux_sym__simple_variable_name_token1, + STATE(6190), 1, + sym__expansion_max_length_binary_expression, + STATE(6307), 1, + sym__expansion_max_length_expression, + STATE(6189), 2, + sym_number, + sym_expansion, + STATE(7264), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [281799] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4493), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1286), 12, + ACTIONS(12008), 1, sym_file_descriptor, - sym__concat, + ACTIONS(13300), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13294), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(13298), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [280031] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1215), 12, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13296), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [280058] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13264), 1, - aux_sym_heredoc_redirect_token1, - STATE(7417), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(4511), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11752), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [280097] = 3, + [281838] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(13274), 1, + sym__special_character, + STATE(5452), 1, + aux_sym__literal_repeat1, + ACTIONS(5707), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308425,9 +310484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 12, + ACTIONS(5709), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308437,11 +310495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [280124] = 3, + [281869] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308449,23 +310506,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 12, + ACTIONS(4688), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [280151] = 3, + anon_sym_LT_LT_LT, + [281896] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308473,7 +310530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 12, + ACTIONS(1298), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308486,10 +310543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280178] = 3, + [281923] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308497,7 +310554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 12, + ACTIONS(1302), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308510,64 +310567,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280205] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13266), 1, - aux_sym_heredoc_redirect_token1, - STATE(7420), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [280244] = 3, + [281950] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 8, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1231), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1233), 14, + sym_test_operator, + sym__brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - ACTIONS(1225), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [280271] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281977] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7969), 1, + aux_sym_number_token1, + ACTIONS(7971), 1, + aux_sym_number_token2, + ACTIONS(12988), 1, + anon_sym_LPAREN, + ACTIONS(12992), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12994), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12998), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13004), 1, + anon_sym_BQUOTE, + ACTIONS(13006), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13302), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13304), 1, + anon_sym_RBRACE3, + ACTIONS(13306), 1, + aux_sym__simple_variable_name_token1, + STATE(6160), 1, + sym__expansion_max_length_binary_expression, + STATE(6307), 1, + sym__expansion_max_length_expression, + STATE(6155), 2, + sym_number, + sym_expansion, + STATE(6751), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [282032] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1231), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308575,9 +310640,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 12, + ACTIONS(1233), 12, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308587,11 +310652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [280298] = 3, + sym__special_character, + [282059] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308599,7 +310664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 12, + ACTIONS(1286), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308612,10 +310677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280325] = 3, + [282086] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1288), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308623,7 +310688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 12, + ACTIONS(1290), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308636,77 +310701,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280352] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13268), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1318), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [280383] = 20, + [282113] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(7969), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(7971), 1, aux_sym_number_token2, - ACTIONS(12902), 1, + ACTIONS(12988), 1, anon_sym_LPAREN, - ACTIONS(12906), 1, + ACTIONS(12992), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, + ACTIONS(12994), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, + ACTIONS(12998), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, + ACTIONS(13002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, + ACTIONS(13004), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, + ACTIONS(13006), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13271), 1, + ACTIONS(13308), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(13273), 1, + ACTIONS(13310), 1, anon_sym_RBRACE3, - ACTIONS(13275), 1, + ACTIONS(13312), 1, aux_sym__simple_variable_name_token1, - STATE(6205), 1, + STATE(6197), 1, sym_number, - STATE(6216), 1, + STATE(6198), 1, sym_expansion, - STATE(6249), 1, + STATE(6200), 1, sym__expansion_max_length_binary_expression, - STATE(6323), 1, + STATE(6307), 1, sym__expansion_max_length_expression, - STATE(6707), 1, + STATE(7286), 1, sym_parenthesized_expression, - STATE(6749), 1, + STATE(7293), 1, sym_arithmetic_expansion, - STATE(7028), 1, + STATE(7315), 1, sym_command_substitution, - [280444] = 3, + [282174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13314), 1, + aux_sym_concatenation_token1, + ACTIONS(13316), 1, + sym__concat, + STATE(5469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1233), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [282207] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308714,27 +310780,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 12, + ACTIONS(1306), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [280471] = 5, + aux_sym_concatenation_token1, + [282234] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308742,81 +310804,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 10, + ACTIONS(2084), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280502] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + [282261] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4493), 1, + anon_sym_LT_LT, + ACTIONS(12022), 1, sym_file_descriptor, - ACTIONS(13277), 1, - aux_sym_heredoc_redirect_token1, - STATE(7146), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(13300), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(13322), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(13320), 3, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280541] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13279), 1, - aux_sym_heredoc_redirect_token1, - STATE(7160), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(4413), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11726), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [280580] = 3, + [282300] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(1280), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308824,7 +310858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 12, + ACTIONS(1282), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308837,10 +310871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280607] = 3, + [282327] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 7, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308848,8 +310882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 12, + ACTIONS(1250), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308859,12 +310894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [280634] = 3, + aux_sym_concatenation_token1, + [282354] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1256), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308872,7 +310906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 12, + ACTIONS(1258), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308885,10 +310919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280661] = 3, + [282381] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308896,7 +310930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 12, + ACTIONS(1314), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308909,36 +310943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280688] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5443), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(13281), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [280719] = 3, + [282408] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1264), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308946,7 +310954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 12, + ACTIONS(1266), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308959,40 +310967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280746] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5443), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(13283), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [280777] = 5, + [282435] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309000,8 +310978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 10, + ACTIONS(1294), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309011,94 +310990,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280808] = 9, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [282462] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(4493), 1, + anon_sym_LT_LT, + ACTIONS(12227), 1, sym_file_descriptor, - ACTIONS(13286), 1, - aux_sym_heredoc_redirect_token1, - STATE(7309), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(13300), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13324), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(13328), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, + ACTIONS(13326), 3, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280847] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13288), 1, - aux_sym_heredoc_redirect_token1, - STATE(7342), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(4587), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11885), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [280886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12744), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12742), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [280913] = 3, + [282501] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309106,7 +311032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 12, + ACTIONS(1270), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309119,10 +311045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280940] = 3, + [282528] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309130,7 +311056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 12, + ACTIONS(1274), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309143,10 +311069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280967] = 3, + [282555] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309154,7 +311080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 12, + ACTIONS(1254), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309167,78 +311093,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280994] = 9, - ACTIONS(3), 1, + [282582] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(13130), 1, + anon_sym_LT_LT, + ACTIONS(13132), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13134), 1, sym_file_descriptor, - ACTIONS(13290), 1, - aux_sym_heredoc_redirect_token1, - STATE(6991), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(13014), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + ACTIONS(13012), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5221), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13010), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [281033] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(12902), 1, - anon_sym_LPAREN, - ACTIONS(12906), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, - anon_sym_BQUOTE, - ACTIONS(12920), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13294), 1, - anon_sym_RBRACE3, - ACTIONS(13296), 1, - aux_sym__simple_variable_name_token1, - STATE(6165), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6157), 2, - sym_number, - sym_expansion, - STATE(7092), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [281088] = 3, + [282621] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309246,7 +311134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 12, + ACTIONS(1310), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309259,48 +311147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [281115] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(12902), 1, - anon_sym_LPAREN, - ACTIONS(12906), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, - anon_sym_BQUOTE, - ACTIONS(12920), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13298), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13300), 1, - anon_sym_RBRACE3, - ACTIONS(13302), 1, - aux_sym__simple_variable_name_token1, - STATE(6161), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6159), 2, - sym_number, - sym_expansion, - STATE(7163), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [281170] = 3, + [282648] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12411), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309308,22 +311158,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12409), 11, + ACTIONS(1254), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281196] = 3, + aux_sym_concatenation_token1, + [282675] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12186), 7, + ACTIONS(13330), 1, + sym__special_character, + STATE(5452), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309331,7 +311186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12184), 11, + ACTIONS(1320), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309342,68 +311197,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [281222] = 8, - ACTIONS(3), 1, + [282706] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13310), 1, - anon_sym_LT_LT_LT, - ACTIONS(13313), 1, + ACTIONS(6042), 1, + anon_sym_LT_LT, + ACTIONS(6044), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12754), 1, sym_file_descriptor, - ACTIONS(11671), 2, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13307), 2, + ACTIONS(12737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + ACTIONS(12735), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5052), 4, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(13304), 8, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12733), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [281258] = 9, + [282745] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(4529), 1, + ACTIONS(4493), 1, anon_sym_LT_LT, - ACTIONS(12109), 1, + ACTIONS(12020), 1, sym_file_descriptor, - ACTIONS(13322), 1, + ACTIONS(13300), 1, anon_sym_LT_LT_DASH, - ACTIONS(13316), 2, + ACTIONS(13333), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13320), 2, + ACTIONS(13337), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13318), 3, + ACTIONS(13335), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4669), 3, + STATE(4376), 4, sym_file_redirect, + sym_incomplete_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 5, + ACTIONS(11781), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [281296] = 3, + [282784] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12453), 7, + ACTIONS(1231), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309411,81 +311268,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12451), 11, + ACTIONS(1233), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281322] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + sym__special_character, + [282811] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12553), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12555), 11, + ACTIONS(12788), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12786), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [282838] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5458), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12268), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13339), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12264), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281348] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2156), 7, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281374] = 6, + [282869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13324), 1, - sym__concat, - STATE(5483), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + STATE(5458), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12251), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 13, + ACTIONS(13341), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12246), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -309494,172 +311356,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [281406] = 3, + anon_sym_LT_LT_DASH, + [282900] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12234), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4493), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12232), 11, + ACTIONS(12813), 1, sym_file_descriptor, + ACTIONS(13300), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13344), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(13348), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [281432] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2160), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2162), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13346), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281458] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12295), 7, - anon_sym_PIPE, + STATE(5091), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12550), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12297), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281484] = 3, + [282939] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12637), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4259), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12639), 11, + ACTIONS(11704), 1, sym_file_descriptor, + ACTIONS(13356), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13350), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(13354), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13352), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281510] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12641), 7, - anon_sym_PIPE, + STATE(4185), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9878), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12643), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281536] = 3, + [282978] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12353), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4318), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12351), 11, + ACTIONS(11861), 1, sym_file_descriptor, + ACTIONS(13364), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13358), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(13362), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13360), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281562] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12375), 7, - anon_sym_PIPE, + STATE(4278), 4, + sym_file_redirect, + sym_incomplete_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(10444), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12373), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281588] = 3, + [283017] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(2137), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309667,7 +311458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12373), 11, + ACTIONS(2139), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309679,10 +311470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281614] = 3, + anon_sym_LT_LT_LT, + [283044] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309690,22 +311482,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12397), 11, + ACTIONS(1278), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281640] = 3, + aux_sym_concatenation_token1, + [283071] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, + ACTIONS(1235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309713,22 +311506,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12397), 11, + ACTIONS(1237), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281666] = 3, + aux_sym_concatenation_token1, + [283098] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12489), 7, + ACTIONS(5954), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309736,22 +311530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12487), 11, + ACTIONS(5956), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281692] = 3, + [283124] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12115), 7, + ACTIONS(12143), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309759,7 +311553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12113), 11, + ACTIONS(12145), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309771,10 +311565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281718] = 3, + [283150] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12434), 7, + ACTIONS(12207), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309782,22 +311576,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12436), 11, + ACTIONS(12209), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281744] = 3, + anon_sym_LT_LT_LT, + [283176] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12509), 7, + ACTIONS(12510), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309805,7 +311599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12511), 11, + ACTIONS(12512), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309817,56 +311611,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281770] = 3, - ACTIONS(71), 1, + [283202] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12509), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12511), 11, + ACTIONS(13314), 1, + aux_sym_concatenation_token1, + ACTIONS(13366), 1, + sym__concat, + STATE(5479), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281796] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12537), 7, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12539), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281822] = 3, + anon_sym_LT_LT_LT, + [283234] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(12167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309874,22 +311648,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12539), 11, + ACTIONS(12169), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281848] = 3, + anon_sym_LT_LT_LT, + [283260] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309897,7 +311671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12424), 11, + ACTIONS(4688), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309909,10 +311683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281874] = 3, + [283286] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309920,22 +311694,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12424), 11, + ACTIONS(4688), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281900] = 3, + anon_sym_LT_LT_LT, + [283312] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309943,7 +311717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + ACTIONS(2084), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309955,14 +311729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281926] = 6, + [283338] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13326), 1, + ACTIONS(13314), 1, aux_sym_concatenation_token1, - ACTIONS(13329), 1, + ACTIONS(13368), 1, sym__concat, - STATE(5483), 1, + STATE(5479), 1, aux_sym_concatenation_repeat1, ACTIONS(1215), 2, sym_file_descriptor, @@ -309981,10 +311755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [281958] = 3, + [283370] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(12472), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309992,22 +311766,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12107), 11, + ACTIONS(12470), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [281984] = 3, + [283396] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12230), 7, + ACTIONS(12217), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310015,7 +311789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12228), 11, + ACTIONS(12215), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310027,36 +311801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282010] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13258), 1, - sym__concat, - STATE(5527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [282042] = 3, + [283422] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(12518), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310064,7 +311812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12347), 11, + ACTIONS(12520), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310076,10 +311824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282068] = 3, + [283448] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(12522), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310087,7 +311835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12347), 11, + ACTIONS(12524), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310099,19 +311847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282094] = 6, + [283474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(13370), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(13373), 1, sym__concat, - STATE(5462), 1, + STATE(5479), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1237), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 13, + ACTIONS(1235), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -310125,62 +311873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [282126] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13334), 6, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - aux_sym__simple_variable_name_token1, - ACTIONS(13332), 12, - sym_variable_name, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - anon_sym_TILDE, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [282152] = 9, + [283506] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13219), 1, + ACTIONS(12163), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(13221), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13223), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12165), 11, sym_file_descriptor, - ACTIONS(5923), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13156), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13154), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(13152), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [282190] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [283532] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 7, + ACTIONS(12378), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310188,22 +311907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 11, + ACTIONS(12376), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [282216] = 3, + [283558] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12178), 7, + ACTIONS(12378), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310211,49 +311930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12180), 11, + ACTIONS(12376), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282242] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13338), 1, - anon_sym_DQUOTE, - ACTIONS(13342), 1, - sym_variable_name, - STATE(6110), 1, - sym_string, - ACTIONS(13340), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1195), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - ACTIONS(13336), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [282276] = 3, + [283584] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 7, + ACTIONS(5296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310261,7 +311953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5707), 11, + ACTIONS(5298), 11, sym_file_descriptor, sym_variable_name, anon_sym_PIPE_PIPE, @@ -310273,36 +311965,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282302] = 6, - ACTIONS(3), 1, + [283610] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13258), 1, - sym__concat, - STATE(5527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12336), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12334), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [282334] = 3, + anon_sym_LT_LT_DASH, + [283636] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12244), 7, + ACTIONS(12336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310310,133 +311999,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12242), 11, + ACTIONS(12334), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282360] = 6, - ACTIONS(3), 1, + [283662] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13258), 1, - sym__concat, - STATE(5462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12498), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [282392] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13338), 1, - anon_sym_DQUOTE, - ACTIONS(13342), 1, - sym_variable_name, - STATE(6110), 1, - sym_string, - ACTIONS(13340), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1183), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - ACTIONS(13336), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [282426] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4529), 1, - anon_sym_LT_LT, - ACTIONS(12894), 1, + ACTIONS(12496), 11, sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13344), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13348), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13346), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [283688] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12157), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [282464] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4529), 1, - anon_sym_LT_LT, - ACTIONS(12226), 1, + ACTIONS(12155), 11, sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13350), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13354), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13352), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [282502] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [283714] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(12432), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310444,7 +312068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 11, + ACTIONS(12430), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310456,36 +312080,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282528] = 6, - ACTIONS(3), 1, + [283740] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13258), 1, - sym__concat, - STATE(5527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12534), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12532), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [282560] = 3, + anon_sym_LT_LT_DASH, + [283766] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(12534), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310493,22 +312114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 11, + ACTIONS(12532), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282586] = 3, + [283792] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(12372), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310516,7 +312137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 11, + ACTIONS(12370), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310528,10 +312149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282612] = 3, + [283818] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(12372), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310539,22 +312160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(12370), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282638] = 3, + [283844] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 7, + ACTIONS(4652), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310562,9 +312183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5270), 11, + ACTIONS(4654), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310574,10 +312194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282664] = 3, + anon_sym_LT_LT_LT, + [283870] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12279), 7, + ACTIONS(12460), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310585,77 +312206,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12281), 11, + ACTIONS(12458), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282690] = 6, + [283896] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12133), 1, + ACTIONS(12460), 7, anon_sym_PIPE, - ACTIONS(13356), 1, - anon_sym_PIPE_AMP, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12131), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12136), 9, + ACTIONS(12458), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282722] = 9, + [283922] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4173), 1, + ACTIONS(12171), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(11775), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12173), 11, sym_file_descriptor, - ACTIONS(13365), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13359), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13363), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13361), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10930), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [282760] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [283948] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12142), 7, + ACTIONS(12574), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310663,77 +312275,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12140), 11, + ACTIONS(12576), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282786] = 9, + [283974] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4529), 1, + ACTIONS(12574), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(12432), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12576), 11, sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13367), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13371), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13369), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284000] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2137), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [282824] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13258), 1, - sym__concat, - STATE(5462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(2139), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282856] = 3, + [284026] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12212), 7, + ACTIONS(12213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310741,7 +312344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12210), 11, + ACTIONS(12211), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310753,10 +312356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282882] = 3, + [284052] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12206), 7, + ACTIONS(12221), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310764,7 +312367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12208), 11, + ACTIONS(12219), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310776,23 +312379,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282908] = 6, + [284078] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13373), 1, + ACTIONS(13376), 1, anon_sym_PIPE, - ACTIONS(13375), 1, + ACTIONS(13379), 1, anon_sym_PIPE_AMP, - STATE(5518), 1, + STATE(5502), 1, aux_sym_pipeline_repeat1, - ACTIONS(12218), 6, + ACTIONS(12246), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12222), 9, + ACTIONS(12251), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310802,123 +312405,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282940] = 9, + [284110] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13384), 1, + anon_sym_DQUOTE, + ACTIONS(13388), 1, + sym_variable_name, + STATE(6127), 1, + sym_string, + ACTIONS(13386), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1195), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(13382), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [284144] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5925), 1, + ACTIONS(12276), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12930), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12278), 11, sym_file_descriptor, - ACTIONS(5923), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [282978] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [284170] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13377), 1, + ACTIONS(2137), 7, anon_sym_PIPE, - ACTIONS(13380), 1, - anon_sym_PIPE_AMP, - STATE(5518), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12131), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12136), 9, + ACTIONS(2139), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283010] = 9, + [284196] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(4652), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(11978), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4654), 11, sym_file_descriptor, - ACTIONS(13389), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13383), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13385), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284222] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12175), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [283048] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4529), 1, - anon_sym_LT_LT, - ACTIONS(12202), 1, + ACTIONS(12177), 11, sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13391), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13395), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13393), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283086] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [284248] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(12484), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310926,22 +312535,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 11, + ACTIONS(12482), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283112] = 3, + [284274] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13384), 1, + anon_sym_DQUOTE, + ACTIONS(13388), 1, + sym_variable_name, + STATE(6127), 1, + sym_string, + ACTIONS(13386), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1183), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(13382), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [284308] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 7, + ACTIONS(12153), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310949,9 +312585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5888), 11, + ACTIONS(12151), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310961,42 +312596,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283138] = 3, + anon_sym_LT_LT_LT, + [284334] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12129), 7, + ACTIONS(12248), 1, anon_sym_PIPE, + ACTIONS(13390), 1, + anon_sym_PIPE_AMP, + STATE(5515), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12246), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12127), 11, + ACTIONS(12251), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283164] = 6, + [284366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(13314), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(13316), 1, sym__concat, - STATE(5527), 1, + STATE(5469), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(4650), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 13, + ACTIONS(4648), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311010,19 +312649,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [283196] = 6, + [284398] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1231), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1233), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [284424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(13314), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(13316), 1, sym__concat, - STATE(5462), 1, + STATE(5474), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4654), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 13, + ACTIONS(4652), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311036,10 +312698,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [283228] = 3, + [284456] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13393), 1, + anon_sym_PIPE, + ACTIONS(13395), 1, + anon_sym_PIPE_AMP, + STATE(5502), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12264), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12268), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284488] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12123), 7, + ACTIONS(5950), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311047,8 +312735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12121), 11, + ACTIONS(5952), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -311058,20 +312747,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [284514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13314), 1, + aux_sym_concatenation_token1, + ACTIONS(13316), 1, + sym__concat, + STATE(5469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4684), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4682), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [283254] = 6, + [284546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(13314), 1, aux_sym_concatenation_token1, - ACTIONS(13397), 1, + ACTIONS(13316), 1, sym__concat, - STATE(5483), 1, + STATE(5474), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(4688), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 13, + ACTIONS(4686), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311085,10 +312799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [283286] = 3, + [284578] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12103), 7, + ACTIONS(12412), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311096,44 +312810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12101), 11, + ACTIONS(12414), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283337] = 3, + [284604] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12531), 7, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311141,25 +312833,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12533), 10, + ACTIONS(2084), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283362] = 3, + [284630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, - sym_file_descriptor, + ACTIONS(13314), 1, + aux_sym_concatenation_token1, + ACTIONS(13316), 1, sym__concat, + STATE(5469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5701), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 14, + ACTIONS(5699), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311173,15 +312871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283387] = 3, + [284662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(13314), 1, + aux_sym_concatenation_token1, + ACTIONS(13316), 1, sym__concat, + STATE(5474), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2084), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 14, + ACTIONS(2082), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311195,11 +312897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283412] = 3, + [284694] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12142), 7, + ACTIONS(12255), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311207,7 +312908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12140), 10, + ACTIONS(12257), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311218,14 +312919,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283437] = 3, + anon_sym_LT_LT_LT, + [284720] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13399), 6, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + aux_sym__simple_variable_name_token1, + ACTIONS(13397), 12, + sym_variable_name, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + anon_sym_TILDE, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [284746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(13314), 1, + aux_sym_concatenation_token1, + ACTIONS(13316), 1, sym__concat, + STATE(5469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5709), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 14, + ACTIONS(5707), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311239,33 +312969,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283462] = 3, - ACTIONS(71), 1, + [284778] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12363), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12361), 10, + ACTIONS(13314), 1, + aux_sym_concatenation_token1, + ACTIONS(13316), 1, + sym__concat, + STATE(5474), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2139), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2137), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283487] = 3, + anon_sym_LT_LT_LT, + [284810] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12416), 7, + ACTIONS(12203), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311273,7 +313006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12418), 10, + ACTIONS(12205), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311284,10 +313017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283512] = 3, + anon_sym_LT_LT_LT, + [284836] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12363), 7, + ACTIONS(12428), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311295,65 +313029,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12361), 10, + ACTIONS(12426), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283537] = 3, - ACTIONS(71), 1, + [284862] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12123), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12121), 10, + ACTIONS(13401), 1, + sym__special_character, + STATE(5534), 1, + aux_sym__literal_repeat1, + ACTIONS(5709), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5707), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283562] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [284891] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12457), 7, - anon_sym_PIPE, + ACTIONS(1237), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12455), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283587] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284941] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(12412), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311361,7 +313120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12107), 10, + ACTIONS(12414), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311372,14 +313131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283612] = 3, + [284966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 14, + ACTIONS(1308), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311394,32 +313153,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [283637] = 3, - ACTIONS(71), 1, + [284991] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12391), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12393), 10, + ACTIONS(13403), 1, + sym__special_character, + STATE(5534), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283662] = 3, + anon_sym_LT_LT_LT, + [285020] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(12498), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311427,7 +313188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 10, + ACTIONS(12496), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311438,10 +313199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283687] = 3, + [285045] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12416), 7, + ACTIONS(12342), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311449,7 +313210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12418), 10, + ACTIONS(12344), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311460,14 +313221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283712] = 3, + [285070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 14, + ACTIONS(1252), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311482,14 +313243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [283737] = 3, + [285095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 14, + ACTIONS(1288), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311504,10 +313265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [283762] = 3, + [285120] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, + ACTIONS(12534), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311515,7 +313276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12397), 10, + ACTIONS(12532), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311526,10 +313287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283787] = 3, + [285145] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12503), 7, + ACTIONS(12434), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311537,7 +313298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12505), 10, + ACTIONS(12436), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311548,10 +313309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283812] = 3, + [285170] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12525), 7, + ACTIONS(12342), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311559,7 +313320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12527), 10, + ACTIONS(12344), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311570,10 +313331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283837] = 3, + [285195] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(12448), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311581,7 +313342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12347), 10, + ACTIONS(12450), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311592,10 +313353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283862] = 3, + [285220] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12489), 7, + ACTIONS(12500), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311603,7 +313364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12487), 10, + ACTIONS(12502), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311614,17 +313375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283887] = 5, + [285245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13399), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 13, + ACTIONS(1304), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311638,32 +313396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [283916] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12395), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12397), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283941] = 3, + aux_sym_concatenation_token1, + [285270] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12509), 7, + ACTIONS(12163), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311671,7 +313408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12511), 10, + ACTIONS(12165), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311682,36 +313419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283966] = 3, + [285295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, + ACTIONS(1250), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 14, + ACTIONS(1248), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311726,14 +313441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284016] = 3, + [285320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(1258), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 14, + ACTIONS(1256), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311748,56 +313463,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284041] = 5, - ACTIONS(3), 1, + [285345] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12372), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [284070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 3, + ACTIONS(12370), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284095] = 3, + anon_sym_LT_LT_DASH, + [285370] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12178), 7, + ACTIONS(12428), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311805,7 +313496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12180), 10, + ACTIONS(12426), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311816,32 +313507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284145] = 3, + [285395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12453), 7, + ACTIONS(12221), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311849,7 +313518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12451), 10, + ACTIONS(12219), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311860,10 +313529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284170] = 3, + [285420] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12279), 7, + ACTIONS(12372), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311871,7 +313540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12281), 10, + ACTIONS(12370), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311882,10 +313551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284195] = 3, + [285445] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(12460), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311893,7 +313562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12539), 10, + ACTIONS(12458), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311904,32 +313573,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284220] = 3, - ACTIONS(71), 1, + [285470] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12295), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12297), 10, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [284245] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285495] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(12460), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311937,7 +313606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12539), 10, + ACTIONS(12458), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311948,10 +313617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284270] = 3, + [285520] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 7, + ACTIONS(12574), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311959,7 +313628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5858), 10, + ACTIONS(12576), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311970,10 +313639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284295] = 3, + [285545] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12495), 7, + ACTIONS(12444), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311981,7 +313650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12497), 10, + ACTIONS(12442), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311992,10 +313661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284320] = 3, + [285570] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12521), 7, + ACTIONS(12366), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312003,7 +313672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12519), 10, + ACTIONS(12368), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312014,10 +313683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284345] = 3, + [285595] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12387), 7, + ACTIONS(12175), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312025,7 +313694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12385), 10, + ACTIONS(12177), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312036,54 +313705,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284370] = 3, - ACTIONS(3), 1, + [285620] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(12255), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12257), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285645] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12171), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12173), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284395] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [285670] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(5929), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5931), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285695] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12544), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12546), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285720] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12424), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12422), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285745] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12432), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12430), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284420] = 3, + anon_sym_LT_LT_DASH, + [285770] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12434), 7, + ACTIONS(2137), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312091,7 +313848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12436), 10, + ACTIONS(2139), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312102,10 +313859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284445] = 3, + [285795] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12637), 7, + ACTIONS(12440), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312113,7 +313870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12639), 10, + ACTIONS(12438), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312124,10 +313881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284470] = 3, + [285820] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12591), 7, + ACTIONS(12480), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312135,7 +313892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12593), 10, + ACTIONS(12478), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312146,10 +313903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284495] = 3, + [285845] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12230), 7, + ACTIONS(12530), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312157,7 +313914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12228), 10, + ACTIONS(12528), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312168,10 +313925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284520] = 3, + [285870] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12509), 7, + ACTIONS(12378), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312179,7 +313936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12511), 10, + ACTIONS(12376), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312190,10 +313947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284545] = 3, + [285895] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12641), 7, + ACTIONS(12143), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312201,7 +313958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12643), 10, + ACTIONS(12145), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312212,10 +313969,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284570] = 3, + [285920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13401), 1, + sym__special_character, + STATE(5534), 1, + aux_sym__literal_repeat1, + ACTIONS(4650), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4648), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [285974] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12244), 7, + ACTIONS(12484), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312223,7 +314026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12242), 10, + ACTIONS(12482), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312234,10 +314037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284595] = 3, + [285999] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12355), 7, + ACTIONS(12534), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312245,7 +314048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12357), 10, + ACTIONS(12532), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312256,10 +314059,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284620] = 3, + [286024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286049] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(12574), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312267,7 +314092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 10, + ACTIONS(12576), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312278,10 +314103,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284645] = 3, + [286074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286099] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12411), 7, + ACTIONS(5929), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312289,7 +314136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12409), 10, + ACTIONS(5931), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312300,10 +314147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284670] = 3, + [286124] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12553), 7, + ACTIONS(12510), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312311,7 +314158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12555), 10, + ACTIONS(12512), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312322,10 +314169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284695] = 3, + [286149] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 7, + ACTIONS(2082), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312333,7 +314180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5858), 10, + ACTIONS(2084), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312344,10 +314191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284720] = 3, + [286174] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12597), 7, + ACTIONS(12564), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312355,7 +314202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12599), 10, + ACTIONS(12562), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312366,10 +314213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284745] = 3, + [286199] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12353), 7, + ACTIONS(12364), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312377,7 +314224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12351), 10, + ACTIONS(12362), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312388,10 +314235,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284770] = 3, + [286224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13401), 1, + sym__special_character, + STATE(5534), 1, + aux_sym__literal_repeat1, + ACTIONS(4684), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4682), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [286253] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12103), 7, + ACTIONS(12217), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312399,7 +314270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12101), 10, + ACTIONS(12215), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312410,10 +314281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284795] = 3, + [286278] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(12454), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312421,7 +314292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12373), 10, + ACTIONS(12456), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312432,10 +314303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284820] = 3, + [286303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286328] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(4686), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312443,7 +314336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 10, + ACTIONS(4688), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312454,10 +314347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284845] = 3, + [286353] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12343), 7, + ACTIONS(12472), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312465,7 +314358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12341), 10, + ACTIONS(12470), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312476,10 +314369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284870] = 3, + [286378] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12403), 7, + ACTIONS(12518), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312487,7 +314380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12401), 10, + ACTIONS(12520), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312498,10 +314391,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284895] = 3, + [286403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286428] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(12350), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312509,7 +314424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12424), 10, + ACTIONS(12352), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312520,10 +314435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284920] = 3, + [286453] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12577), 7, + ACTIONS(12378), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312531,7 +314446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12579), 10, + ACTIONS(12376), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312542,10 +314457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284945] = 3, + [286478] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(12350), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312553,7 +314468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 10, + ACTIONS(12352), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312564,17 +314479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284970] = 5, + [286503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(1298), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 13, + ACTIONS(1296), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312588,17 +314500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [284999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + aux_sym_concatenation_token1, + [286528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 13, + ACTIONS(1300), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312612,10 +314522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285028] = 3, + aux_sym_concatenation_token1, + [286553] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12491), 7, + ACTIONS(12522), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312623,7 +314534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12493), 10, + ACTIONS(12524), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312634,32 +314545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285078] = 3, + [286578] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12499), 7, + ACTIONS(12490), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312667,7 +314556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12501), 10, + ACTIONS(12492), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312678,17 +314567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285103] = 5, + [286603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, + ACTIONS(13401), 1, sym__special_character, - STATE(5552), 1, + STATE(5534), 1, aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(5701), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 13, + ACTIONS(5699), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312702,10 +314591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285132] = 3, + [286632] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12561), 7, + ACTIONS(12336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312713,7 +314602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12559), 10, + ACTIONS(12334), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312724,10 +314613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285157] = 3, + [286657] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(12420), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312735,7 +314624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12424), 10, + ACTIONS(12418), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312746,32 +314635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285207] = 3, + [286682] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(4652), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312779,7 +314646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12347), 10, + ACTIONS(4654), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312790,10 +314657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285232] = 3, + [286707] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(12276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312801,7 +314668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12373), 10, + ACTIONS(12278), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312812,14 +314679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285257] = 3, + [286732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 14, + ACTIONS(1268), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312834,32 +314701,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285282] = 3, - ACTIONS(3), 1, + [286757] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12213), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12211), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285307] = 3, + anon_sym_LT_LT_DASH, + [286782] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12212), 7, + ACTIONS(12360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312867,7 +314734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12210), 10, + ACTIONS(12358), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312878,14 +314745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285332] = 3, + [286807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1282), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 14, + ACTIONS(1280), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312900,13 +314767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285357] = 3, + [286832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(1274), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 14, + ACTIONS(1272), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312920,54 +314788,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [285381] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [286857] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4313), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12476), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12474), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [285404] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [286882] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12336), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12334), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [285427] = 3, + anon_sym_LT_LT_DASH, + [286907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(1233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 13, + ACTIONS(1231), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312981,13 +314853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285450] = 3, + sym__special_character, + [286931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(2139), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 13, + ACTIONS(2137), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -313001,22 +314874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285473] = 7, + [286954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(6620), 1, anon_sym_DQUOTE, - ACTIONS(13408), 1, + ACTIONS(13410), 1, sym_variable_name, STATE(6445), 1, sym_string, - ACTIONS(1183), 2, + ACTIONS(1195), 2, anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(13406), 2, + ACTIONS(13408), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13404), 8, + ACTIONS(13406), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -313025,48 +314898,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [285504] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13414), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(13416), 1, - sym_variable_name, - ACTIONS(13412), 2, - anon_sym_DOLLAR, - anon_sym__, - STATE(6305), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(13410), 6, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AT2, - [285539] = 7, + [286985] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(6620), 1, anon_sym_DQUOTE, - ACTIONS(13408), 1, + ACTIONS(13410), 1, sym_variable_name, STATE(6445), 1, sym_string, - ACTIONS(1195), 2, + ACTIONS(1183), 2, anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(13406), 2, + ACTIONS(13408), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13404), 8, + ACTIONS(13406), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -313075,4386 +314922,4494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [285570] = 10, + [287016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4686), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [287039] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13422), 1, + ACTIONS(13416), 1, aux_sym__simple_variable_name_token1, - ACTIONS(13424), 1, + ACTIONS(13418), 1, sym_variable_name, - STATE(3378), 1, + STATE(3445), 1, sym_subscript, - STATE(6305), 1, + STATE(6315), 1, sym_command_substitution, - ACTIONS(13420), 2, + ACTIONS(13414), 2, anon_sym_DOLLAR, anon_sym__, - ACTIONS(13418), 6, + ACTIONS(13412), 6, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_POUND, anon_sym_AT2, - [285607] = 12, + [287076] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13430), 1, - anon_sym_DOLLAR, - ACTIONS(13432), 1, - anon_sym_DQUOTE, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12320), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12322), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12324), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285647] = 12, - ACTIONS(3), 1, - sym_comment, + ACTIONS(13424), 1, + aux_sym__simple_variable_name_token1, ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13444), 1, + sym_variable_name, + ACTIONS(13422), 2, anon_sym_DOLLAR, - ACTIONS(13446), 1, - anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, + anon_sym__, + STATE(6315), 2, + sym_subscript, sym_command_substitution, - [285687] = 12, + ACTIONS(13420), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AT2, + [287111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13448), 1, - anon_sym_DOLLAR, - ACTIONS(13450), 1, - anon_sym_DQUOTE, - STATE(5622), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285727] = 12, + ACTIONS(2084), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2082), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [287134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13452), 1, - anon_sym_DOLLAR, - ACTIONS(13454), 1, - anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285767] = 12, + ACTIONS(4654), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4652), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [287157] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13456), 1, - anon_sym_DOLLAR, - ACTIONS(13458), 1, - anon_sym_DQUOTE, - STATE(5626), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285807] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13460), 1, + ACTIONS(13432), 1, anon_sym_DOLLAR, - ACTIONS(13462), 1, - anon_sym_DQUOTE, - STATE(5641), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285847] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(13434), 1, - sym_string_content, + anon_sym_DQUOTE, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13464), 1, - anon_sym_DOLLAR, - ACTIONS(13466), 1, - anon_sym_DQUOTE, - STATE(5653), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285887] = 12, + [287197] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13468), 1, + ACTIONS(13446), 1, anon_sym_DOLLAR, - ACTIONS(13470), 1, + ACTIONS(13448), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5621), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285927] = 12, + [287237] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13472), 1, + ACTIONS(13450), 1, anon_sym_DOLLAR, - ACTIONS(13474), 1, + ACTIONS(13452), 1, anon_sym_DQUOTE, - STATE(5628), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285967] = 12, + [287277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13476), 1, + ACTIONS(13454), 1, anon_sym_DOLLAR, - ACTIONS(13478), 1, + ACTIONS(13456), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5623), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286007] = 12, + [287317] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13480), 1, + ACTIONS(13458), 1, anon_sym_DOLLAR, - ACTIONS(13482), 1, + ACTIONS(13460), 1, anon_sym_DQUOTE, - STATE(5630), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286047] = 12, + [287357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13484), 1, + ACTIONS(13462), 1, anon_sym_DOLLAR, - ACTIONS(13486), 1, + ACTIONS(13464), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5625), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286087] = 12, + [287397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13488), 1, + ACTIONS(13466), 1, anon_sym_DOLLAR, - ACTIONS(13490), 1, + ACTIONS(13468), 1, anon_sym_DQUOTE, - STATE(5632), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286127] = 12, + [287437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13492), 1, + ACTIONS(13470), 1, anon_sym_DOLLAR, - ACTIONS(13494), 1, + ACTIONS(13472), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5627), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286167] = 12, + [287477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13496), 1, + ACTIONS(13474), 1, anon_sym_DOLLAR, - ACTIONS(13498), 1, + ACTIONS(13476), 1, anon_sym_DQUOTE, - STATE(5634), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286207] = 12, + [287517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13500), 1, + ACTIONS(13478), 1, anon_sym_DOLLAR, - ACTIONS(13502), 1, + ACTIONS(13480), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5630), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286247] = 12, + [287557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13504), 1, + ACTIONS(13482), 1, anon_sym_DOLLAR, - ACTIONS(13506), 1, + ACTIONS(13484), 1, anon_sym_DQUOTE, - STATE(5637), 1, + STATE(5685), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286287] = 12, + [287597] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13508), 1, + ACTIONS(13486), 1, anon_sym_DOLLAR, - ACTIONS(13510), 1, + ACTIONS(13488), 1, anon_sym_DQUOTE, - STATE(5654), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286327] = 12, + [287637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13512), 1, + ACTIONS(13490), 1, anon_sym_DOLLAR, - ACTIONS(13514), 1, + ACTIONS(13492), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5632), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286367] = 12, + [287677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13516), 1, + ACTIONS(13494), 1, anon_sym_DOLLAR, - ACTIONS(13518), 1, + ACTIONS(13496), 1, anon_sym_DQUOTE, - STATE(5639), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286407] = 12, + [287717] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13520), 1, + ACTIONS(13498), 1, anon_sym_DOLLAR, - ACTIONS(13522), 1, + ACTIONS(13500), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5646), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286447] = 12, + [287757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13524), 1, + ACTIONS(13502), 1, anon_sym_DOLLAR, - ACTIONS(13526), 1, + ACTIONS(13504), 1, anon_sym_DQUOTE, - STATE(5642), 1, + STATE(5635), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286487] = 12, + [287797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13528), 1, + ACTIONS(13506), 1, anon_sym_DOLLAR, - ACTIONS(13530), 1, + ACTIONS(13508), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286527] = 12, + [287837] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13532), 1, + ACTIONS(13510), 1, anon_sym_DOLLAR, - ACTIONS(13534), 1, + ACTIONS(13512), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5638), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286567] = 12, + [287877] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13536), 1, + ACTIONS(13514), 1, anon_sym_DOLLAR, - ACTIONS(13538), 1, + ACTIONS(13516), 1, anon_sym_DQUOTE, - STATE(5644), 1, + STATE(5647), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286607] = 12, + [287917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13540), 1, + ACTIONS(13518), 1, anon_sym_DOLLAR, - ACTIONS(13542), 1, + ACTIONS(13520), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286647] = 12, + [287957] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13544), 1, + ACTIONS(13522), 1, anon_sym_DOLLAR, - ACTIONS(13546), 1, + ACTIONS(13524), 1, anon_sym_DQUOTE, - STATE(5646), 1, + STATE(5641), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286687] = 12, + [287997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13548), 1, + ACTIONS(13526), 1, anon_sym_DOLLAR, - ACTIONS(13550), 1, + ACTIONS(13528), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5649), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286727] = 12, + [288037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13552), 1, + ACTIONS(13530), 1, anon_sym_DOLLAR, - ACTIONS(13554), 1, + ACTIONS(13532), 1, anon_sym_DQUOTE, - STATE(5619), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286767] = 12, + [288077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13556), 1, + ACTIONS(13534), 1, anon_sym_DOLLAR, - ACTIONS(13558), 1, + ACTIONS(13536), 1, anon_sym_DQUOTE, - STATE(5649), 1, + STATE(5643), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286807] = 12, + [288117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13560), 1, + ACTIONS(13538), 1, anon_sym_DOLLAR, - ACTIONS(13562), 1, + ACTIONS(13540), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286847] = 12, + [288157] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13564), 1, + ACTIONS(13542), 1, anon_sym_DOLLAR, - ACTIONS(13566), 1, + ACTIONS(13544), 1, anon_sym_DQUOTE, - STATE(5651), 1, + STATE(5645), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286887] = 12, + [288197] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13568), 1, + ACTIONS(13546), 1, anon_sym_DOLLAR, - ACTIONS(13570), 1, + ACTIONS(13548), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286927] = 12, + [288237] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13572), 1, + ACTIONS(13550), 1, anon_sym_DOLLAR, - ACTIONS(13574), 1, + ACTIONS(13552), 1, anon_sym_DQUOTE, - STATE(5655), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286967] = 12, + [288277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13576), 1, + ACTIONS(13554), 1, anon_sym_DOLLAR, - ACTIONS(13578), 1, + ACTIONS(13556), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287007] = 12, + [288317] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13580), 1, + ACTIONS(13558), 1, anon_sym_DOLLAR, - ACTIONS(13582), 1, + ACTIONS(13560), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5652), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287047] = 12, + [288357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13584), 1, + ACTIONS(13562), 1, anon_sym_DOLLAR, - ACTIONS(13586), 1, + ACTIONS(13564), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287087] = 12, + [288397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13588), 1, + ACTIONS(13566), 1, anon_sym_DOLLAR, - ACTIONS(13590), 1, + ACTIONS(13568), 1, anon_sym_DQUOTE, - STATE(5657), 1, + STATE(5619), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287127] = 12, + [288437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13592), 1, + ACTIONS(13570), 1, anon_sym_DOLLAR, - ACTIONS(13594), 1, + ACTIONS(13572), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5656), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287167] = 12, + [288477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13596), 1, + ACTIONS(13574), 1, anon_sym_DOLLAR, - ACTIONS(13598), 1, + ACTIONS(13576), 1, anon_sym_DQUOTE, - STATE(5671), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287207] = 12, + [288517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13600), 1, + ACTIONS(13578), 1, anon_sym_DOLLAR, - ACTIONS(13602), 1, + ACTIONS(13580), 1, anon_sym_DQUOTE, - STATE(5661), 1, + STATE(5655), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287247] = 12, + [288557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13604), 1, + ACTIONS(13582), 1, anon_sym_DOLLAR, - ACTIONS(13606), 1, + ACTIONS(13584), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5660), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287287] = 12, + [288597] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13608), 1, + ACTIONS(13586), 1, anon_sym_DOLLAR, - ACTIONS(13610), 1, + ACTIONS(13588), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287327] = 12, + [288637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13612), 1, + ACTIONS(13590), 1, anon_sym_DOLLAR, - ACTIONS(13614), 1, + ACTIONS(13592), 1, anon_sym_DQUOTE, - STATE(5668), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287367] = 12, + [288677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13616), 1, + ACTIONS(13594), 1, anon_sym_DOLLAR, - ACTIONS(13618), 1, + ACTIONS(13596), 1, anon_sym_DQUOTE, - STATE(5664), 1, + STATE(5661), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287407] = 12, + [288717] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13620), 1, + ACTIONS(13598), 1, anon_sym_DOLLAR, - ACTIONS(13622), 1, + ACTIONS(13600), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5662), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287447] = 12, + [288757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13624), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR, - ACTIONS(13626), 1, + ACTIONS(13604), 1, anon_sym_DQUOTE, - STATE(5666), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287487] = 12, + [288797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13628), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR, - ACTIONS(13630), 1, + ACTIONS(13608), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287527] = 12, + [288837] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13632), 1, + ACTIONS(13610), 1, anon_sym_DOLLAR, - ACTIONS(13634), 1, + ACTIONS(13612), 1, anon_sym_DQUOTE, - STATE(5669), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287567] = 12, + [288877] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13636), 1, + ACTIONS(13614), 1, anon_sym_DOLLAR, - ACTIONS(13638), 1, + ACTIONS(13616), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287607] = 12, + [288917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13640), 1, + ACTIONS(13618), 1, anon_sym_DOLLAR, - ACTIONS(13642), 1, + ACTIONS(13620), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287647] = 12, + [288957] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13644), 1, + ACTIONS(13622), 1, anon_sym_DOLLAR, - ACTIONS(13646), 1, + ACTIONS(13624), 1, anon_sym_DQUOTE, - STATE(5672), 1, + STATE(5667), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287687] = 12, + [288997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13648), 1, + ACTIONS(13626), 1, anon_sym_DOLLAR, - ACTIONS(13650), 1, + ACTIONS(13628), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5669), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287727] = 12, + [289037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13652), 1, + ACTIONS(13630), 1, anon_sym_DOLLAR, - ACTIONS(13654), 1, + ACTIONS(13632), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5670), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287767] = 12, + [289077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13656), 1, + ACTIONS(13634), 1, anon_sym_DOLLAR, - ACTIONS(13658), 1, + ACTIONS(13636), 1, anon_sym_DQUOTE, - STATE(5674), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287807] = 12, + [289117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13660), 1, + ACTIONS(13638), 1, anon_sym_DOLLAR, - ACTIONS(13662), 1, + ACTIONS(13640), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5672), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287847] = 12, + [289157] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13664), 1, + ACTIONS(13642), 1, anon_sym_DOLLAR, - ACTIONS(13666), 1, + ACTIONS(13644), 1, anon_sym_DQUOTE, - STATE(5686), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287887] = 12, + [289197] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13668), 1, + ACTIONS(13646), 1, anon_sym_DOLLAR, - ACTIONS(13670), 1, + ACTIONS(13648), 1, anon_sym_DQUOTE, - STATE(5677), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287927] = 12, + [289237] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13672), 1, + ACTIONS(13650), 1, anon_sym_DOLLAR, - ACTIONS(13674), 1, + ACTIONS(13652), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5674), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287967] = 12, + [289277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13676), 1, + ACTIONS(13654), 1, anon_sym_DOLLAR, - ACTIONS(13678), 1, + ACTIONS(13656), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288007] = 12, + [289317] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13680), 1, + ACTIONS(13658), 1, anon_sym_DOLLAR, - ACTIONS(13682), 1, + ACTIONS(13660), 1, anon_sym_DQUOTE, - STATE(5680), 1, + STATE(5677), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288047] = 12, + [289357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13684), 1, + ACTIONS(13662), 1, anon_sym_DOLLAR, - ACTIONS(13686), 1, + ACTIONS(13664), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288087] = 12, + [289397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13688), 1, + ACTIONS(13666), 1, anon_sym_DOLLAR, - ACTIONS(13690), 1, + ACTIONS(13668), 1, anon_sym_DQUOTE, - STATE(5682), 1, + STATE(5678), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288127] = 12, + [289437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13692), 1, + ACTIONS(13670), 1, anon_sym_DOLLAR, - ACTIONS(13694), 1, + ACTIONS(13672), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5680), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288167] = 12, + [289477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13696), 1, + ACTIONS(13674), 1, anon_sym_DOLLAR, - ACTIONS(13698), 1, + ACTIONS(13676), 1, anon_sym_DQUOTE, - STATE(5684), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288207] = 12, + [289517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13700), 1, + ACTIONS(13678), 1, anon_sym_DOLLAR, - ACTIONS(13702), 1, + ACTIONS(13680), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288247] = 12, + [289557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13704), 1, + ACTIONS(13682), 1, anon_sym_DOLLAR, - ACTIONS(13706), 1, + ACTIONS(13684), 1, anon_sym_DQUOTE, - STATE(5687), 1, + STATE(5681), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288287] = 12, + [289597] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13708), 1, + ACTIONS(13686), 1, anon_sym_DOLLAR, - ACTIONS(13710), 1, + ACTIONS(13688), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288327] = 12, + [289637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13712), 1, + ACTIONS(13690), 1, anon_sym_DOLLAR, - ACTIONS(13714), 1, + ACTIONS(13692), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288367] = 12, + [289677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13716), 1, + ACTIONS(13694), 1, anon_sym_DOLLAR, - ACTIONS(13718), 1, + ACTIONS(13696), 1, anon_sym_DQUOTE, - STATE(5690), 1, + STATE(5684), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288407] = 12, + [289717] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13720), 1, + ACTIONS(13698), 1, anon_sym_DOLLAR, - ACTIONS(13722), 1, + ACTIONS(13700), 1, anon_sym_DQUOTE, - STATE(5759), 1, + STATE(5704), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288447] = 12, + [289757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13724), 1, + ACTIONS(13702), 1, anon_sym_DOLLAR, - ACTIONS(13726), 1, + ACTIONS(13704), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288487] = 12, + [289797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13728), 1, + ACTIONS(13706), 1, anon_sym_DOLLAR, - ACTIONS(13730), 1, + ACTIONS(13708), 1, anon_sym_DQUOTE, - STATE(5705), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288527] = 12, + [289837] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13732), 1, + ACTIONS(13710), 1, anon_sym_DOLLAR, - ACTIONS(13734), 1, + ACTIONS(13712), 1, anon_sym_DQUOTE, - STATE(5694), 1, + STATE(5688), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288567] = 12, + [289877] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13736), 1, + ACTIONS(13714), 1, anon_sym_DOLLAR, - ACTIONS(13738), 1, + ACTIONS(13716), 1, anon_sym_DQUOTE, - STATE(5697), 1, + STATE(5689), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288607] = 12, + [289917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13740), 1, + ACTIONS(13718), 1, anon_sym_DOLLAR, - ACTIONS(13742), 1, + ACTIONS(13720), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288647] = 12, + [289957] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13744), 1, + ACTIONS(13722), 1, anon_sym_DOLLAR, - ACTIONS(13746), 1, + ACTIONS(13724), 1, anon_sym_DQUOTE, - STATE(5696), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288687] = 12, + [289997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13748), 1, + ACTIONS(13726), 1, anon_sym_DOLLAR, - ACTIONS(13750), 1, + ACTIONS(13728), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5697), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288727] = 12, + [290037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13752), 1, + ACTIONS(13730), 1, anon_sym_DOLLAR, - ACTIONS(13754), 1, + ACTIONS(13732), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5692), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288767] = 12, + [290077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13756), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR, - ACTIONS(13758), 1, + ACTIONS(13736), 1, anon_sym_DQUOTE, - STATE(5699), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288807] = 12, + [290117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(13738), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(13741), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(13744), 1, + anon_sym_DOLLAR, + ACTIONS(13747), 1, + anon_sym_DQUOTE, + ACTIONS(13749), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(13752), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(13755), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(13758), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(13761), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13760), 1, - anon_sym_DOLLAR, - ACTIONS(13762), 1, - anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288847] = 12, + [290157] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13764), 1, anon_sym_DOLLAR, ACTIONS(13766), 1, anon_sym_DQUOTE, - STATE(5702), 1, + STATE(5696), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288887] = 12, + [290197] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13768), 1, anon_sym_DOLLAR, ACTIONS(13770), 1, anon_sym_DQUOTE, - STATE(5725), 1, + STATE(5700), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288927] = 12, + [290237] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13772), 1, anon_sym_DOLLAR, ACTIONS(13774), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288967] = 12, + [290277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13776), 1, anon_sym_DOLLAR, ACTIONS(13778), 1, anon_sym_DQUOTE, - STATE(5620), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289007] = 12, + [290317] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13780), 1, anon_sym_DOLLAR, ACTIONS(13782), 1, anon_sym_DQUOTE, - STATE(5706), 1, + STATE(5699), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289047] = 12, + [290357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13784), 1, anon_sym_DOLLAR, ACTIONS(13786), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289087] = 12, + [290397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13788), 1, anon_sym_DOLLAR, ACTIONS(13790), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289127] = 12, + [290437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13792), 1, anon_sym_DOLLAR, ACTIONS(13794), 1, anon_sym_DQUOTE, - STATE(5708), 1, + STATE(5773), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289167] = 12, + [290477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13796), 1, anon_sym_DOLLAR, ACTIONS(13798), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5718), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289207] = 12, + [290517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13800), 1, anon_sym_DOLLAR, ACTIONS(13802), 1, anon_sym_DQUOTE, - STATE(5710), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289247] = 12, + [290557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13804), 1, anon_sym_DOLLAR, ACTIONS(13806), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289287] = 12, + [290597] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13808), 1, anon_sym_DOLLAR, ACTIONS(13810), 1, anon_sym_DQUOTE, - STATE(5716), 1, + STATE(5706), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289327] = 12, + [290637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13812), 1, anon_sym_DOLLAR, ACTIONS(13814), 1, anon_sym_DQUOTE, - STATE(5713), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289367] = 12, + [290677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13816), 1, anon_sym_DOLLAR, ACTIONS(13818), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5714), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289407] = 12, + [290717] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13820), 1, anon_sym_DOLLAR, ACTIONS(13822), 1, anon_sym_DQUOTE, - STATE(5715), 1, + STATE(5709), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289447] = 12, + [290757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13824), 1, anon_sym_DOLLAR, ACTIONS(13826), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289487] = 12, + [290797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13828), 1, anon_sym_DOLLAR, ACTIONS(13830), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5711), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289527] = 12, + [290837] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13832), 1, anon_sym_DOLLAR, ACTIONS(13834), 1, anon_sym_DQUOTE, - STATE(5719), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289567] = 12, + [290877] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13836), 1, anon_sym_DOLLAR, ACTIONS(13838), 1, anon_sym_DQUOTE, - STATE(5721), 1, + STATE(5713), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289607] = 12, + [290917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13840), 1, anon_sym_DOLLAR, ACTIONS(13842), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289647] = 12, + [290957] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13844), 1, anon_sym_DOLLAR, ACTIONS(13846), 1, anon_sym_DQUOTE, - STATE(5723), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289687] = 12, + [290997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13848), 1, anon_sym_DOLLAR, ACTIONS(13850), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5717), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289727] = 12, + [291037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13852), 1, anon_sym_DOLLAR, ACTIONS(13854), 1, anon_sym_DQUOTE, - STATE(5727), 1, + STATE(5723), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289767] = 12, + [291077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13856), 1, anon_sym_DOLLAR, ACTIONS(13858), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289807] = 12, + [291117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13860), 1, anon_sym_DOLLAR, ACTIONS(13862), 1, anon_sym_DQUOTE, - STATE(5726), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289847] = 12, + [291157] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13864), 1, anon_sym_DOLLAR, ACTIONS(13866), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5754), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289887] = 12, + [291197] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13868), 1, anon_sym_DOLLAR, ACTIONS(13870), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5721), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289927] = 12, + [291237] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13872), 1, anon_sym_DOLLAR, ACTIONS(13874), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289967] = 12, + [291277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13876), 1, anon_sym_DOLLAR, ACTIONS(13878), 1, anon_sym_DQUOTE, - STATE(5729), 1, + STATE(5724), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290007] = 12, + [291317] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13880), 1, anon_sym_DOLLAR, ACTIONS(13882), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290047] = 12, + [291357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13884), 1, anon_sym_DOLLAR, ACTIONS(13886), 1, anon_sym_DQUOTE, - STATE(5731), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290087] = 12, + [291397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13888), 1, anon_sym_DOLLAR, ACTIONS(13890), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5732), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290127] = 12, + [291437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13892), 1, anon_sym_DOLLAR, ACTIONS(13894), 1, anon_sym_DQUOTE, - STATE(5733), 1, + STATE(5728), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290167] = 12, + [291477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13896), 1, anon_sym_DOLLAR, ACTIONS(13898), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5729), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290207] = 12, + [291517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13900), 1, anon_sym_DOLLAR, ACTIONS(13902), 1, anon_sym_DQUOTE, - STATE(5735), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290247] = 12, + [291557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13904), 1, anon_sym_DOLLAR, ACTIONS(13906), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290287] = 12, + [291597] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13908), 1, anon_sym_DOLLAR, ACTIONS(13910), 1, anon_sym_DQUOTE, - STATE(5738), 1, + STATE(5731), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290327] = 12, + [291637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13912), 1, anon_sym_DOLLAR, ACTIONS(13914), 1, anon_sym_DQUOTE, - STATE(5740), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290367] = 12, + [291677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13916), 1, anon_sym_DOLLAR, ACTIONS(13918), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290407] = 12, + [291717] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13920), 1, anon_sym_DOLLAR, ACTIONS(13922), 1, anon_sym_DQUOTE, - STATE(5752), 1, + STATE(5734), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290447] = 12, + [291757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13924), 1, anon_sym_DOLLAR, ACTIONS(13926), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290487] = 12, + [291797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13928), 1, anon_sym_DOLLAR, ACTIONS(13930), 1, anon_sym_DQUOTE, - STATE(5742), 1, + STATE(5737), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290527] = 12, + [291837] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13932), 1, anon_sym_DOLLAR, ACTIONS(13934), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5739), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290567] = 12, + [291877] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13936), 1, anon_sym_DOLLAR, ACTIONS(13938), 1, anon_sym_DQUOTE, - STATE(5746), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290607] = 12, + [291917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13940), 1, + ACTIONS(13428), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13943), 1, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13946), 1, + ACTIONS(13436), 1, + sym_string_content, + ACTIONS(13438), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13940), 1, anon_sym_DOLLAR, - ACTIONS(13949), 1, + ACTIONS(13942), 1, anon_sym_DQUOTE, - ACTIONS(13951), 1, + STATE(5743), 1, + aux_sym_string_repeat1, + STATE(6076), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [291957] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13436), 1, sym_string_content, - ACTIONS(13954), 1, + ACTIONS(13438), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13957), 1, + ACTIONS(13440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13960), 1, + ACTIONS(13442), 1, anon_sym_BQUOTE, - ACTIONS(13963), 1, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5744), 1, + ACTIONS(13944), 1, + anon_sym_DOLLAR, + ACTIONS(13946), 1, + anon_sym_DQUOTE, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290647] = 12, + [291997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13966), 1, + ACTIONS(13948), 1, anon_sym_DOLLAR, - ACTIONS(13968), 1, + ACTIONS(13950), 1, anon_sym_DQUOTE, - STATE(5748), 1, + STATE(5742), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290687] = 12, + [292037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13970), 1, + ACTIONS(13952), 1, anon_sym_DOLLAR, - ACTIONS(13972), 1, + ACTIONS(13954), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5758), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290727] = 12, + [292077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13974), 1, + ACTIONS(13956), 1, anon_sym_DOLLAR, - ACTIONS(13976), 1, + ACTIONS(13958), 1, anon_sym_DQUOTE, - STATE(5750), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290767] = 12, + [292117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13978), 1, + ACTIONS(13960), 1, anon_sym_DOLLAR, - ACTIONS(13980), 1, + ACTIONS(13962), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290807] = 12, + [292157] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13982), 1, + ACTIONS(13964), 1, anon_sym_DOLLAR, - ACTIONS(13984), 1, + ACTIONS(13966), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5745), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290847] = 12, + [292197] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13986), 1, + ACTIONS(13968), 1, anon_sym_DOLLAR, - ACTIONS(13988), 1, + ACTIONS(13970), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290887] = 12, + [292237] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13990), 1, + ACTIONS(13972), 1, anon_sym_DOLLAR, - ACTIONS(13992), 1, + ACTIONS(13974), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5757), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290927] = 12, + [292277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13994), 1, + ACTIONS(13976), 1, anon_sym_DOLLAR, - ACTIONS(13996), 1, + ACTIONS(13978), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5763), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290967] = 12, + [292317] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13998), 1, + ACTIONS(13980), 1, anon_sym_DOLLAR, - ACTIONS(14000), 1, + ACTIONS(13982), 1, anon_sym_DQUOTE, - STATE(5756), 1, + STATE(5750), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291007] = 12, + [292357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14002), 1, + ACTIONS(13984), 1, anon_sym_DOLLAR, - ACTIONS(14004), 1, + ACTIONS(13986), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5751), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291047] = 12, + [292397] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14006), 1, + ACTIONS(13988), 1, anon_sym_DOLLAR, - ACTIONS(14008), 1, + ACTIONS(13990), 1, anon_sym_DQUOTE, - STATE(5757), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291087] = 12, + [292437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14010), 1, + ACTIONS(13992), 1, anon_sym_DOLLAR, - ACTIONS(14012), 1, + ACTIONS(13994), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291127] = 12, + [292477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14014), 1, + ACTIONS(13996), 1, anon_sym_DOLLAR, - ACTIONS(14016), 1, + ACTIONS(13998), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5753), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291167] = 12, + [292517] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14018), 1, + ACTIONS(14000), 1, anon_sym_DOLLAR, - ACTIONS(14020), 1, + ACTIONS(14002), 1, anon_sym_DQUOTE, - STATE(5761), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291207] = 12, + [292557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14022), 1, + ACTIONS(14004), 1, anon_sym_DOLLAR, - ACTIONS(14024), 1, + ACTIONS(14006), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291247] = 12, + [292597] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14026), 1, + ACTIONS(14008), 1, anon_sym_DOLLAR, - ACTIONS(14028), 1, + ACTIONS(14010), 1, anon_sym_DQUOTE, - STATE(5764), 1, + STATE(5760), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291287] = 12, + [292637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14030), 1, + ACTIONS(14012), 1, anon_sym_DOLLAR, - ACTIONS(14032), 1, + ACTIONS(14014), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5759), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291327] = 12, + [292677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14034), 1, + ACTIONS(14016), 1, anon_sym_DOLLAR, - ACTIONS(14036), 1, + ACTIONS(14018), 1, anon_sym_DQUOTE, - STATE(5771), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291367] = 12, + [292717] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14038), 1, + ACTIONS(14020), 1, anon_sym_DOLLAR, - ACTIONS(14040), 1, + ACTIONS(14022), 1, anon_sym_DQUOTE, - STATE(5765), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291407] = 12, + [292757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14042), 1, + ACTIONS(14024), 1, anon_sym_DOLLAR, - ACTIONS(14044), 1, + ACTIONS(14026), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291447] = 12, + [292797] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14046), 1, + ACTIONS(14028), 1, anon_sym_DOLLAR, - ACTIONS(14048), 1, + ACTIONS(14030), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291487] = 12, + [292837] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14050), 1, + ACTIONS(14032), 1, anon_sym_DOLLAR, - ACTIONS(14052), 1, + ACTIONS(14034), 1, anon_sym_DQUOTE, - STATE(5767), 1, + STATE(5764), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291527] = 12, + [292877] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14054), 1, + ACTIONS(14036), 1, anon_sym_DOLLAR, - ACTIONS(14056), 1, + ACTIONS(14038), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5772), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291567] = 12, + [292917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14058), 1, + ACTIONS(14040), 1, anon_sym_DOLLAR, - ACTIONS(14060), 1, + ACTIONS(14042), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291607] = 12, + [292957] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14062), 1, + ACTIONS(14044), 1, anon_sym_DOLLAR, - ACTIONS(14064), 1, + ACTIONS(14046), 1, anon_sym_DQUOTE, - STATE(5770), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291647] = 12, + [292997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14066), 1, + ACTIONS(14048), 1, anon_sym_DOLLAR, - ACTIONS(14068), 1, + ACTIONS(14050), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5769), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291687] = 12, + [293037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14070), 1, + ACTIONS(14052), 1, anon_sym_DOLLAR, - ACTIONS(14072), 1, + ACTIONS(14054), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5659), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291727] = 12, + [293077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, + sym_string_content, ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14074), 1, + ACTIONS(14056), 1, anon_sym_DOLLAR, - ACTIONS(14076), 1, + ACTIONS(14058), 1, anon_sym_DQUOTE, - STATE(5660), 1, + STATE(5703), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291767] = 12, + [293117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(13436), 1, sym_string_content, + ACTIONS(13438), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14060), 1, + anon_sym_DOLLAR, + ACTIONS(14062), 1, + anon_sym_DQUOTE, + STATE(5663), 1, + aux_sym_string_repeat1, + STATE(6076), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [293157] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, + anon_sym_DOLLAR_LBRACK, ACTIONS(13436), 1, + sym_string_content, + ACTIONS(13438), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(13440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14064), 1, + anon_sym_DOLLAR, + ACTIONS(14066), 1, + anon_sym_DQUOTE, + STATE(5693), 1, + aux_sym_string_repeat1, + STATE(6076), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [293197] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13436), 1, + sym_string_content, ACTIONS(13438), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13440), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14068), 1, + anon_sym_DOLLAR, + ACTIONS(14070), 1, + anon_sym_DQUOTE, + STATE(5771), 1, + aux_sym_string_repeat1, + STATE(6076), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [293237] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13436), 1, + sym_string_content, + ACTIONS(13438), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(13440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13442), 1, anon_sym_BQUOTE, + ACTIONS(13444), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14072), 1, + anon_sym_DOLLAR, + ACTIONS(14074), 1, + anon_sym_DQUOTE, + STATE(5693), 1, + aux_sym_string_repeat1, + STATE(6076), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [293277] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13436), 1, + sym_string_content, + ACTIONS(13438), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13440), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14078), 1, + ACTIONS(14076), 1, anon_sym_DOLLAR, + ACTIONS(14078), 1, + anon_sym_DQUOTE, + STATE(5693), 1, + aux_sym_string_repeat1, + STATE(6076), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [293317] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13428), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(13430), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13436), 1, + sym_string_content, + ACTIONS(13438), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13442), 1, + anon_sym_BQUOTE, + ACTIONS(13444), 1, + anon_sym_DOLLAR_BQUOTE, ACTIONS(14080), 1, + anon_sym_DOLLAR, + ACTIONS(14082), 1, anon_sym_DQUOTE, - STATE(5678), 1, + STATE(5693), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6076), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291807] = 6, + [293357] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14086), 1, + anon_sym_LT_LT, + ACTIONS(14092), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14094), 1, + anon_sym_LT_LT_LT, + ACTIONS(14090), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14088), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14084), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [293386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13502), 1, + ACTIONS(14098), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317463,19 +319418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291834] = 6, + [293413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13494), 1, + ACTIONS(3269), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3680), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1829), 1, + sym_string, + ACTIONS(3678), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3676), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317484,19 +319439,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291861] = 6, + [293440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3205), 1, + anon_sym_DQUOTE, + ACTIONS(4302), 1, sym_variable_name, - ACTIONS(14090), 1, + STATE(1888), 1, + sym_string, + ACTIONS(4300), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4298), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [293467] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13520), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, + sym_variable_name, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317505,19 +319481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291888] = 6, + [293494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(6556), 1, anon_sym_DQUOTE, - ACTIONS(9626), 1, + ACTIONS(6560), 1, sym_variable_name, - STATE(5125), 1, + STATE(3460), 1, sym_string, - ACTIONS(9624), 2, + ACTIONS(6558), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9620), 8, + ACTIONS(6554), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317526,41 +319502,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291915] = 7, - ACTIONS(71), 1, + [293521] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14102), 1, - anon_sym_LT_LT_LT, - ACTIONS(14098), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14092), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [291944] = 6, + sym_string_content, + ACTIONS(14104), 1, + sym_variable_name, + ACTIONS(14106), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14096), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [293548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13622), 1, + ACTIONS(13636), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317569,19 +319544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291971] = 6, + [293575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, ACTIONS(14104), 1, + sym_variable_name, + ACTIONS(14108), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317590,19 +319565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291998] = 6, + [293602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(13644), 1, anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(4874), 1, - sym_string, - ACTIONS(8292), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317611,19 +319586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292025] = 6, + [293629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14106), 1, + ACTIONS(5998), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(11829), 1, + sym_variable_name, + STATE(5547), 1, + sym_string, + ACTIONS(11827), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(11825), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317632,19 +319607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292052] = 6, + [293656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13630), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14110), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317653,19 +319628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292079] = 6, + [293683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13454), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14112), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317674,41 +319649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292106] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14114), 1, - anon_sym_LT_LT_LT, - ACTIONS(14112), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14110), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14108), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [292135] = 6, + [293710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14116), 1, + ACTIONS(14114), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317717,19 +319670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292162] = 6, + [293737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13638), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14116), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317738,19 +319691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292189] = 6, + [293764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(1494), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(2335), 1, sym_variable_name, - STATE(1912), 1, + STATE(1227), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(2333), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3976), 8, + ACTIONS(2331), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317759,19 +319712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292216] = 6, + [293791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13642), 1, + ACTIONS(13532), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317780,19 +319733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292243] = 6, + [293818] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13606), 1, + ACTIONS(13434), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317801,19 +319754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292270] = 6, + [293845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13650), 1, + ACTIONS(13656), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317822,19 +319775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292297] = 6, + [293872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, ACTIONS(14118), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317843,19 +319796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292324] = 6, + [293899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(6620), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(13410), 1, sym_variable_name, - STATE(1777), 1, + STATE(6445), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(13408), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3813), 8, + ACTIONS(13406), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317864,19 +319817,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292351] = 6, + [293926] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14086), 1, + anon_sym_LT_LT, + ACTIONS(14092), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14126), 1, + anon_sym_LT_LT_LT, + ACTIONS(14124), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14122), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14120), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [293955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13664), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14120), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317885,19 +319860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292378] = 6, + [293982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14122), 1, + ACTIONS(5159), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(5163), 1, + sym_variable_name, + STATE(2451), 1, + sym_string, + ACTIONS(5161), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5157), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317906,19 +319881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292405] = 6, + [294009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14124), 1, + ACTIONS(14128), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317927,41 +319902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292432] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14132), 1, - anon_sym_LT_LT_LT, - ACTIONS(14130), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14126), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [292461] = 6, + [294036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13654), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14130), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317970,19 +319923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292488] = 6, + [294063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(4054), 1, + ACTIONS(1635), 1, sym_variable_name, - STATE(1986), 1, + STATE(864), 1, sym_string, - ACTIONS(4052), 2, + ACTIONS(1633), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4050), 8, + ACTIONS(1629), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317991,19 +319944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292515] = 6, + [294090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13476), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14134), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318012,19 +319965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292542] = 6, + [294117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(13540), 1, anon_sym_DQUOTE, - ACTIONS(13408), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(6445), 1, - sym_string, - ACTIONS(13406), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13404), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318033,19 +319986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292569] = 6, + [294144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13662), 1, + ACTIONS(13676), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318054,19 +320007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292596] = 6, + [294171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13680), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14136), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318075,19 +320028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292623] = 6, + [294198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, - anon_sym_DQUOTE, - ACTIONS(4625), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(2404), 1, - sym_string, - ACTIONS(4623), 2, + ACTIONS(14132), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4619), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318096,19 +320049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292650] = 6, + [294225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14138), 1, + ACTIONS(14134), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318117,19 +320070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292677] = 6, + [294252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(3722), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(7588), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4320), 1, + sym_string, + ACTIONS(7586), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7584), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318138,19 +320091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292704] = 6, + [294279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(5529), 1, anon_sym_DQUOTE, - ACTIONS(5198), 1, + ACTIONS(5533), 1, sym_variable_name, - STATE(2456), 1, + STATE(2964), 1, sym_string, - ACTIONS(5196), 2, + ACTIONS(5531), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5192), 8, + ACTIONS(5527), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318159,19 +320112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292731] = 6, + [294306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13446), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14136), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318180,19 +320133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292758] = 6, + [294333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13674), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14138), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318201,19 +320154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292785] = 6, + [294360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13688), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14140), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318222,19 +320175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292812] = 6, + [294387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14142), 1, + ACTIONS(14140), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318243,19 +320196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292839] = 6, + [294414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(13692), 1, anon_sym_DQUOTE, - ACTIONS(4951), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(2777), 1, - sym_string, - ACTIONS(4949), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4945), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318264,19 +320217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292866] = 6, + [294441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13686), 1, + ACTIONS(13548), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318285,19 +320238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292893] = 6, + [294468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14144), 1, + ACTIONS(5208), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(5212), 1, + sym_variable_name, + STATE(2492), 1, + sym_string, + ACTIONS(5210), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5206), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318306,19 +320259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292920] = 6, + [294495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9610), 1, - anon_sym_DQUOTE, - ACTIONS(9614), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(5321), 1, - sym_string, - ACTIONS(9612), 2, + ACTIONS(14142), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9608), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318327,19 +320280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292947] = 6, + [294522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13522), 1, + ACTIONS(13708), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318348,19 +320301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292974] = 6, + [294549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13694), 1, + ACTIONS(9758), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(9762), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5441), 1, + sym_string, + ACTIONS(9760), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(9756), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318369,19 +320322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293001] = 6, + [294576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14146), 1, + ACTIONS(14144), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318390,19 +320343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293028] = 6, + [294603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13704), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14148), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318411,19 +320364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293055] = 6, + [294630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, - anon_sym_DQUOTE, - ACTIONS(4763), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(2498), 1, - sym_string, - ACTIONS(4761), 2, + ACTIONS(14146), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4757), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318432,19 +320385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293082] = 6, + [294657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13530), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14148), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318453,19 +320406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293109] = 6, + [294684] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13702), 1, + ACTIONS(5197), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(5201), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2713), 1, + sym_string, + ACTIONS(5199), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5195), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318474,19 +320427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293136] = 6, + [294711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14150), 1, + ACTIONS(1187), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(1193), 1, + sym_variable_name, + STATE(471), 1, + sym_string, + ACTIONS(1189), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(1185), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318495,19 +320448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293163] = 6, + [294738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13552), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14152), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318516,19 +320469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293190] = 6, + [294765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13710), 1, + ACTIONS(13460), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318537,19 +320490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293217] = 6, + [294792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8452), 1, + ACTIONS(13720), 1, anon_sym_DQUOTE, - ACTIONS(8456), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(5176), 1, - sym_string, - ACTIONS(8454), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8450), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318558,19 +320511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293244] = 6, + [294819] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13714), 1, + ACTIONS(13724), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318579,19 +320532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293271] = 6, + [294846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13534), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14150), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318600,19 +320553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293298] = 6, + [294873] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14154), 1, + ACTIONS(14152), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318621,19 +320574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293325] = 6, + [294900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(5672), 1, anon_sym_DQUOTE, - ACTIONS(2263), 1, + ACTIONS(5676), 1, sym_variable_name, - STATE(1246), 1, + STATE(2505), 1, sym_string, - ACTIONS(2261), 2, + ACTIONS(5674), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2259), 8, + ACTIONS(5670), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318642,19 +320595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293352] = 6, + [294927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(9079), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, + ACTIONS(9083), 1, sym_variable_name, - STATE(4267), 1, + STATE(5381), 1, sym_string, - ACTIONS(7593), 2, + ACTIONS(9081), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(9077), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318663,19 +320616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293379] = 6, + [294954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13470), 1, + ACTIONS(13736), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318684,19 +320637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293406] = 6, + [294981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14156), 1, + ACTIONS(14154), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318705,19 +320658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293433] = 6, + [295008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13726), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14156), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318726,19 +320679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293460] = 6, + [295035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14158), 1, + ACTIONS(1984), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(2834), 1, + sym_variable_name, + STATE(1288), 1, + sym_string, + ACTIONS(2832), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2830), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318747,19 +320700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293487] = 6, + [295062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, + ACTIONS(2983), 1, anon_sym_DQUOTE, - ACTIONS(1193), 1, + ACTIONS(3674), 1, sym_variable_name, - STATE(470), 1, + STATE(1528), 1, sym_string, - ACTIONS(1189), 2, + ACTIONS(3672), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1185), 8, + ACTIONS(3670), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318768,19 +320721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293514] = 6, + [295089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14160), 1, + ACTIONS(14158), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318789,19 +320742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293541] = 6, + [295116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14162), 1, + ACTIONS(14160), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318810,19 +320763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293568] = 6, + [295143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9998), 1, + ACTIONS(13774), 1, anon_sym_DQUOTE, - ACTIONS(10002), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(5275), 1, - sym_string, - ACTIONS(10000), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9996), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318831,19 +320784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293595] = 6, + [295170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13778), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14164), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318852,19 +320805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293622] = 6, + [295197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1694), 1, - sym_string, - ACTIONS(4143), 2, + ACTIONS(14162), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4141), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318873,19 +320826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293649] = 6, + [295224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(3624), 1, + ACTIONS(3104), 1, sym_variable_name, - STATE(1625), 1, + STATE(1192), 1, sym_string, - ACTIONS(3622), 2, + ACTIONS(3102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3618), 8, + ACTIONS(3100), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318894,19 +320847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293676] = 6, + [295251] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13542), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14164), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318915,19 +320868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293703] = 6, + [295278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13742), 1, + ACTIONS(13786), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318936,19 +320889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293730] = 6, + [295305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, ACTIONS(14166), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318957,40 +320910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293757] = 6, + [295332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14170), 1, + ACTIONS(5519), 1, anon_sym_DQUOTE, - ACTIONS(14174), 1, + ACTIONS(5523), 1, sym_variable_name, - STATE(6671), 1, + STATE(2760), 1, sym_string, - ACTIONS(14172), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14168), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [293784] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13750), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(5521), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5517), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318999,40 +320931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293811] = 6, + [295359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14176), 1, + ACTIONS(13790), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [293838] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14178), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319041,19 +320952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293865] = 6, + [295386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(2301), 1, anon_sym_DQUOTE, - ACTIONS(5713), 1, + ACTIONS(3355), 1, sym_variable_name, - STATE(3346), 1, + STATE(1345), 1, sym_string, - ACTIONS(5711), 2, + ACTIONS(3353), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5709), 8, + ACTIONS(3351), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319062,19 +320973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293892] = 6, + [295413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(13556), 1, anon_sym_DQUOTE, - ACTIONS(2103), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1087), 1, - sym_string, - ACTIONS(2101), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2097), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319083,19 +320994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293919] = 6, + [295440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14168), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319104,19 +321015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293946] = 6, + [295467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13806), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14180), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319125,41 +321036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293973] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14188), 1, - anon_sym_LT_LT_LT, - ACTIONS(14186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14182), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [294002] = 6, + [295494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13762), 1, + ACTIONS(14082), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319168,19 +321057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294029] = 6, + [295521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13550), 1, + ACTIONS(13488), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319189,19 +321078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294056] = 6, + [295548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14190), 1, + ACTIONS(14170), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319210,19 +321099,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294083] = 6, + [295575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 1, + ACTIONS(9888), 1, anon_sym_DQUOTE, - ACTIONS(11749), 1, + ACTIONS(9892), 1, sym_variable_name, - STATE(5555), 1, + STATE(5245), 1, sym_string, - ACTIONS(11747), 2, + ACTIONS(9890), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11745), 8, + ACTIONS(9886), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319231,19 +321120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294110] = 6, + [295602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7484), 1, + ACTIONS(1378), 1, anon_sym_DQUOTE, - ACTIONS(7488), 1, + ACTIONS(1968), 1, sym_variable_name, - STATE(4380), 1, + STATE(935), 1, sym_string, - ACTIONS(7486), 2, + ACTIONS(1966), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 8, + ACTIONS(1964), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319252,40 +321141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294137] = 6, + [295629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13578), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [294164] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13678), 1, + ACTIONS(14172), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319294,19 +321162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294191] = 6, + [295656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13774), 1, + ACTIONS(5304), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(5308), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2834), 1, + sym_string, + ACTIONS(5306), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5302), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319315,19 +321183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294218] = 6, + [295683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14192), 1, + ACTIONS(14174), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319336,19 +321204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294245] = 6, + [295710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13814), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14194), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319357,19 +321225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294272] = 6, + [295737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13564), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14196), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319378,19 +321246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294299] = 6, + [295764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - ACTIONS(1682), 1, + ACTIONS(7823), 1, sym_variable_name, - STATE(857), 1, + STATE(4283), 1, sym_string, - ACTIONS(1680), 2, + ACTIONS(7821), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1676), 8, + ACTIONS(7817), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319399,19 +321267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294326] = 6, + [295791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, + ACTIONS(14176), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319420,19 +321288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294353] = 6, + [295818] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13786), 1, + ACTIONS(2701), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3549), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1530), 1, + sym_string, + ACTIONS(3547), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3545), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319441,19 +321309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294380] = 6, + [295845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13432), 1, + ACTIONS(13862), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319462,19 +321330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294407] = 6, + [295872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13790), 1, + ACTIONS(13826), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319483,19 +321351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294434] = 6, + [295899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13452), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14198), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319504,19 +321372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294461] = 6, + [295926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14200), 1, + ACTIONS(14178), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319525,19 +321393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294488] = 6, + [295953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, + ACTIONS(3237), 1, anon_sym_DQUOTE, - ACTIONS(5385), 1, + ACTIONS(7533), 1, sym_variable_name, - STATE(2864), 1, + STATE(4344), 1, sym_string, - ACTIONS(5383), 2, + ACTIONS(7531), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5379), 8, + ACTIONS(7529), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319546,19 +321414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294515] = 6, + [295980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13834), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14202), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319567,19 +321435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294542] = 6, + [296007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13798), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14180), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319588,19 +321456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294569] = 6, + [296034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14204), 1, + ACTIONS(2359), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(2971), 1, + sym_variable_name, + STATE(1483), 1, + sym_string, + ACTIONS(2969), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2967), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319609,19 +321477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294596] = 6, + [296061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10006), 1, + ACTIONS(3128), 1, anon_sym_DQUOTE, - ACTIONS(10010), 1, + ACTIONS(8360), 1, sym_variable_name, - STATE(5422), 1, + STATE(4728), 1, sym_string, - ACTIONS(10008), 2, + ACTIONS(8358), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10004), 8, + ACTIONS(8356), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319630,19 +321498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294623] = 6, + [296088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13806), 1, + ACTIONS(13842), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319651,19 +321519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294650] = 6, + [296115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13562), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14182), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319672,19 +321540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294677] = 6, + [296142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(13846), 1, anon_sym_DQUOTE, - ACTIONS(5490), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(2462), 1, - sym_string, - ACTIONS(5488), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5484), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319693,19 +321561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294704] = 6, + [296169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14206), 1, + ACTIONS(14184), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319714,40 +321582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294731] = 6, + [296196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13478), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [294758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5174), 1, + ACTIONS(14186), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, - sym_variable_name, - STATE(2581), 1, - sym_string, - ACTIONS(5176), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5172), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319756,19 +321603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294785] = 6, + [296223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13818), 1, + ACTIONS(2776), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(7221), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4294), 1, + sym_string, + ACTIONS(7219), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7217), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319777,19 +321624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294812] = 6, + [296250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14208), 1, + ACTIONS(14188), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319798,19 +321645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294839] = 6, + [296277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14210), 1, + ACTIONS(14190), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319819,19 +321666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294866] = 6, + [296304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 1, + ACTIONS(9479), 1, anon_sym_DQUOTE, - ACTIONS(9380), 1, + ACTIONS(9483), 1, sym_variable_name, - STATE(5347), 1, + STATE(5308), 1, sym_string, - ACTIONS(9378), 2, + ACTIONS(9481), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9374), 8, + ACTIONS(9477), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319840,19 +321687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294893] = 6, + [296331] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13858), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14212), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319861,19 +321708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294920] = 6, + [296358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13830), 1, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4197), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1938), 1, + sym_string, + ACTIONS(4195), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4193), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319882,19 +321729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294947] = 6, + [296385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13826), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14192), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319903,19 +321750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294974] = 6, + [296412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14214), 1, + ACTIONS(14194), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319924,19 +321771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295001] = 6, + [296439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13570), 1, + ACTIONS(13576), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319945,19 +321792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295028] = 6, + [296466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(1757), 1, anon_sym_DQUOTE, - ACTIONS(2785), 1, + ACTIONS(1761), 1, sym_variable_name, - STATE(1143), 1, + STATE(944), 1, sym_string, - ACTIONS(2783), 2, + ACTIONS(1759), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2779), 8, + ACTIONS(1755), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319966,19 +321813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295055] = 6, + [296493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14216), 1, + ACTIONS(8603), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(8607), 1, + sym_variable_name, + STATE(5164), 1, + sym_string, + ACTIONS(8605), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(8601), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319987,19 +321834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295082] = 6, + [296520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, - anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(983), 1, - sym_string, - ACTIONS(2219), 2, + ACTIONS(14196), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2215), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320008,19 +321855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295109] = 6, + [296547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14218), 1, + ACTIONS(14198), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320029,19 +321876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295136] = 6, + [296574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13842), 1, + ACTIONS(13882), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320050,19 +321897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295163] = 6, + [296601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13874), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14220), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320071,19 +321918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295190] = 6, + [296628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14222), 1, + ACTIONS(14200), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320092,19 +321939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295217] = 6, + [296655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(7543), 1, anon_sym_DQUOTE, - ACTIONS(5355), 1, + ACTIONS(7547), 1, sym_variable_name, - STATE(2736), 1, + STATE(4329), 1, sym_string, - ACTIONS(5353), 2, + ACTIONS(7545), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5349), 8, + ACTIONS(7541), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320113,19 +321960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295244] = 6, + [296682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(3421), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1202), 1, - sym_string, - ACTIONS(3419), 2, + ACTIONS(14202), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3417), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320134,19 +321981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295271] = 6, + [296709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13850), 1, + ACTIONS(9940), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(9944), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5334), 1, + sym_string, + ACTIONS(9942), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(9938), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320155,41 +322002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295298] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14226), 1, - anon_sym_LT_LT, - ACTIONS(14232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14234), 1, - anon_sym_LT_LT_LT, - ACTIONS(14230), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14228), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14224), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [295327] = 6, + [296736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13858), 1, + ACTIONS(13886), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320198,19 +322023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295354] = 6, + [296763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14236), 1, + ACTIONS(14204), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320219,19 +322044,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295381] = 6, + [296790] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(4370), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(4374), 1, sym_variable_name, - STATE(1404), 1, + STATE(2284), 1, sym_string, - ACTIONS(3425), 2, + ACTIONS(4372), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3423), 8, + ACTIONS(4368), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320240,19 +322065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295408] = 6, + [296817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13866), 1, + ACTIONS(2399), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3616), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1448), 1, + sym_string, + ACTIONS(3614), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3612), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320261,19 +322086,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295435] = 6, + [296844] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13496), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14238), 1, + ACTIONS(14102), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14096), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [296871] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(2257), 1, + sym_variable_name, + STATE(1064), 1, + sym_string, + ACTIONS(2255), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2251), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320282,19 +322128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295462] = 6, + [296898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13870), 1, + ACTIONS(2243), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2247), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1077), 1, + sym_string, + ACTIONS(2245), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2241), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320303,19 +322149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295489] = 6, + [296925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13874), 1, + ACTIONS(13902), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320324,19 +322170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295516] = 6, + [296952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14240), 1, + ACTIONS(14206), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320345,19 +322191,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295543] = 6, + [296979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(13906), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, + sym_variable_name, + ACTIONS(14102), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14096), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [297006] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(3871), 1, sym_variable_name, - STATE(890), 1, + STATE(1362), 1, sym_string, - ACTIONS(1765), 2, + ACTIONS(3869), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1763), 8, + ACTIONS(3867), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320366,19 +322233,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295570] = 6, + [297033] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14210), 1, + anon_sym_LT_LT, + ACTIONS(14216), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14218), 1, + anon_sym_LT_LT_LT, + ACTIONS(14214), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14212), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14208), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [297062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13914), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14242), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320387,19 +322276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295597] = 6, + [297089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14244), 1, + ACTIONS(14220), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320408,19 +322297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295624] = 6, + [297116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13882), 1, + ACTIONS(13918), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320429,19 +322318,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295651] = 6, + [297143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14246), 1, + ACTIONS(3692), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(4123), 1, + sym_variable_name, + STATE(2021), 1, + sym_string, + ACTIONS(4121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4119), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320450,19 +322339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295678] = 6, + [297170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(5063), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(5067), 1, sym_variable_name, - STATE(1473), 1, + STATE(2580), 1, sym_string, - ACTIONS(3431), 2, + ACTIONS(5065), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3429), 8, + ACTIONS(5061), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320471,19 +322360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295705] = 6, + [297197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13890), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14222), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320492,19 +322381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295732] = 6, + [297224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14024), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14224), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320513,19 +322402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295759] = 6, + [297251] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14006), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14248), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320534,19 +322423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295786] = 6, + [297278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3013), 1, anon_sym_DQUOTE, - ACTIONS(7190), 1, + ACTIONS(3916), 1, sym_variable_name, - STATE(4397), 1, + STATE(1547), 1, sym_string, - ACTIONS(7188), 2, + ACTIONS(3914), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7186), 8, + ACTIONS(3912), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320555,19 +322444,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295813] = 6, + [297305] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14086), 1, + anon_sym_LT_LT, + ACTIONS(14092), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14232), 1, + anon_sym_LT_LT_LT, + ACTIONS(14230), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14228), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14226), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [297334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13898), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14234), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320576,19 +322487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295840] = 6, + [297361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13582), 1, + ACTIONS(13926), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320597,19 +322508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295867] = 6, + [297388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14250), 1, + ACTIONS(14236), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320618,19 +322529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295894] = 6, + [297415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(4062), 1, anon_sym_DQUOTE, - ACTIONS(2793), 1, + ACTIONS(4066), 1, sym_variable_name, - STATE(1340), 1, + STATE(1984), 1, sym_string, - ACTIONS(2791), 2, + ACTIONS(4064), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2789), 8, + ACTIONS(4060), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320639,19 +322550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295921] = 6, + [297442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13906), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2008), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1048), 1, + sym_string, + ACTIONS(2006), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2004), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320660,19 +322571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295948] = 6, + [297469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13588), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14252), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320681,19 +322592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295975] = 6, + [297496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 1, + ACTIONS(2626), 1, anon_sym_DQUOTE, - ACTIONS(6820), 1, + ACTIONS(3855), 1, sym_variable_name, - STATE(4240), 1, + STATE(1555), 1, sym_string, - ACTIONS(6818), 2, + ACTIONS(3853), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6816), 8, + ACTIONS(3851), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320702,19 +322613,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296002] = 6, + [297523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, + ACTIONS(13938), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(2251), 1, - sym_string, - ACTIONS(4249), 2, + ACTIONS(14102), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14096), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [297550] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, + sym_variable_name, + ACTIONS(14238), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4245), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320723,19 +322655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296029] = 6, + [297577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13338), 1, + ACTIONS(13384), 1, anon_sym_DQUOTE, - ACTIONS(13342), 1, + ACTIONS(13388), 1, sym_variable_name, - STATE(6110), 1, + STATE(6127), 1, sym_string, - ACTIONS(13340), 2, + ACTIONS(13386), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13336), 8, + ACTIONS(13382), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320744,19 +322676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296056] = 6, + [297604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(13946), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320765,19 +322697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296083] = 6, + [297631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13926), 1, + ACTIONS(3299), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3956), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1838), 1, + sym_string, + ACTIONS(3954), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3952), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320786,41 +322718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296110] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14260), 1, - anon_sym_LT_LT_LT, - ACTIONS(14258), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14256), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14254), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [296139] = 6, + [297658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14262), 1, + ACTIONS(14240), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320829,19 +322739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296166] = 6, + [297685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(13592), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(898), 1, - sym_string, - ACTIONS(1759), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1755), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320850,19 +322760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296193] = 6, + [297712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14264), 1, + ACTIONS(14242), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320871,19 +322781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296220] = 6, + [297739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13934), 1, + ACTIONS(4840), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4844), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2509), 1, + sym_string, + ACTIONS(4842), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4838), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320892,19 +322802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296247] = 6, + [297766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14266), 1, + ACTIONS(14244), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320913,19 +322823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296274] = 6, + [297793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13958), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14268), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320934,19 +322844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296301] = 6, + [297820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 1, + ACTIONS(13608), 1, anon_sym_DQUOTE, - ACTIONS(7269), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(4167), 1, - sym_string, - ACTIONS(7267), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7263), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320955,19 +322865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296328] = 6, + [297847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13586), 1, + ACTIONS(13962), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320976,19 +322886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296355] = 6, + [297874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13486), 1, + ACTIONS(14248), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14252), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(6634), 1, + sym_string, + ACTIONS(14250), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14246), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320997,19 +322907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296382] = 6, + [297901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13972), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14254), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321018,19 +322928,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296409] = 6, + [297928] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14086), 1, + anon_sym_LT_LT, + ACTIONS(14092), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14262), 1, + anon_sym_LT_LT_LT, + ACTIONS(14260), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14258), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14256), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [297957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1201), 1, + ACTIONS(3928), 1, anon_sym_DQUOTE, - ACTIONS(1205), 1, + ACTIONS(7626), 1, sym_variable_name, - STATE(516), 1, + STATE(4592), 1, sym_string, - ACTIONS(1203), 2, + ACTIONS(7624), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1199), 8, + ACTIONS(7622), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321039,19 +322971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296436] = 6, + [297984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14270), 1, + ACTIONS(14264), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321060,19 +322992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296463] = 6, + [298011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13970), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14272), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321081,19 +323013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296490] = 6, + [298038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14274), 1, + ACTIONS(14266), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321102,19 +323034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296517] = 6, + [298065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3883), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4245), 1, sym_variable_name, - STATE(1710), 1, + STATE(1989), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(4243), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3982), 8, + ACTIONS(4241), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321123,19 +323055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296544] = 6, + [298092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1296), 1, - sym_string, - ACTIONS(3439), 2, + ACTIONS(14268), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3435), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321144,19 +323076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296571] = 6, + [298119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13980), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3448), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1683), 1, + sym_string, + ACTIONS(3446), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3444), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321165,19 +323097,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296598] = 6, + [298146] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14086), 1, + anon_sym_LT_LT, + ACTIONS(14092), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14276), 1, + anon_sym_LT_LT_LT, + ACTIONS(14274), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14272), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14270), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [298175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(14022), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1724), 1, - sym_string, - ACTIONS(3903), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3901), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321186,19 +323140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296625] = 6, + [298202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14276), 1, + ACTIONS(1201), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(1205), 1, + sym_variable_name, + STATE(506), 1, + sym_string, + ACTIONS(1203), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(1199), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321207,19 +323161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296652] = 6, + [298229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13996), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2341), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1268), 1, + sym_string, + ACTIONS(2339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2337), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321228,19 +323182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296679] = 6, + [298256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13988), 1, + ACTIONS(13990), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321249,19 +323203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296706] = 6, + [298283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, ACTIONS(14278), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321270,19 +323224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296733] = 6, + [298310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(13994), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1336), 1, - sym_string, - ACTIONS(3807), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3805), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321291,19 +323245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296760] = 6, + [298337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, + ACTIONS(3418), 1, anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(7437), 1, sym_variable_name, - STATE(2219), 1, + STATE(4497), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(7435), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(7433), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321312,19 +323266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296787] = 6, + [298364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, ACTIONS(14280), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321333,19 +323287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296814] = 6, + [298391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14002), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321354,19 +323308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296841] = 6, + [298418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13604), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14282), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321375,19 +323329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296868] = 6, + [298445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13508), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14284), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321396,19 +323350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296895] = 6, + [298472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_DQUOTE, - ACTIONS(3889), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1503), 1, - sym_string, - ACTIONS(3887), 2, + ACTIONS(14282), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3885), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321417,19 +323371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296922] = 6, + [298499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14012), 1, + ACTIONS(7630), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(7634), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4370), 1, + sym_string, + ACTIONS(7632), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7628), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321438,41 +323392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296949] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14288), 1, - anon_sym_LT_LT, - ACTIONS(14294), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14296), 1, - anon_sym_LT_LT_LT, - ACTIONS(14292), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14290), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14286), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [296978] = 6, + [298526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14016), 1, + ACTIONS(14018), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321481,19 +323413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297005] = 6, + [298553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13468), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14298), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321502,19 +323434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297032] = 6, + [298580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14300), 1, + ACTIONS(260), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(5189), 1, + sym_variable_name, + STATE(2286), 1, + sym_string, + ACTIONS(5187), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5185), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321523,19 +323455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297059] = 6, + [298607] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(13612), 1, anon_sym_DQUOTE, - ACTIONS(2025), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1012), 1, - sym_string, - ACTIONS(2023), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2021), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321544,19 +323476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297086] = 6, + [298634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13594), 1, + ACTIONS(13620), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321565,19 +323497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297113] = 6, + [298661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, - anon_sym_DQUOTE, - ACTIONS(3974), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1616), 1, - sym_string, - ACTIONS(3972), 2, + ACTIONS(14284), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3970), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321586,19 +323518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297140] = 6, + [298688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14032), 1, + ACTIONS(14026), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321607,19 +323539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297167] = 6, + [298715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(2020), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(4203), 1, sym_variable_name, - STATE(1273), 1, + STATE(1576), 1, sym_string, - ACTIONS(2267), 2, + ACTIONS(4201), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2265), 8, + ACTIONS(4199), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321628,19 +323560,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297194] = 6, + [298742] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14288), 1, + anon_sym_LT_LT, + ACTIONS(14294), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14296), 1, + anon_sym_LT_LT_LT, + ACTIONS(14292), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14290), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14286), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [298771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, - anon_sym_DQUOTE, - ACTIONS(4048), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(2111), 1, - sym_string, - ACTIONS(4046), 2, + ACTIONS(14298), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4042), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321649,19 +323603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297221] = 6, + [298798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14030), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14302), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321670,19 +323624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297248] = 6, + [298825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(14042), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1657), 1, - sym_string, - ACTIONS(3911), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3907), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321691,19 +323645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297275] = 6, + [298852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_DQUOTE, - ACTIONS(3803), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1839), 1, - sym_string, - ACTIONS(3801), 2, + ACTIONS(14300), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3799), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321712,19 +323666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297302] = 6, + [298879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14304), 1, + ACTIONS(14302), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321733,19 +323687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297329] = 6, + [298906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14044), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14304), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321754,19 +323708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297356] = 6, + [298933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14306), 1, + ACTIONS(2054), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(4284), 1, + sym_variable_name, + STATE(1685), 1, + sym_string, + ACTIONS(4282), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4280), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321775,41 +323729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297383] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14310), 1, - anon_sym_LT_LT, - ACTIONS(14316), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14318), 1, - anon_sym_LT_LT_LT, - ACTIONS(14314), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14308), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [297412] = 6, + [298960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14320), 1, + ACTIONS(14306), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321818,19 +323750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297439] = 6, + [298987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14048), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14308), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321839,19 +323771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297466] = 6, + [299014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(13616), 1, + anon_sym_DQUOTE, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14322), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321860,19 +323792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297493] = 6, + [299041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14060), 1, + ACTIONS(14046), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321881,19 +323813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297520] = 6, + [299068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 1, + ACTIONS(4087), 1, anon_sym_DQUOTE, - ACTIONS(7480), 1, + ACTIONS(7829), 1, sym_variable_name, - STATE(4595), 1, + STATE(4385), 1, sym_string, - ACTIONS(7478), 2, + ACTIONS(7827), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7476), 8, + ACTIONS(7825), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321902,19 +323834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297547] = 6, + [299095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, + ACTIONS(14310), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321923,19 +323855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297574] = 6, + [299122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14056), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14312), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321944,19 +323876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297601] = 6, + [299149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(5737), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(5916), 1, sym_variable_name, - STATE(2500), 1, + STATE(3393), 1, sym_string, - ACTIONS(4929), 2, + ACTIONS(5914), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + ACTIONS(5912), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321965,19 +323897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297628] = 6, + [299176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14324), 1, + ACTIONS(14314), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321986,19 +323918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297655] = 6, + [299203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(14066), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1528), 1, - sym_string, - ACTIONS(3113), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3111), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322007,19 +323939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297682] = 6, + [299230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14326), 1, + ACTIONS(14316), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322028,19 +323960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297709] = 6, + [299257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14072), 1, + ACTIONS(3628), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4054), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1869), 1, + sym_string, + ACTIONS(4052), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4050), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322049,19 +323981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297736] = 6, + [299284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14068), 1, + ACTIONS(14074), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322070,19 +324002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297763] = 6, + [299311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, + ACTIONS(14078), 1, anon_sym_DQUOTE, - ACTIONS(6348), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(3422), 1, - sym_string, - ACTIONS(6346), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6342), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322091,19 +324023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297790] = 6, + [299338] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 1, - anon_sym_DQUOTE, - ACTIONS(3938), 1, + ACTIONS(14100), 1, + sym_string_content, + ACTIONS(14104), 1, sym_variable_name, - STATE(1838), 1, - sym_string, - ACTIONS(3936), 2, + ACTIONS(14318), 1, + anon_sym_DQUOTE, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3934), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322112,19 +324044,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297817] = 6, + [299365] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14322), 1, + anon_sym_LT_LT, + ACTIONS(14328), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14330), 1, + anon_sym_LT_LT_LT, + ACTIONS(14326), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14324), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14320), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [299394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13610), 1, + ACTIONS(13802), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322133,19 +324087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297844] = 6, + [299421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14328), 1, + ACTIONS(14332), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322154,40 +324108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297871] = 6, + [299448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(13648), 1, anon_sym_DQUOTE, - ACTIONS(7275), 1, - sym_variable_name, - STATE(4355), 1, - sym_string, - ACTIONS(7273), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7271), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [297898] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14330), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322196,92 +324129,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297925] = 6, + [299475] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(14322), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(14328), 1, anon_sym_LT_LT_DASH, - ACTIONS(14112), 2, + ACTIONS(14326), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14110), 3, + ACTIONS(14324), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14108), 5, + ACTIONS(14320), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [297951] = 6, + [299501] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(14086), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(14092), 1, anon_sym_LT_LT_DASH, - ACTIONS(14098), 2, + ACTIONS(14230), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, + ACTIONS(14228), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14092), 5, + ACTIONS(14226), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [297977] = 6, + [299527] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(14210), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(14216), 1, anon_sym_LT_LT_DASH, - ACTIONS(14258), 2, + ACTIONS(14214), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14256), 3, + ACTIONS(14212), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14254), 5, + ACTIONS(14208), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298003] = 6, + [299553] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(14086), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(14092), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14090), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14088), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14084), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [299579] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14086), 1, + anon_sym_LT_LT, + ACTIONS(14092), 1, anon_sym_LT_LT_DASH, - ACTIONS(14130), 2, + ACTIONS(14260), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(14258), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(14256), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298029] = 3, + [299605] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14086), 1, + anon_sym_LT_LT, + ACTIONS(14092), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14274), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14272), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14270), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [299631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1298), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 11, + ACTIONS(1296), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -322293,12 +324266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, aux_sym__simple_variable_name_token1, - [298049] = 3, + [299651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1302), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 11, + ACTIONS(1300), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -322310,67 +324283,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, aux_sym__simple_variable_name_token1, - [298069] = 6, + [299671] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(14336), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(14342), 1, anon_sym_LT_LT_DASH, - ACTIONS(14186), 2, + ACTIONS(14340), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, + ACTIONS(14338), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14182), 5, + ACTIONS(14334), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298095] = 6, + [299697] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(14086), 1, anon_sym_LT_LT, - ACTIONS(14340), 1, + ACTIONS(14092), 1, anon_sym_LT_LT_DASH, - ACTIONS(14338), 2, + ACTIONS(14124), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14336), 3, + ACTIONS(14122), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14332), 5, + ACTIONS(14120), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298121] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14226), 1, - anon_sym_LT_LT, - ACTIONS(14232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14230), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14228), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14224), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [298147] = 6, + [299723] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14288), 1, @@ -322390,17 +324343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298173] = 5, + [299749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14100), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14104), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(14102), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14096), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322409,109 +324362,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298197] = 6, + [299773] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14310), 1, - anon_sym_LT_LT, - ACTIONS(14316), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14314), 2, + ACTIONS(14350), 1, + anon_sym_LT_LT_LT, + ACTIONS(14348), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, + ACTIONS(14346), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14308), 5, + ACTIONS(14344), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298223] = 5, + [299796] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14348), 1, + ACTIONS(14358), 1, anon_sym_LT_LT_LT, - ACTIONS(14346), 2, + ACTIONS(14356), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14344), 3, + ACTIONS(14354), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14342), 5, + ACTIONS(14352), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298246] = 9, - ACTIONS(71), 1, + [299819] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14350), 1, + ACTIONS(14364), 1, + sym_variable_name, + ACTIONS(14362), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14360), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(14352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14354), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14356), 1, - anon_sym_BQUOTE, - ACTIONS(14358), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14360), 1, - sym_heredoc_content, - ACTIONS(14362), 1, - sym_heredoc_end, - STATE(6023), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [298277] = 5, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [299840] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14114), 1, + ACTIONS(14262), 1, anon_sym_LT_LT_LT, - ACTIONS(14112), 2, + ACTIONS(14260), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14110), 3, + ACTIONS(14258), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14108), 5, + ACTIONS(14256), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298300] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14364), 1, - anon_sym_RBRACE3, - ACTIONS(14366), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [298319] = 4, + [299863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14372), 1, + ACTIONS(14370), 1, sym_variable_name, - ACTIONS(14370), 2, + ACTIONS(14368), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14368), 8, + ACTIONS(14366), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322520,51 +324450,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298340] = 5, + [299884] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14380), 1, + ACTIONS(14330), 1, anon_sym_LT_LT_LT, - ACTIONS(14378), 2, + ACTIONS(14326), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14376), 3, + ACTIONS(14324), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14374), 5, + ACTIONS(14320), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298363] = 5, + [299907] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14388), 1, + ACTIONS(14378), 1, anon_sym_LT_LT_LT, - ACTIONS(14386), 2, + ACTIONS(14376), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14384), 3, + ACTIONS(14374), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14382), 5, + ACTIONS(14372), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298386] = 4, + [299930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14394), 1, + ACTIONS(14384), 1, sym_variable_name, - ACTIONS(14392), 2, + ACTIONS(14382), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14390), 8, + ACTIONS(14380), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322573,397 +324503,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298407] = 5, + [299951] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14396), 1, + ACTIONS(14296), 1, anon_sym_LT_LT_LT, - ACTIONS(14338), 2, + ACTIONS(14292), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14336), 3, + ACTIONS(14290), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14332), 5, + ACTIONS(14286), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298430] = 5, + [299974] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14404), 1, + ACTIONS(14392), 1, anon_sym_LT_LT_LT, - ACTIONS(14402), 2, + ACTIONS(14390), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14400), 3, + ACTIONS(14388), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14398), 5, + ACTIONS(14386), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298453] = 5, + [299997] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14412), 1, + ACTIONS(14400), 1, anon_sym_LT_LT_LT, - ACTIONS(14410), 2, + ACTIONS(14398), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14408), 3, + ACTIONS(14396), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14406), 5, + ACTIONS(14394), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298476] = 9, + [300020] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14414), 1, - anon_sym_DOLLAR, - ACTIONS(14417), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14423), 1, - anon_sym_BQUOTE, - ACTIONS(14426), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14429), 1, - sym_heredoc_content, - ACTIONS(14432), 1, - sym_heredoc_end, - STATE(6023), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [298507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14174), 1, - sym_variable_name, - ACTIONS(14172), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14168), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [298528] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14296), 1, + ACTIONS(14408), 1, anon_sym_LT_LT_LT, - ACTIONS(14292), 2, + ACTIONS(14406), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14290), 3, + ACTIONS(14404), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14286), 5, + ACTIONS(14402), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298551] = 5, + [300043] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14188), 1, + ACTIONS(14416), 1, anon_sym_LT_LT_LT, - ACTIONS(14186), 2, + ACTIONS(14414), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, + ACTIONS(14412), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14182), 5, + ACTIONS(14410), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298574] = 5, + [300066] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14102), 1, + ACTIONS(14126), 1, anon_sym_LT_LT_LT, - ACTIONS(14098), 2, + ACTIONS(14124), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, + ACTIONS(14122), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14092), 5, + ACTIONS(14120), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14438), 1, - sym_variable_name, - ACTIONS(14436), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14434), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [298618] = 5, + [300089] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14446), 1, + ACTIONS(14424), 1, anon_sym_LT_LT_LT, - ACTIONS(14444), 2, + ACTIONS(14422), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14442), 3, + ACTIONS(14420), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14440), 5, + ACTIONS(14418), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14452), 1, - sym_variable_name, - ACTIONS(14450), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14448), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [298662] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14350), 1, - anon_sym_DOLLAR, - ACTIONS(14352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14354), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14356), 1, - anon_sym_BQUOTE, - ACTIONS(14358), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14454), 1, - sym_heredoc_content, - ACTIONS(14456), 1, - sym_heredoc_end, - STATE(6013), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [298693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14462), 1, - sym_variable_name, - ACTIONS(14460), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14458), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [298714] = 5, + [300112] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14260), 1, + ACTIONS(14432), 1, anon_sym_LT_LT_LT, - ACTIONS(14258), 2, + ACTIONS(14430), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14256), 3, + ACTIONS(14428), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14254), 5, + ACTIONS(14426), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298737] = 5, + [300135] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14318), 1, + ACTIONS(14232), 1, anon_sym_LT_LT_LT, - ACTIONS(14314), 2, + ACTIONS(14230), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, + ACTIONS(14228), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14308), 5, + ACTIONS(14226), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298760] = 5, + [300158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14438), 1, + sym_variable_name, + ACTIONS(14436), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14434), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [300179] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14470), 1, + ACTIONS(14446), 1, anon_sym_LT_LT_LT, - ACTIONS(14468), 2, + ACTIONS(14444), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14466), 3, + ACTIONS(14442), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14464), 5, + ACTIONS(14440), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298783] = 5, + [300202] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14478), 1, + ACTIONS(14448), 1, anon_sym_LT_LT_LT, - ACTIONS(14476), 2, + ACTIONS(14340), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14474), 3, + ACTIONS(14338), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14472), 5, + ACTIONS(14334), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298806] = 5, + [300225] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14132), 1, + ACTIONS(14456), 1, anon_sym_LT_LT_LT, - ACTIONS(14130), 2, + ACTIONS(14454), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(14452), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(14450), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298829] = 5, + [300248] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14486), 1, + ACTIONS(14464), 1, anon_sym_LT_LT_LT, - ACTIONS(14484), 2, + ACTIONS(14462), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14482), 3, + ACTIONS(14460), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14480), 5, + ACTIONS(14458), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298852] = 5, + [300271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14252), 1, + sym_variable_name, + ACTIONS(14250), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14246), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [300292] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14494), 1, + ACTIONS(14472), 1, anon_sym_LT_LT_LT, - ACTIONS(14492), 2, + ACTIONS(14470), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14490), 3, + ACTIONS(14468), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14488), 5, + ACTIONS(14466), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298875] = 5, + [300315] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(14502), 1, + ACTIONS(14474), 1, + anon_sym_DOLLAR, + ACTIONS(14477), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14480), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14483), 1, + anon_sym_BQUOTE, + ACTIONS(14486), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14489), 1, + sym_heredoc_content, + ACTIONS(14492), 1, + sym_heredoc_end, + STATE(6036), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [300346] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14500), 1, anon_sym_LT_LT_LT, - ACTIONS(14500), 2, + ACTIONS(14498), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14498), 3, + ACTIONS(14496), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14496), 5, + ACTIONS(14494), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298898] = 4, + [300369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14508), 1, + ACTIONS(14506), 1, sym_variable_name, - ACTIONS(14506), 2, + ACTIONS(14504), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14504), 8, + ACTIONS(14502), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322972,158 +324846,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298919] = 5, + [300390] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14516), 1, + ACTIONS(14276), 1, anon_sym_LT_LT_LT, - ACTIONS(14514), 2, + ACTIONS(14274), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14512), 3, + ACTIONS(14272), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14510), 5, + ACTIONS(14270), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298942] = 5, + [300413] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14524), 1, + ACTIONS(14514), 1, anon_sym_LT_LT_LT, - ACTIONS(14522), 2, + ACTIONS(14512), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14520), 3, + ACTIONS(14510), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14518), 5, + ACTIONS(14508), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298965] = 5, + [300436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14520), 1, + sym_variable_name, + ACTIONS(14518), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14516), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [300457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14526), 1, + sym_variable_name, + ACTIONS(14524), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14522), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [300478] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14532), 1, + ACTIONS(14528), 1, + anon_sym_RBRACE3, + ACTIONS(14530), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [300497] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14538), 1, anon_sym_LT_LT_LT, - ACTIONS(14530), 2, + ACTIONS(14536), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14528), 3, + ACTIONS(14534), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14526), 5, + ACTIONS(14532), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298988] = 4, - ACTIONS(3), 1, + [300520] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(14538), 1, - sym_variable_name, - ACTIONS(14536), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14534), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(14540), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [299009] = 5, + ACTIONS(14542), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14544), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14546), 1, + anon_sym_BQUOTE, + ACTIONS(14548), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14550), 1, + sym_heredoc_content, + ACTIONS(14552), 1, + sym_heredoc_end, + STATE(6047), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [300551] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14546), 1, + ACTIONS(14094), 1, anon_sym_LT_LT_LT, - ACTIONS(14544), 2, + ACTIONS(14090), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14542), 3, + ACTIONS(14088), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14540), 5, + ACTIONS(14084), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299032] = 5, + [300574] = 9, ACTIONS(71), 1, sym_comment, + ACTIONS(14540), 1, + anon_sym_DOLLAR, + ACTIONS(14542), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14544), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14546), 1, + anon_sym_BQUOTE, + ACTIONS(14548), 1, + anon_sym_DOLLAR_BQUOTE, ACTIONS(14554), 1, + sym_heredoc_content, + ACTIONS(14556), 1, + sym_heredoc_end, + STATE(6036), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [300605] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14564), 1, anon_sym_LT_LT_LT, - ACTIONS(14552), 2, + ACTIONS(14562), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14550), 3, + ACTIONS(14560), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14548), 5, + ACTIONS(14558), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299055] = 5, + [300628] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14562), 1, + ACTIONS(14572), 1, anon_sym_LT_LT_LT, - ACTIONS(14560), 2, + ACTIONS(14570), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14558), 3, + ACTIONS(14568), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14556), 5, + ACTIONS(14566), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299078] = 5, + [300651] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14570), 1, + ACTIONS(14580), 1, anon_sym_LT_LT_LT, - ACTIONS(14568), 2, + ACTIONS(14578), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14566), 3, + ACTIONS(14576), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14564), 5, + ACTIONS(14574), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299101] = 4, + [300674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14576), 1, + ACTIONS(14586), 1, sym_variable_name, - ACTIONS(14574), 2, + ACTIONS(14584), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14572), 8, + ACTIONS(14582), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -323132,90 +325083,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [299122] = 5, + [300695] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14584), 1, - anon_sym_LT_LT_LT, - ACTIONS(14582), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14580), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14578), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [299145] = 8, + ACTIONS(14588), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14590), 1, + anon_sym_LPAREN, + ACTIONS(14592), 1, + anon_sym_if, + ACTIONS(14594), 1, + anon_sym_LBRACE, + ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, + anon_sym_LBRACK_LBRACK, + STATE(4386), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [300723] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14600), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(14602), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(14604), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(14606), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(14608), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(14610), 1, anon_sym_LBRACK_LBRACK, - STATE(4551), 4, + STATE(4160), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299173] = 8, + [300751] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(14588), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14600), 1, - anon_sym_LPAREN, - ACTIONS(14602), 1, + ACTIONS(14592), 1, anon_sym_if, - ACTIONS(14604), 1, + ACTIONS(14594), 1, anon_sym_LBRACE, - ACTIONS(14606), 1, + ACTIONS(14596), 1, anon_sym_LBRACK, - ACTIONS(14608), 1, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - STATE(5310), 4, + ACTIONS(14612), 1, + anon_sym_LPAREN, + STATE(4595), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299201] = 8, + [300779] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14614), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(14616), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(14618), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(14620), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(14622), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(14624), 1, anon_sym_LBRACK_LBRACK, - STATE(4537), 4, + STATE(5156), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299229] = 3, + [300807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(1274), 1, sym__concat, - ACTIONS(1300), 9, + ACTIONS(1272), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323225,7 +325178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299247] = 3, + [300825] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1306), 1, @@ -323240,127 +325193,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299265] = 8, + [300843] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14610), 1, + ACTIONS(14588), 1, anon_sym_LPAREN_LPAREN, + ACTIONS(14592), 1, + anon_sym_if, + ACTIONS(14594), 1, + anon_sym_LBRACE, + ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(14612), 1, anon_sym_LPAREN, - ACTIONS(14614), 1, + STATE(5098), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [300871] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14626), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14628), 1, + anon_sym_LPAREN, + ACTIONS(14630), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(14632), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(14634), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(14636), 1, anon_sym_LBRACK_LBRACK, - STATE(4330), 4, + STATE(4199), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299293] = 8, + [300899] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14610), 1, + ACTIONS(14588), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14614), 1, + ACTIONS(14592), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(14594), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(14596), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14622), 1, + ACTIONS(14638), 1, anon_sym_LPAREN, - STATE(4452), 4, + STATE(4428), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299321] = 8, + [300927] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, - anon_sym_LPAREN_LPAREN, ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, + anon_sym_LPAREN_LPAREN, ACTIONS(14592), 1, - anon_sym_LBRACE, + anon_sym_if, ACTIONS(14594), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - STATE(4588), 4, + ACTIONS(14612), 1, + anon_sym_LPAREN, + STATE(4396), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, - sym__concat, - ACTIONS(1300), 9, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [299367] = 8, + [300955] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(14588), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14602), 1, + ACTIONS(14592), 1, anon_sym_if, - ACTIONS(14604), 1, + ACTIONS(14594), 1, anon_sym_LBRACE, - ACTIONS(14606), 1, + ACTIONS(14596), 1, anon_sym_LBRACK, - ACTIONS(14608), 1, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14624), 1, + ACTIONS(14612), 1, anon_sym_LPAREN, - STATE(5292), 4, + STATE(4398), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299395] = 8, + [300983] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14626), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(14630), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(14632), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(14634), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(14636), 1, anon_sym_LBRACK_LBRACK, - STATE(4744), 4, + ACTIONS(14640), 1, + anon_sym_LPAREN, + STATE(4192), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299423] = 3, + [301011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14628), 1, + ACTIONS(1254), 1, sym__concat, - ACTIONS(14626), 9, + ACTIONS(1252), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323370,127 +325328,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299441] = 8, + [301029] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14626), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(14630), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(14632), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(14634), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(14636), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14630), 1, + ACTIONS(14640), 1, anon_sym_LPAREN, - STATE(4534), 4, + STATE(4236), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299469] = 8, + [301057] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(14588), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14634), 1, - anon_sym_LPAREN, - ACTIONS(14636), 1, + ACTIONS(14592), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(14594), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(14596), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, - anon_sym_LBRACK_LBRACK, - STATE(4286), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [299497] = 8, - ACTIONS(71), 1, - sym_comment, ACTIONS(14598), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(14602), 1, - anon_sym_if, - ACTIONS(14604), 1, - anon_sym_LBRACE, - ACTIONS(14606), 1, - anon_sym_LBRACK, - ACTIONS(14608), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14624), 1, + ACTIONS(14612), 1, anon_sym_LPAREN, - STATE(5325), 4, + STATE(4502), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299525] = 8, + [301085] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, - anon_sym_LPAREN_LPAREN, ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, + anon_sym_LPAREN_LPAREN, ACTIONS(14592), 1, - anon_sym_LBRACE, + anon_sym_if, ACTIONS(14594), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - STATE(4561), 4, + ACTIONS(14612), 1, + anon_sym_LPAREN, + STATE(4598), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299553] = 8, + [301113] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(14600), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14634), 1, - anon_sym_LPAREN, - ACTIONS(14636), 1, + ACTIONS(14604), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(14606), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(14608), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(14610), 1, anon_sym_LBRACK_LBRACK, - STATE(4288), 4, + ACTIONS(14642), 1, + anon_sym_LPAREN, + STATE(4149), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299581] = 3, - ACTIONS(3), 1, + [301141] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(14644), 1, - sym__concat, - ACTIONS(13949), 9, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [299599] = 3, + ACTIONS(14530), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [301157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(1254), 1, sym__concat, - ACTIONS(1296), 9, + ACTIONS(1252), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323500,87 +325437,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299617] = 8, + [301175] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, - anon_sym_LPAREN_LPAREN, ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, - ACTIONS(14592), 1, - anon_sym_LBRACE, - ACTIONS(14594), 1, - anon_sym_LBRACK, - ACTIONS(14596), 1, - anon_sym_LBRACK_LBRACK, - STATE(4554), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [299645] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14610), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14614), 1, + ACTIONS(14592), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(14594), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(14596), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14622), 1, + ACTIONS(14612), 1, anon_sym_LPAREN, - STATE(4478), 4, + STATE(4388), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299673] = 8, + [301203] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14614), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(14618), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(14620), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(14622), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(14624), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14646), 1, + ACTIONS(14644), 1, anon_sym_LPAREN, - STATE(5164), 4, + STATE(5174), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299701] = 8, + [301231] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, - anon_sym_LPAREN_LPAREN, ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, + anon_sym_LPAREN_LPAREN, ACTIONS(14592), 1, - anon_sym_LBRACE, + anon_sym_if, ACTIONS(14594), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - STATE(5168), 4, + ACTIONS(14646), 1, + anon_sym_LPAREN, + STATE(4425), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299729] = 3, + [301259] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1270), 1, @@ -323595,32 +325512,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299747] = 8, + [301277] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14648), 1, - anon_sym_DQUOTE, - ACTIONS(14650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14654), 1, - anon_sym_BQUOTE, - ACTIONS(14656), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5147), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - STATE(6538), 3, - sym_string, - sym_expansion, - sym_command_substitution, - [299775] = 3, + ACTIONS(14588), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14592), 1, + anon_sym_if, + ACTIONS(14594), 1, + anon_sym_LBRACE, + ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14612), 1, + anon_sym_LPAREN, + STATE(4430), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [301305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(14650), 1, sym__concat, - ACTIONS(1288), 9, + ACTIONS(14648), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323630,52 +325547,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299793] = 8, + [301323] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14588), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, ACTIONS(14592), 1, - anon_sym_LBRACE, + anon_sym_if, ACTIONS(14594), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14658), 1, + ACTIONS(14612), 1, anon_sym_LPAREN, - STATE(4556), 4, + STATE(4504), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299821] = 8, + [301351] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14614), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(14618), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(14620), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(14622), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(14624), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14660), 1, + ACTIONS(14644), 1, anon_sym_LPAREN, - STATE(4733), 4, + STATE(5182), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299849] = 3, + [301379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(1302), 1, sym__concat, - ACTIONS(1292), 9, + ACTIONS(1300), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323685,32 +325602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299867] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14632), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(14636), 1, - anon_sym_if, - ACTIONS(14638), 1, - anon_sym_LBRACE, - ACTIONS(14640), 1, - anon_sym_LBRACK, - ACTIONS(14642), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14662), 1, - anon_sym_LPAREN, - STATE(4186), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [299895] = 3, + [301397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1250), 1, sym__concat, - ACTIONS(1260), 9, + ACTIONS(1248), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323720,12 +325617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299913] = 3, + [301415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1310), 1, sym__concat, - ACTIONS(1276), 9, + ACTIONS(1308), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323735,104 +325632,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299931] = 8, + [301433] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14600), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(14602), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(14604), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(14606), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(14608), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(14610), 1, anon_sym_LBRACK_LBRACK, - STATE(4742), 4, + STATE(4164), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299959] = 2, + [301461] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14366), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [299975] = 8, + ACTIONS(14652), 1, + anon_sym_DQUOTE, + ACTIONS(14654), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14656), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14658), 1, + anon_sym_BQUOTE, + ACTIONS(14660), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5473), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + STATE(6607), 3, + sym_string, + sym_expansion, + sym_command_substitution, + [301489] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(14588), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, ACTIONS(14592), 1, - anon_sym_LBRACE, + anon_sym_if, ACTIONS(14594), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14664), 1, + ACTIONS(14662), 1, anon_sym_LPAREN, - STATE(4550), 4, + STATE(5092), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300003] = 8, + [301517] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, - anon_sym_LPAREN_LPAREN, ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, + anon_sym_LPAREN_LPAREN, ACTIONS(14592), 1, - anon_sym_LBRACE, + anon_sym_if, ACTIONS(14594), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - STATE(4599), 4, + ACTIONS(14664), 1, + anon_sym_LPAREN, + STATE(4588), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300031] = 8, + [301545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + sym__concat, + ACTIONS(1296), 9, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [301563] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, - anon_sym_LPAREN_LPAREN, ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, - anon_sym_if, + anon_sym_LPAREN_LPAREN, ACTIONS(14592), 1, - anon_sym_LBRACE, + anon_sym_if, ACTIONS(14594), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(14596), 1, + anon_sym_LBRACK, + ACTIONS(14598), 1, anon_sym_LBRACK_LBRACK, - STATE(5169), 4, + ACTIONS(14612), 1, + anon_sym_LPAREN, + STATE(5097), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300059] = 2, + [301591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13949), 9, + ACTIONS(14666), 1, + sym__concat, + ACTIONS(13747), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323842,48 +325762,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300074] = 6, + [301609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 1, + ACTIONS(1233), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, sym__concat, - STATE(6101), 1, + STATE(6105), 1, aux_sym_concatenation_repeat1, - ACTIONS(1223), 5, + ACTIONS(1231), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, sym__special_character, - [300097] = 10, + [301632] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(14670), 1, - anon_sym_SLASH, ACTIONS(14672), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(14674), 1, - anon_sym_RBRACE3, + anon_sym_DQUOTE, ACTIONS(14676), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_RBRACE3, ACTIONS(14678), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(14680), 1, - anon_sym_DOLLAR_BQUOTE, + anon_sym_BQUOTE, ACTIONS(14682), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14684), 1, sym__regex_no_slash, - STATE(6543), 1, + STATE(6503), 1, sym_string, - STATE(6638), 1, + STATE(6663), 1, sym_command_substitution, - [300128] = 2, + [301663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14684), 9, + ACTIONS(14686), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323893,329 +325813,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300143] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, - ACTIONS(14668), 1, - sym__concat, - ACTIONS(14686), 1, - anon_sym_in, - ACTIONS(14690), 1, - aux_sym_heredoc_redirect_token1, - STATE(6099), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14688), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [300167] = 8, + [301678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, - anon_sym_RPAREN, - ACTIONS(14694), 1, + ACTIONS(13747), 9, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(14696), 1, - sym_raw_string, - ACTIONS(14698), 1, - anon_sym_RBRACE3, - ACTIONS(14700), 1, - aux_sym__expansion_regex_token1, - ACTIONS(14702), 1, - sym_regex, - STATE(6097), 2, - sym_string, - aux_sym__expansion_regex_repeat1, - [300193] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(14704), 1, + sym_string_content, anon_sym_DOLLAR_LBRACE, - ACTIONS(14706), 1, - aux_sym__simple_variable_name_token1, - STATE(6151), 1, - sym__expansion_max_length_binary_expression, - STATE(6128), 3, - sym_number, - sym_expansion, - sym__expansion_max_length_expression, - [300217] = 7, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [301693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, sym__concat, - ACTIONS(14708), 1, + ACTIONS(14688), 1, anon_sym_in, - ACTIONS(14712), 1, + ACTIONS(14692), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6105), 1, aux_sym_concatenation_repeat1, - ACTIONS(14710), 3, + ACTIONS(14690), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300241] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14714), 1, - anon_sym_RPAREN, - ACTIONS(14717), 1, - anon_sym_DQUOTE, - ACTIONS(14720), 1, - sym_raw_string, - ACTIONS(14723), 1, - anon_sym_RBRACE3, - ACTIONS(14725), 1, - aux_sym__expansion_regex_token1, - ACTIONS(14728), 1, - sym_regex, - STATE(6097), 2, - sym_string, - aux_sym__expansion_regex_repeat1, - [300267] = 6, + [301717] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1215), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14731), 1, + ACTIONS(14668), 1, aux_sym_concatenation_token1, - ACTIONS(14734), 1, + ACTIONS(14694), 1, sym__concat, - STATE(6098), 1, + STATE(6096), 1, aux_sym_concatenation_repeat1, ACTIONS(1213), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300289] = 6, + [301739] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 1, + ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, + sym__concat, + ACTIONS(14696), 1, + anon_sym_in, + ACTIONS(14700), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, + STATE(6105), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14698), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [301763] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14702), 1, aux_sym_concatenation_token1, - ACTIONS(14737), 1, + ACTIONS(14705), 1, sym__concat, - STATE(6098), 1, + STATE(6096), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 4, + ACTIONS(1235), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300311] = 8, + [301785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, + ACTIONS(14708), 1, anon_sym_RPAREN, - ACTIONS(14694), 1, + ACTIONS(14711), 1, anon_sym_DQUOTE, - ACTIONS(14700), 1, + ACTIONS(14714), 1, + sym_raw_string, + ACTIONS(14717), 1, + anon_sym_RBRACE3, + ACTIONS(14719), 1, aux_sym__expansion_regex_token1, - ACTIONS(14739), 1, + ACTIONS(14722), 1, + sym_regex, + STATE(6097), 2, + sym_string, + aux_sym__expansion_regex_repeat1, + [301811] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14725), 1, + anon_sym_RPAREN, + ACTIONS(14727), 1, + anon_sym_DQUOTE, + ACTIONS(14729), 1, sym_raw_string, - ACTIONS(14741), 1, + ACTIONS(14731), 1, anon_sym_RBRACE3, - ACTIONS(14743), 1, + ACTIONS(14733), 1, + aux_sym__expansion_regex_token1, + ACTIONS(14735), 1, sym_regex, - STATE(6094), 2, + STATE(6106), 2, sym_string, aux_sym__expansion_regex_repeat1, - [300337] = 6, + [301837] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1229), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, + ACTIONS(14668), 1, aux_sym_concatenation_token1, - ACTIONS(14745), 1, + ACTIONS(14670), 1, sym__concat, - STATE(6098), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 4, + ACTIONS(14737), 1, anon_sym_in, + ACTIONS(14741), 1, + aux_sym_heredoc_redirect_token1, + STATE(6105), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14739), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300359] = 7, + [301861] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, sym__concat, - ACTIONS(14747), 1, + ACTIONS(14743), 1, anon_sym_in, - ACTIONS(14751), 1, + ACTIONS(14747), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6094), 1, aux_sym_concatenation_repeat1, - ACTIONS(14749), 3, + ACTIONS(14745), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300383] = 7, + [301885] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, sym__concat, - ACTIONS(14753), 1, + ACTIONS(14749), 1, anon_sym_in, - ACTIONS(14757), 1, + ACTIONS(14753), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + STATE(6105), 1, aux_sym_concatenation_repeat1, - ACTIONS(14755), 3, + ACTIONS(14751), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300407] = 7, + [301909] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(7969), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(7971), 1, aux_sym_number_token2, - ACTIONS(14704), 1, + ACTIONS(14755), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14759), 1, + ACTIONS(14757), 1, aux_sym__simple_variable_name_token1, - STATE(6151), 1, + STATE(6146), 1, sym__expansion_max_length_binary_expression, - STATE(6130), 3, + STATE(6123), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [300431] = 7, + [301933] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, sym__concat, - ACTIONS(14761), 1, + ACTIONS(14759), 1, anon_sym_in, - ACTIONS(14765), 1, + ACTIONS(14763), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6094), 1, aux_sym_concatenation_repeat1, - ACTIONS(14763), 3, + ACTIONS(14761), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300455] = 7, + [301957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, sym__concat, - ACTIONS(14767), 1, + ACTIONS(14765), 1, anon_sym_in, - ACTIONS(14771), 1, + ACTIONS(14769), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + STATE(6094), 1, aux_sym_concatenation_repeat1, - ACTIONS(14769), 3, + ACTIONS(14767), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300479] = 7, + [301981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, + ACTIONS(1209), 1, + aux_sym_heredoc_redirect_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14771), 1, sym__concat, - ACTIONS(14773), 1, - anon_sym_in, - ACTIONS(14777), 1, - aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6096), 1, aux_sym_concatenation_repeat1, - ACTIONS(14775), 3, + ACTIONS(1207), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300503] = 7, + [302003] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14725), 1, + anon_sym_RPAREN, + ACTIONS(14727), 1, + anon_sym_DQUOTE, + ACTIONS(14733), 1, + aux_sym__expansion_regex_token1, + ACTIONS(14773), 1, + sym_raw_string, + ACTIONS(14775), 1, + anon_sym_RBRACE3, + ACTIONS(14777), 1, + sym_regex, + STATE(6097), 2, + sym_string, + aux_sym__expansion_regex_repeat1, + [302029] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7969), 1, + aux_sym_number_token1, + ACTIONS(7971), 1, + aux_sym_number_token2, + ACTIONS(14755), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14779), 1, + aux_sym__simple_variable_name_token1, + STATE(6146), 1, + sym__expansion_max_length_binary_expression, + STATE(6145), 3, + sym_number, + sym_expansion, + sym__expansion_max_length_expression, + [302053] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, ACTIONS(14668), 1, + aux_sym_concatenation_token1, + ACTIONS(14670), 1, sym__concat, - ACTIONS(14779), 1, + ACTIONS(14781), 1, anon_sym_in, - ACTIONS(14783), 1, + ACTIONS(14785), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + STATE(6094), 1, aux_sym_concatenation_repeat1, - ACTIONS(14781), 3, + ACTIONS(14783), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300527] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1298), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [300540] = 3, + [302077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1278), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 5, + ACTIONS(1276), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300555] = 3, + [302092] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 1, + ACTIONS(1308), 1, anon_sym_DOLLAR, - ACTIONS(1298), 6, + ACTIONS(1310), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300570] = 6, + [302107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14708), 1, - anon_sym_in, - ACTIONS(14712), 1, + ACTIONS(1282), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, - sym__special_character, - STATE(6121), 1, - aux_sym__literal_repeat1, - ACTIONS(14710), 3, + ACTIONS(1280), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300591] = 3, + aux_sym_concatenation_token1, + [302122] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 2, @@ -324227,21 +326146,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300606] = 2, - ACTIONS(71), 1, + [302137] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [300619] = 2, + ACTIONS(1237), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [302152] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1254), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324249,95 +326169,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300632] = 2, + [302165] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [300645] = 6, + ACTIONS(1296), 1, + anon_sym_DOLLAR, + ACTIONS(1298), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [302180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14773), 1, + ACTIONS(14688), 1, anon_sym_in, - ACTIONS(14777), 1, + ACTIONS(14692), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, + ACTIONS(14787), 1, sym__special_character, - STATE(6121), 1, + STATE(6149), 1, aux_sym__literal_repeat1, - ACTIONS(14775), 3, + ACTIONS(14690), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300666] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 1, - anon_sym_DOLLAR, - ACTIONS(1302), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [300681] = 3, + [302201] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 1, - anon_sym_DOLLAR, - ACTIONS(1306), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [300696] = 3, + ACTIONS(14791), 1, + anon_sym_COLON, + ACTIONS(14793), 1, + anon_sym_RBRACE3, + ACTIONS(14789), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [302218] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 1, + ACTIONS(1252), 1, anon_sym_DOLLAR, - ACTIONS(1302), 6, + ACTIONS(1254), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300711] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14787), 1, - sym__special_character, - STATE(6121), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [300730] = 3, + [302233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1286), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 5, + ACTIONS(1284), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300745] = 3, + [302248] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 2, @@ -324349,70 +326245,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [300775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [300790] = 3, + [302263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 2, + ACTIONS(1290), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 5, + ACTIONS(1288), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300805] = 3, + [302278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1266), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, + ACTIONS(1264), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300820] = 3, + [302293] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14792), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(14790), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [300835] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1294), 7, + ACTIONS(14795), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324420,10 +326280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300848] = 2, + [302306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14696), 1, + anon_sym_in, + ACTIONS(14700), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14787), 1, + sym__special_character, + STATE(6149), 1, + aux_sym__literal_repeat1, + ACTIONS(14698), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [302327] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14790), 7, + ACTIONS(1250), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324431,7 +326306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300861] = 3, + [302340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [302355] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1258), 2, @@ -324443,101 +326330,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300876] = 3, + [302370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 2, + ACTIONS(1270), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 5, + ACTIONS(1268), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300891] = 6, + [302385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14747), 1, + ACTIONS(14749), 1, anon_sym_in, - ACTIONS(14751), 1, + ACTIONS(14753), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, + ACTIONS(14787), 1, sym__special_character, - STATE(6121), 1, + STATE(6149), 1, aux_sym__literal_repeat1, - ACTIONS(14749), 3, + ACTIONS(14751), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300912] = 3, + [302406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 2, + ACTIONS(1314), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 5, + ACTIONS(1312), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [302421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300927] = 4, + [302436] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14796), 1, - anon_sym_COLON, - ACTIONS(14798), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(1286), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [300944] = 6, + anon_sym_COLON, + anon_sym_RBRACE3, + [302449] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 1, + anon_sym_DOLLAR, + ACTIONS(1302), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [302464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14761), 1, - anon_sym_in, - ACTIONS(14765), 1, + ACTIONS(1254), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, - sym__special_character, - STATE(6121), 1, - aux_sym__literal_repeat1, - ACTIONS(14763), 3, + ACTIONS(1252), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300965] = 3, + aux_sym_concatenation_token1, + [302479] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [302492] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14799), 1, + anon_sym_COLON, + ACTIONS(14801), 1, + anon_sym_RBRACE3, + ACTIONS(14797), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [302509] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1254), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [302522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 2, + ACTIONS(1310), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 5, + ACTIONS(1308), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300980] = 3, + [302537] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1278), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [302550] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 1, + anon_sym_DOLLAR, + ACTIONS(1254), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [302565] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 1, + anon_sym_DOLLAR, + ACTIONS(1306), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [302580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 2, + ACTIONS(1254), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 5, + ACTIONS(1252), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300995] = 2, + [302595] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14737), 1, + anon_sym_in, + ACTIONS(14741), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14787), 1, + sym__special_character, + STATE(6149), 1, + aux_sym__literal_repeat1, + ACTIONS(14739), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [302616] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1310), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324545,10 +326536,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [301008] = 2, + [302629] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(14803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14795), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [302644] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14789), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324556,3526 +326559,3490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [301021] = 3, + [302657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 2, + ACTIONS(1298), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 5, + ACTIONS(1296), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301036] = 3, + [302672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1302), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 5, + ACTIONS(1300), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301051] = 3, + [302687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 2, - sym__concat, + ACTIONS(1320), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 5, + ACTIONS(14805), 1, + sym__special_character, + STATE(6149), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [301066] = 3, + [302706] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1248), 1, anon_sym_DOLLAR, - ACTIONS(1278), 6, + ACTIONS(1250), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [301081] = 3, + [302721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1306), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 5, + ACTIONS(1304), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301096] = 3, - ACTIONS(3), 1, + [302736] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 2, + ACTIONS(14808), 1, + anon_sym_fi, + ACTIONS(14810), 1, + anon_sym_elif, + ACTIONS(14812), 1, + anon_sym_else, + STATE(7199), 1, + sym_else_clause, + STATE(6352), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [302756] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14816), 1, + anon_sym_RPAREN, + STATE(6285), 1, + aux_sym_concatenation_repeat1, + STATE(6622), 1, + aux_sym_case_item_repeat1, + ACTIONS(14818), 2, sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301111] = 4, + [302776] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14802), 1, - anon_sym_COLON, - ACTIONS(14804), 1, + ACTIONS(8562), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8564), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8566), 1, + anon_sym_BQUOTE, + ACTIONS(8568), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2738), 2, + sym_expansion, + sym_command_substitution, + [302796] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14820), 1, anon_sym_RBRACE3, - ACTIONS(14800), 5, + ACTIONS(14797), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301128] = 3, + [302810] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 1, - anon_sym_DOLLAR, - ACTIONS(1294), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [301143] = 3, - ACTIONS(3), 1, + ACTIONS(14810), 1, + anon_sym_elif, + ACTIONS(14812), 1, + anon_sym_else, + ACTIONS(14822), 1, + anon_sym_fi, + STATE(7091), 1, + sym_else_clause, + STATE(6352), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [302830] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [301158] = 3, + ACTIONS(14824), 1, + anon_sym_RBRACE3, + ACTIONS(14797), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [302844] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 1, - anon_sym_DOLLAR, - ACTIONS(1290), 6, - sym_heredoc_content, - sym_heredoc_end, + ACTIONS(8516), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(8518), 1, anon_sym_BQUOTE, + ACTIONS(8520), 1, anon_sym_DOLLAR_BQUOTE, - [301173] = 2, + ACTIONS(14826), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1709), 2, + sym_expansion, + sym_command_substitution, + [302864] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACE, + ACTIONS(14828), 1, + anon_sym_SEMI, + ACTIONS(14830), 1, + anon_sym_do, + STATE(4990), 1, + sym_compound_statement, + STATE(5000), 1, + sym_do_group, + [302886] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14800), 7, + ACTIONS(14832), 1, + anon_sym_RBRACE3, + ACTIONS(14789), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [301186] = 6, + [302900] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14814), 1, anon_sym_PIPE, - ACTIONS(14808), 1, + ACTIONS(14834), 1, anon_sym_RPAREN, - STATE(6303), 1, + STATE(6283), 1, aux_sym_concatenation_repeat1, - STATE(6614), 1, + STATE(6586), 1, aux_sym_case_item_repeat1, - ACTIONS(14810), 2, + ACTIONS(14818), 2, sym__concat, aux_sym_concatenation_token1, - [301206] = 6, + [302920] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14812), 1, - anon_sym_RPAREN, - STATE(6303), 1, - aux_sym_concatenation_repeat1, - STATE(6500), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [301226] = 6, - ACTIONS(61), 1, + ACTIONS(10720), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(10722), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(10724), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14814), 1, + ACTIONS(14836), 1, anon_sym_DOLLAR_LPAREN, - STATE(1090), 2, + STATE(1719), 2, sym_expansion, sym_command_substitution, - [301246] = 6, + [302940] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14816), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1069), 2, - sym_expansion, - sym_command_substitution, - [301266] = 6, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14838), 1, + anon_sym_RPAREN, + STATE(6283), 1, + aux_sym_concatenation_repeat1, + STATE(6561), 1, + aux_sym_case_item_repeat1, + ACTIONS(14818), 2, + sym__concat, + aux_sym_concatenation_token1, + [302960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + sym__special_character, + [302974] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9696), 1, + ACTIONS(4223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(4227), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14818), 1, + ACTIONS(14840), 1, anon_sym_DOLLAR_LPAREN, - STATE(1807), 2, + STATE(2623), 2, sym_expansion, sym_command_substitution, - [301286] = 3, + [302994] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(14820), 1, + ACTIONS(362), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(386), 1, + anon_sym_LBRACE, + ACTIONS(14842), 1, + anon_sym_SEMI, + ACTIONS(14844), 1, + anon_sym_do, + STATE(4698), 1, + sym_do_group, + STATE(4743), 1, + sym_compound_statement, + [303016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1288), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301300] = 6, + [303030] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(385), 1, + ACTIONS(14810), 1, + anon_sym_elif, + ACTIONS(14812), 1, + anon_sym_else, + ACTIONS(14846), 1, + anon_sym_fi, + STATE(7212), 1, + sym_else_clause, + STATE(6352), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [303050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14850), 1, + anon_sym_COMMA, + ACTIONS(14852), 1, + aux_sym_heredoc_redirect_token1, + STATE(4654), 1, + sym__c_terminator, + STATE(6225), 1, + aux_sym__for_body_repeat1, + ACTIONS(14848), 2, + anon_sym_SEMI, + anon_sym_AMP, + [303070] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14810), 1, + anon_sym_elif, + ACTIONS(14812), 1, + anon_sym_else, + ACTIONS(14854), 1, + anon_sym_fi, + STATE(7045), 1, + sym_else_clause, + STATE(6352), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [303090] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10322), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5375), 1, + ACTIONS(10324), 1, anon_sym_BQUOTE, - ACTIONS(14822), 1, + ACTIONS(10326), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14856), 1, anon_sym_DOLLAR_LPAREN, - STATE(2525), 2, + STATE(4625), 2, sym_expansion, sym_command_substitution, - [301320] = 3, - ACTIONS(71), 1, + [303110] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(14824), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301334] = 6, + ACTIONS(14850), 1, + anon_sym_COMMA, + ACTIONS(14860), 1, + aux_sym_heredoc_redirect_token1, + STATE(4572), 1, + sym__c_terminator, + STATE(6217), 1, + aux_sym__for_body_repeat1, + ACTIONS(14858), 2, + anon_sym_SEMI, + anon_sym_AMP, + [303130] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(8130), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4084), 1, + ACTIONS(8132), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(8134), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14826), 1, + ACTIONS(14862), 1, anon_sym_DOLLAR_LPAREN, - STATE(2511), 2, + STATE(1400), 2, sym_expansion, sym_command_substitution, - [301354] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14828), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301368] = 6, + [303150] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7518), 1, + ACTIONS(10516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(10518), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(10520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14830), 1, + ACTIONS(14864), 1, anon_sym_DOLLAR_LPAREN, - STATE(6402), 2, + STATE(1806), 2, sym_expansion, sym_command_substitution, - [301388] = 6, + [303170] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14866), 1, + anon_sym_RPAREN, + STATE(6283), 1, + aux_sym_concatenation_repeat1, + STATE(6529), 1, + aux_sym_case_item_repeat1, + ACTIONS(14818), 2, + sym__concat, + aux_sym_concatenation_token1, + [303190] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(9814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4558), 1, + ACTIONS(9816), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(9818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14832), 1, + ACTIONS(14868), 1, anon_sym_DOLLAR_LPAREN, - STATE(2601), 2, + STATE(1295), 2, sym_expansion, sym_command_substitution, - [301408] = 6, + [303210] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8386), 1, + ACTIONS(6146), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8390), 1, + ACTIONS(6150), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(6152), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14834), 1, + ACTIONS(14870), 1, anon_sym_DOLLAR_LPAREN, - STATE(4393), 2, + STATE(3448), 2, sym_expansion, sym_command_substitution, - [301428] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14836), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301442] = 6, + [303230] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8653), 1, + ACTIONS(11028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8657), 1, + ACTIONS(11030), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(11032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14838), 1, + ACTIONS(14872), 1, anon_sym_DOLLAR_LPAREN, - STATE(5144), 2, + STATE(1890), 2, sym_expansion, sym_command_substitution, - [301462] = 6, + [303250] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4645), 1, + ACTIONS(10966), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(10970), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(10972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14840), 1, + ACTIONS(14874), 1, anon_sym_DOLLAR_LPAREN, - STATE(2755), 2, + STATE(6119), 2, sym_expansion, sym_command_substitution, - [301482] = 6, + [303270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(14850), 1, anon_sym_COMMA, - ACTIONS(14846), 1, + ACTIONS(14878), 1, aux_sym_heredoc_redirect_token1, - STATE(4520), 1, + STATE(4658), 1, sym__c_terminator, - STATE(6361), 1, + STATE(6314), 1, aux_sym__for_body_repeat1, - ACTIONS(14842), 2, + ACTIONS(14876), 2, anon_sym_SEMI, anon_sym_AMP, - [301502] = 6, + [303290] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10502), 1, + ACTIONS(14810), 1, + anon_sym_elif, + ACTIONS(14812), 1, + anon_sym_else, + ACTIONS(14880), 1, + anon_sym_fi, + STATE(7062), 1, + sym_else_clause, + STATE(6352), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [303310] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5240), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(5244), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(5246), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14848), 1, + ACTIONS(14882), 1, anon_sym_DOLLAR_LPAREN, - STATE(4395), 2, + STATE(5345), 2, sym_expansion, sym_command_substitution, - [301522] = 6, + [303330] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14884), 1, + anon_sym_RPAREN, + STATE(6285), 1, + aux_sym_concatenation_repeat1, + STATE(6494), 1, + aux_sym_case_item_repeat1, + ACTIONS(14818), 2, + sym__concat, + aux_sym_concatenation_token1, + [303350] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14810), 1, + anon_sym_elif, + ACTIONS(14812), 1, + anon_sym_else, + ACTIONS(14886), 1, + anon_sym_fi, + STATE(6996), 1, + sym_else_clause, + STATE(6352), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [303370] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14888), 1, + anon_sym_SLASH, + ACTIONS(14892), 1, + anon_sym_RBRACE3, + ACTIONS(14894), 1, + sym__expansion_word, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + [303390] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9912), 1, + ACTIONS(10750), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9916), 1, + ACTIONS(10752), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(10754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14850), 1, + ACTIONS(14896), 1, anon_sym_DOLLAR_LPAREN, - STATE(2339), 2, + STATE(1408), 2, sym_expansion, sym_command_substitution, - [301542] = 3, + [303410] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301556] = 6, + ACTIONS(7686), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + ACTIONS(7690), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14898), 1, + anon_sym_DOLLAR_LPAREN, + STATE(6420), 2, + sym_expansion, + sym_command_substitution, + [303430] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(10484), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(10486), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14854), 1, + ACTIONS(14900), 1, anon_sym_DOLLAR_LPAREN, - STATE(1413), 2, + STATE(2034), 2, sym_expansion, sym_command_substitution, - [301576] = 3, + [303450] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(14902), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(14797), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301590] = 3, + [303464] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(14904), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(14789), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301604] = 3, + [303478] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14856), 1, + ACTIONS(14906), 1, anon_sym_RBRACE3, - ACTIONS(14800), 5, + ACTIONS(14797), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301618] = 7, + [303492] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(667), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(14858), 1, - anon_sym_SEMI, - ACTIONS(14860), 1, - anon_sym_do, - STATE(4963), 1, - sym_do_group, - STATE(4966), 1, - sym_compound_statement, - [301640] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14862), 1, - anon_sym_fi, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - STATE(7173), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [301660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(14870), 1, - aux_sym_heredoc_redirect_token1, - STATE(4151), 1, - sym__c_terminator, - STATE(6361), 1, - aux_sym__for_body_repeat1, - ACTIONS(14868), 2, - anon_sym_SEMI, - anon_sym_AMP, - [301680] = 6, + ACTIONS(14908), 1, + anon_sym_RBRACE3, + ACTIONS(14797), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [303506] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12313), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(9009), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(9011), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(9013), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3215), 2, + STATE(3311), 2, sym_expansion, sym_command_substitution, - [301700] = 6, + [303526] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(8158), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, + ACTIONS(8160), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14872), 1, + ACTIONS(14910), 1, anon_sym_DOLLAR_LPAREN, - STATE(4261), 2, + STATE(1421), 2, sym_expansion, sym_command_substitution, - [301720] = 6, - ACTIONS(71), 1, + [303546] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - ACTIONS(14874), 1, - anon_sym_fi, - STATE(7187), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [301740] = 6, + ACTIONS(14850), 1, + anon_sym_COMMA, + ACTIONS(14914), 1, + aux_sym_heredoc_redirect_token1, + STATE(4182), 1, + sym__c_terminator, + STATE(6314), 1, + aux_sym__for_body_repeat1, + ACTIONS(14912), 2, + anon_sym_SEMI, + anon_sym_AMP, + [303566] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8617), 1, + ACTIONS(8230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(8234), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3092), 2, + ACTIONS(14916), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4436), 2, sym_expansion, sym_command_substitution, - [301760] = 6, + [303586] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10052), 1, + ACTIONS(14908), 1, + anon_sym_RBRACE3, + ACTIONS(14797), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [303600] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14908), 1, + anon_sym_RBRACE3, + ACTIONS(14797), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [303614] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(5623), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(5625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14876), 1, + ACTIONS(14918), 1, anon_sym_DOLLAR_LPAREN, - STATE(904), 2, + STATE(5432), 2, sym_expansion, sym_command_substitution, - [301780] = 6, + [303634] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14920), 1, + anon_sym_RBRACE3, + ACTIONS(14789), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [303648] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14922), 1, + anon_sym_RBRACE3, + ACTIONS(14797), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [303662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1292), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [303676] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10306), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(8773), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(8775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14878), 1, + ACTIONS(14924), 1, anon_sym_DOLLAR_LPAREN, - STATE(1856), 2, + STATE(5186), 2, sym_expansion, sym_command_substitution, - [301800] = 6, + [303696] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10448), 1, + ACTIONS(9840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(9842), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(9844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14880), 1, + ACTIONS(14926), 1, anon_sym_DOLLAR_LPAREN, - STATE(4384), 2, + STATE(950), 2, sym_expansion, sym_command_substitution, - [301820] = 6, + [303716] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9844), 1, + ACTIONS(9982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(9984), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14882), 1, + ACTIONS(14928), 1, anon_sym_DOLLAR_LPAREN, - STATE(1758), 2, + STATE(1845), 2, sym_expansion, sym_command_substitution, - [301840] = 6, + [303736] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7844), 1, + ACTIONS(10028), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7848), 1, + ACTIONS(10030), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(10032), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14884), 1, + ACTIONS(14930), 1, anon_sym_DOLLAR_LPAREN, - STATE(2450), 2, + STATE(3381), 2, sym_expansion, sym_command_substitution, - [301860] = 6, + [303756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(14850), 1, anon_sym_COMMA, - ACTIONS(14888), 1, + ACTIONS(14934), 1, aux_sym_heredoc_redirect_token1, - STATE(4671), 1, + STATE(4179), 1, sym__c_terminator, - STATE(6227), 1, + STATE(6195), 1, aux_sym__for_body_repeat1, - ACTIONS(14886), 2, + ACTIONS(14932), 2, anon_sym_SEMI, anon_sym_AMP, - [301880] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3117), 2, - sym_expansion, - sym_command_substitution, - [301900] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14890), 1, - anon_sym_RPAREN, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - STATE(6609), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [301920] = 3, + [303776] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(14906), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(14797), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301934] = 6, + [303790] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8022), 1, + ACTIONS(12400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, - anon_sym_BQUOTE, - ACTIONS(8026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14894), 1, + ACTIONS(12402), 1, anon_sym_DOLLAR_LPAREN, - STATE(1563), 2, - sym_expansion, - sym_command_substitution, - [301954] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10334), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10338), 1, + ACTIONS(12404), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(12406), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14896), 1, - anon_sym_DOLLAR_LPAREN, - STATE(6145), 2, + STATE(3081), 2, sym_expansion, sym_command_substitution, - [301974] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(405), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(14898), 1, - anon_sym_SEMI, - ACTIONS(14900), 1, - anon_sym_do, - STATE(4720), 1, - sym_do_group, - STATE(4737), 1, - sym_compound_statement, - [301996] = 6, + [303810] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10418), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14902), 1, + ACTIONS(14936), 1, anon_sym_DOLLAR_LPAREN, - STATE(4647), 2, + STATE(507), 2, sym_expansion, sym_command_substitution, - [302016] = 6, + [303830] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9772), 1, + ACTIONS(10816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(10818), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(10820), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14904), 1, + ACTIONS(14938), 1, anon_sym_DOLLAR_LPAREN, - STATE(1025), 2, + STATE(1526), 2, sym_expansion, sym_command_substitution, - [302036] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14906), 1, - anon_sym_SLASH, - ACTIONS(14910), 1, - anon_sym_RBRACE3, - ACTIONS(14912), 1, - sym__expansion_word, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [302056] = 4, + [303850] = 4, ACTIONS(71), 1, sym_comment, - STATE(6383), 1, + STATE(6283), 1, aux_sym_concatenation_repeat1, - ACTIONS(14810), 2, + ACTIONS(14818), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1225), 3, + ACTIONS(1233), 3, anon_sym_PIPE, anon_sym_RPAREN, sym__special_character, - [302072] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14914), 1, - anon_sym_RPAREN, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - STATE(6498), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [302092] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - ACTIONS(14916), 1, - anon_sym_fi, - STATE(7430), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [302112] = 6, + [303866] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9940), 1, + ACTIONS(10050), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(10052), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(10054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14918), 1, + ACTIONS(14940), 1, anon_sym_DOLLAR_LPAREN, - STATE(1493), 2, + STATE(1773), 2, sym_expansion, sym_command_substitution, - [302132] = 6, + [303886] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8088), 1, + ACTIONS(4887), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(4889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14920), 1, + ACTIONS(14942), 1, anon_sym_DOLLAR_LPAREN, - STATE(5340), 2, + STATE(2636), 2, sym_expansion, sym_command_substitution, - [302152] = 6, + [303906] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9984), 1, + ACTIONS(10244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10246), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10248), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14922), 1, + ACTIONS(14944), 1, anon_sym_DOLLAR_LPAREN, - STATE(1152), 2, + STATE(4316), 2, sym_expansion, sym_command_substitution, - [302172] = 6, + [303926] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14814), 1, anon_sym_PIPE, - ACTIONS(14924), 1, + ACTIONS(14946), 1, anon_sym_RPAREN, - STATE(6383), 1, + STATE(6283), 1, aux_sym_concatenation_repeat1, - STATE(6518), 1, + STATE(6572), 1, aux_sym_case_item_repeat1, - ACTIONS(14810), 2, + ACTIONS(14818), 2, sym__concat, aux_sym_concatenation_token1, - [302192] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [302206] = 6, + [303946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(14850), 1, anon_sym_COMMA, - ACTIONS(14928), 1, + ACTIONS(14950), 1, aux_sym_heredoc_redirect_token1, - STATE(4660), 1, + STATE(4656), 1, sym__c_terminator, - STATE(6361), 1, + STATE(6314), 1, aux_sym__for_body_repeat1, - ACTIONS(14926), 2, + ACTIONS(14948), 2, anon_sym_SEMI, anon_sym_AMP, - [302226] = 6, + [303966] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(12598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4855), 1, + ACTIONS(12600), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12602), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(12604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14930), 1, - anon_sym_DOLLAR_LPAREN, - STATE(5204), 2, + STATE(2958), 2, sym_expansion, sym_command_substitution, - [302246] = 3, + [303986] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14932), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [302260] = 6, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14952), 1, + anon_sym_RPAREN, + STATE(6285), 1, + aux_sym_concatenation_repeat1, + STATE(6565), 1, + aux_sym_case_item_repeat1, + ACTIONS(14818), 2, + sym__concat, + aux_sym_concatenation_token1, + [304006] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(8342), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(8344), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(8346), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14934), 1, + ACTIONS(14954), 1, anon_sym_DOLLAR_LPAREN, - STATE(2796), 2, + STATE(1726), 2, sym_expansion, sym_command_substitution, - [302280] = 6, + [304026] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9734), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, - anon_sym_BQUOTE, - ACTIONS(9738), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14936), 1, + ACTIONS(14678), 1, anon_sym_DOLLAR_LPAREN, - STATE(1714), 2, - sym_expansion, - sym_command_substitution, - [302300] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2669), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2673), 1, + ACTIONS(14680), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(14682), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14938), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2272), 2, - sym_expansion, - sym_command_substitution, - [302320] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10800), 1, + ACTIONS(14755), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, - anon_sym_BQUOTE, - ACTIONS(10804), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14940), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1881), 2, + STATE(6132), 2, sym_expansion, sym_command_substitution, - [302340] = 6, + [304046] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10214), 1, + ACTIONS(10406), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(10408), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(10410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14942), 1, + ACTIONS(14956), 1, anon_sym_DOLLAR_LPAREN, - STATE(4484), 2, + STATE(4510), 2, sym_expansion, sym_command_substitution, - [302360] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5107), 1, + [304066] = 6, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5111), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14944), 1, - anon_sym_DOLLAR_LPAREN, - STATE(5260), 2, - sym_expansion, - sym_command_substitution, - [302380] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9884), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, - anon_sym_BQUOTE, - ACTIONS(9888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14946), 1, + ACTIONS(14958), 1, anon_sym_DOLLAR_LPAREN, - STATE(3329), 2, + STATE(1184), 2, sym_expansion, sym_command_substitution, - [302400] = 3, + [304086] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(14960), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(14789), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [302414] = 6, + [304100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14850), 1, + anon_sym_COMMA, + ACTIONS(14964), 1, + aux_sym_heredoc_redirect_token1, + STATE(4599), 1, + sym__c_terminator, + STATE(6314), 1, + aux_sym__for_body_repeat1, + ACTIONS(14962), 2, + anon_sym_SEMI, + anon_sym_AMP, + [304120] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9796), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, - anon_sym_BQUOTE, - ACTIONS(9800), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14948), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4747), 2, - sym_expansion, - sym_command_substitution, - [302434] = 7, + ACTIONS(14906), 1, + anon_sym_RBRACE3, + ACTIONS(14797), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [304134] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(147), 1, anon_sym_LPAREN_LPAREN, ACTIONS(163), 1, anon_sym_LBRACE, - ACTIONS(14950), 1, + ACTIONS(14966), 1, anon_sym_SEMI, - ACTIONS(14952), 1, + ACTIONS(14968), 1, anon_sym_do, STATE(5536), 1, sym_do_group, - STATE(5544), 1, + STATE(5541), 1, sym_compound_statement, - [302456] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - ACTIONS(14954), 1, - anon_sym_fi, - STATE(6803), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [302476] = 6, + [304156] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9638), 1, + ACTIONS(8404), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(8408), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14956), 1, + ACTIONS(14970), 1, anon_sym_DOLLAR_LPAREN, - STATE(1388), 2, + STATE(5371), 2, sym_expansion, sym_command_substitution, - [302496] = 6, + [304176] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8426), 1, + ACTIONS(10434), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(10436), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10438), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2745), 2, - sym_expansion, - sym_command_substitution, - [302516] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - ACTIONS(14958), 1, - anon_sym_fi, - STATE(7014), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [302536] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14960), 1, - anon_sym_RPAREN, - STATE(6303), 1, - aux_sym_concatenation_repeat1, - STATE(6458), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [302556] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14962), 1, - anon_sym_SLASH, - ACTIONS(14964), 1, - anon_sym_RBRACE3, - ACTIONS(14966), 1, - sym__expansion_word, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [302576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1264), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [302590] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(14972), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, - anon_sym_BQUOTE, - ACTIONS(12481), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2882), 2, + STATE(4239), 2, sym_expansion, sym_command_substitution, - [302610] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(14970), 1, - aux_sym_heredoc_redirect_token1, - STATE(4563), 1, - sym__c_terminator, - STATE(6361), 1, - aux_sym__for_body_repeat1, - ACTIONS(14968), 2, - anon_sym_SEMI, - anon_sym_AMP, - [302630] = 6, + [304196] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10378), 1, + ACTIONS(12195), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(12197), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12199), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(12201), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14972), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1540), 2, + STATE(3171), 2, sym_expansion, sym_command_substitution, - [302650] = 6, + [304216] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(14810), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(14812), 1, anon_sym_else, ACTIONS(14974), 1, anon_sym_fi, - STATE(6734), 1, + STATE(6832), 1, sym_else_clause, - STATE(6335), 2, + STATE(6352), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [302670] = 6, + [304236] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7882), 1, + ACTIONS(10690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7886), 1, + ACTIONS(10692), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(10694), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(14976), 1, anon_sym_DOLLAR_LPAREN, - STATE(1650), 2, + STATE(1521), 2, sym_expansion, sym_command_substitution, - [302690] = 6, + [304256] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10246), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, - anon_sym_BQUOTE, - ACTIONS(10250), 1, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(14814), 1, + anon_sym_PIPE, ACTIONS(14978), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4248), 2, - sym_expansion, - sym_command_substitution, - [302710] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14980), 1, - anon_sym_SLASH, - ACTIONS(14982), 1, - anon_sym_RBRACE3, - ACTIONS(14984), 1, - sym__expansion_word, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + anon_sym_RPAREN, + STATE(6285), 1, + aux_sym_concatenation_repeat1, + STATE(6535), 1, + aux_sym_case_item_repeat1, + ACTIONS(14818), 2, sym__concat, aux_sym_concatenation_token1, - [302730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - sym__special_character, - [302744] = 6, + [304276] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10614), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, - anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(1121), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14986), 1, + ACTIONS(5940), 1, + anon_sym_BQUOTE, + ACTIONS(14980), 1, anon_sym_DOLLAR_LPAREN, - STATE(5546), 2, + STATE(2316), 2, sym_expansion, sym_command_substitution, - [302764] = 6, + [304296] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1121), 1, + ACTIONS(9788), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(9790), 1, anon_sym_BQUOTE, - ACTIONS(14988), 1, + ACTIONS(9792), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14982), 1, anon_sym_DOLLAR_LPAREN, - STATE(2236), 2, + STATE(1096), 2, sym_expansion, sym_command_substitution, - [302784] = 6, + [304316] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10528), 1, + ACTIONS(14984), 1, + anon_sym_RBRACE3, + ACTIONS(14789), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [304330] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5087), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5091), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5093), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14990), 1, + ACTIONS(14986), 1, anon_sym_DOLLAR_LPAREN, - STATE(4177), 2, + STATE(2763), 2, sym_expansion, sym_command_substitution, - [302804] = 6, + [304350] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8585), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3177), 2, + ACTIONS(14988), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2000), 2, sym_expansion, sym_command_substitution, - [302824] = 6, + [304370] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8130), 1, + ACTIONS(10384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8134), 1, + ACTIONS(10386), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(10388), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14992), 1, + ACTIONS(14990), 1, anon_sym_DOLLAR_LPAREN, - STATE(1168), 2, + STATE(4469), 2, sym_expansion, sym_command_substitution, - [302844] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14994), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [302858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(14998), 1, - aux_sym_heredoc_redirect_token1, - STATE(4623), 1, - sym__c_terminator, - STATE(6206), 1, - aux_sym__for_body_repeat1, - ACTIONS(14996), 2, - anon_sym_SEMI, - anon_sym_AMP, - [302878] = 6, + [304390] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5335), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5339), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15000), 1, + ACTIONS(14992), 1, anon_sym_DOLLAR_LPAREN, - STATE(5450), 2, + STATE(1151), 2, sym_expansion, sym_command_substitution, - [302898] = 6, + [304410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(15004), 1, - aux_sym_heredoc_redirect_token1, - STATE(4644), 1, - sym__c_terminator, - STATE(6168), 1, - aux_sym__for_body_repeat1, - ACTIONS(15002), 2, - anon_sym_SEMI, - anon_sym_AMP, - [302918] = 6, + ACTIONS(1282), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1280), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [304424] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(717), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(721), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15006), 1, + ACTIONS(14994), 1, anon_sym_DOLLAR_LPAREN, - STATE(914), 2, + STATE(872), 2, sym_expansion, sym_command_substitution, - [302938] = 6, + [304444] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(123), 1, + ACTIONS(8286), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, + ACTIONS(8288), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(8290), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15008), 1, + ACTIONS(14996), 1, anon_sym_DOLLAR_LPAREN, - STATE(477), 2, + STATE(1645), 2, sym_expansion, sym_command_substitution, - [302958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1248), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [302972] = 6, + [304464] = 6, ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15010), 1, - anon_sym_RPAREN, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - STATE(6575), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [302992] = 6, + sym_comment, + ACTIONS(4934), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4938), 1, + anon_sym_BQUOTE, + ACTIONS(4940), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14998), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5194), 2, + sym_expansion, + sym_command_substitution, + [304484] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(14810), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(14812), 1, anon_sym_else, - ACTIONS(15012), 1, + ACTIONS(15000), 1, anon_sym_fi, - STATE(7030), 1, + STATE(6849), 1, sym_else_clause, - STATE(6335), 2, + STATE(6352), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [303012] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15014), 1, - anon_sym_RPAREN, - STATE(6303), 1, - aux_sym_concatenation_repeat1, - STATE(6490), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [303032] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15016), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [303046] = 6, + [304504] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14678), 1, + ACTIONS(4818), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4822), 1, anon_sym_BQUOTE, - ACTIONS(14680), 1, + ACTIONS(4824), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14704), 1, - anon_sym_DOLLAR_LBRACE, - STATE(6140), 2, + ACTIONS(15002), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2778), 2, sym_expansion, sym_command_substitution, - [303066] = 6, + [304524] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8274), 1, + ACTIONS(10186), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(10188), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(10190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15018), 1, + ACTIONS(15004), 1, anon_sym_DOLLAR_LPAREN, - STATE(1333), 2, + STATE(4483), 2, sym_expansion, sym_command_substitution, - [303086] = 6, + [304544] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(8721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5236), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8725), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15020), 1, - anon_sym_DOLLAR_LPAREN, - STATE(5290), 2, + STATE(3256), 2, sym_expansion, sym_command_substitution, - [303106] = 3, + [304564] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15022), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [303120] = 6, + ACTIONS(727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5555), 1, + anon_sym_BQUOTE, + ACTIONS(15006), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2601), 2, + sym_expansion, + sym_command_substitution, + [304584] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8316), 1, + ACTIONS(4350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8320), 1, + ACTIONS(4354), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(4356), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15024), 1, + ACTIONS(15008), 1, anon_sym_DOLLAR_LPAREN, - STATE(1495), 2, + STATE(2365), 2, sym_expansion, sym_command_substitution, - [303140] = 6, + [304604] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(5415), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, + ACTIONS(5419), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(5421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15026), 1, + ACTIONS(15010), 1, anon_sym_DOLLAR_LPAREN, - STATE(812), 2, + STATE(5281), 2, sym_expansion, sym_command_substitution, - [303160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1256), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [303174] = 6, + [304624] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8204), 1, + ACTIONS(10072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8208), 1, + ACTIONS(10074), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(10076), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15028), 1, + ACTIONS(15012), 1, anon_sym_DOLLAR_LPAREN, - STATE(4241), 2, + STATE(5577), 2, sym_expansion, sym_command_substitution, - [303194] = 6, + [304644] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8170), 1, + ACTIONS(10846), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(10848), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(10850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15030), 1, + ACTIONS(15014), 1, anon_sym_DOLLAR_LPAREN, - STATE(1173), 2, + STATE(1866), 2, sym_expansion, sym_command_substitution, - [303214] = 6, + [304664] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9716), 1, + ACTIONS(9866), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(9868), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(9870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15032), 1, + ACTIONS(15016), 1, anon_sym_DOLLAR_LPAREN, - STATE(2021), 2, + STATE(4947), 2, sym_expansion, sym_command_substitution, - [303234] = 6, + [304684] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(674), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(678), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(680), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15034), 1, + ACTIONS(15018), 1, anon_sym_DOLLAR_LPAREN, - STATE(1985), 2, + STATE(960), 2, sym_expansion, sym_command_substitution, - [303254] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15036), 1, - anon_sym_SEMI, - ACTIONS(15038), 1, - anon_sym_do, - STATE(4930), 1, - sym_do_group, - STATE(4934), 1, - sym_compound_statement, - [303276] = 6, + [304704] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(10350), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(10352), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(10354), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15040), 1, + ACTIONS(15020), 1, anon_sym_DOLLAR_LPAREN, - STATE(1262), 2, + STATE(2007), 2, sym_expansion, sym_command_substitution, - [303296] = 6, + [304724] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8242), 1, + ACTIONS(2858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8246), 1, + ACTIONS(2862), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15042), 1, + ACTIONS(15022), 1, anon_sym_DOLLAR_LPAREN, - STATE(1439), 2, + STATE(2297), 2, sym_expansion, sym_command_substitution, - [303316] = 6, + [304744] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7990), 1, + ACTIONS(8314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7994), 1, + ACTIONS(8316), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(8318), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15044), 1, + ACTIONS(15024), 1, anon_sym_DOLLAR_LPAREN, - STATE(3406), 2, + STATE(1629), 2, sym_expansion, sym_command_substitution, - [303336] = 3, + [304764] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15046), 1, + ACTIONS(15026), 1, anon_sym_RBRACE3, - ACTIONS(14800), 5, + ACTIONS(14789), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [303350] = 6, + [304778] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9752), 1, + ACTIONS(10888), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(10890), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(10892), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15048), 1, + ACTIONS(15028), 1, anon_sym_DOLLAR_LPAREN, - STATE(1554), 2, + STATE(1553), 2, sym_expansion, sym_command_substitution, - [303370] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(15052), 1, - aux_sym_heredoc_redirect_token1, - STATE(4154), 1, - sym__c_terminator, - STATE(6178), 1, - aux_sym__for_body_repeat1, - ACTIONS(15050), 2, - anon_sym_SEMI, - anon_sym_AMP, - [303390] = 6, + [304798] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9814), 1, + ACTIONS(4477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(4481), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(4483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15054), 1, + ACTIONS(15030), 1, anon_sym_DOLLAR_LPAREN, - STATE(2008), 2, + STATE(2526), 2, sym_expansion, sym_command_substitution, - [303410] = 6, + [304818] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15032), 1, + anon_sym_SLASH, + ACTIONS(15034), 1, + anon_sym_RBRACE3, + ACTIONS(15036), 1, + sym__expansion_word, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + [304838] = 7, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15038), 1, + anon_sym_SEMI, + ACTIONS(15040), 1, + anon_sym_do, + STATE(4902), 1, + sym_do_group, + STATE(4928), 1, + sym_compound_statement, + [304860] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(8064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(8066), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(8068), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15056), 1, + ACTIONS(15042), 1, anon_sym_DOLLAR_LPAREN, - STATE(1633), 2, + STATE(1336), 2, sym_expansion, sym_command_substitution, - [303430] = 6, + [304880] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - ACTIONS(15058), 1, - anon_sym_fi, - STATE(6820), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [303450] = 6, + ACTIONS(4527), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4531), 1, + anon_sym_BQUOTE, + ACTIONS(4533), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15044), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2538), 2, + sym_expansion, + sym_command_substitution, + [304900] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4339), 1, + ACTIONS(8192), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4343), 1, + ACTIONS(8196), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(8198), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15060), 1, + ACTIONS(15046), 1, anon_sym_DOLLAR_LPAREN, - STATE(2463), 2, + STATE(4319), 2, sym_expansion, sym_command_substitution, - [303470] = 3, + [304920] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15048), 1, + anon_sym_SLASH, + ACTIONS(15050), 1, + anon_sym_RBRACE3, + ACTIONS(15052), 1, + sym__expansion_word, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + [304940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15064), 2, + ACTIONS(15056), 2, sym_regex, aux_sym__expansion_regex_token1, - ACTIONS(15062), 4, + ACTIONS(15054), 4, anon_sym_RPAREN, anon_sym_DQUOTE, sym_raw_string, anon_sym_RBRACE3, - [303484] = 6, + [304954] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8456), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8458), 1, + anon_sym_BQUOTE, + ACTIONS(8460), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15058), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1326), 2, + sym_expansion, + sym_command_substitution, + [304974] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9914), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9916), 1, + anon_sym_BQUOTE, + ACTIONS(9918), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15060), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1247), 2, + sym_expansion, + sym_command_substitution, + [304994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14850), 1, + anon_sym_COMMA, + ACTIONS(15064), 1, + aux_sym_heredoc_redirect_token1, + STATE(4648), 1, + sym__c_terminator, + STATE(6180), 1, + aux_sym__for_body_repeat1, + ACTIONS(15062), 2, + anon_sym_SEMI, + anon_sym_AMP, + [305014] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5332), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(5334), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(15066), 1, anon_sym_DOLLAR_LPAREN, - STATE(2860), 2, + STATE(2892), 2, sym_expansion, sym_command_substitution, - [303504] = 6, + [305034] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(203), 1, + ACTIONS(8098), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(8102), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(15068), 1, anon_sym_DOLLAR_LPAREN, - STATE(506), 2, + STATE(4257), 2, sym_expansion, sym_command_substitution, - [303524] = 5, + [305054] = 6, ACTIONS(71), 1, sym_comment, + ACTIONS(123), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(127), 1, + anon_sym_BQUOTE, + ACTIONS(129), 1, + anon_sym_DOLLAR_BQUOTE, ACTIONS(15070), 1, - anon_sym_SLASH, + anon_sym_DOLLAR_LPAREN, + STATE(479), 2, + sym_expansion, + sym_command_substitution, + [305074] = 5, + ACTIONS(71), 1, + sym_comment, ACTIONS(15072), 1, + anon_sym_SLASH, + ACTIONS(15074), 1, anon_sym_RBRACE3, - STATE(6309), 1, + STATE(6282), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(14890), 2, sym__concat, aux_sym_concatenation_token1, - [303541] = 3, + [305091] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15074), 1, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14866), 1, + anon_sym_RPAREN, + ACTIONS(15076), 1, + sym__special_character, + STATE(6418), 1, + aux_sym__literal_repeat1, + STATE(6538), 1, + aux_sym_case_item_repeat1, + [305110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15078), 1, + anon_sym_in, + ACTIONS(15082), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15080), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [305125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14765), 1, + anon_sym_in, + ACTIONS(14769), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14767), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [305140] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15084), 1, + anon_sym_SLASH, + ACTIONS(15086), 1, + anon_sym_RBRACE3, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, sym__concat, - ACTIONS(6651), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + aux_sym_concatenation_token1, + [305157] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15048), 1, + anon_sym_SLASH, + ACTIONS(15050), 1, anon_sym_RBRACE3, - [303554] = 4, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + [305174] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(15088), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6309), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303569] = 6, + [305189] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + STATE(6331), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(15090), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [305204] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14818), 1, + aux_sym_concatenation_token1, + ACTIONS(15092), 1, + sym__concat, + STATE(6287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, anon_sym_PIPE, - ACTIONS(14890), 1, anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6622), 1, - aux_sym_case_item_repeat1, - [303588] = 5, + [305221] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(15094), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - STATE(7267), 1, + STATE(6705), 1, sym_heredoc_body, - STATE(4962), 2, + STATE(4822), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303605] = 5, + [305238] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(4990), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303622] = 5, + ACTIONS(14818), 1, + aux_sym_concatenation_token1, + ACTIONS(15098), 1, + sym__concat, + STATE(6287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [305255] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(5013), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303639] = 6, + ACTIONS(15100), 1, + sym__concat, + ACTIONS(6898), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [305268] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(4944), 1, - sym__heredoc_body, - STATE(4948), 1, - sym__simple_heredoc_body, - STATE(7267), 1, - sym_heredoc_body, - [303658] = 6, + STATE(6287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1237), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(15102), 2, + sym__concat, + aux_sym_concatenation_token1, + [305283] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(4955), 1, - sym__heredoc_body, - STATE(4959), 1, - sym__simple_heredoc_body, - STATE(7267), 1, - sym_heredoc_body, - [303677] = 5, + ACTIONS(15105), 1, + sym__concat, + ACTIONS(6904), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [305296] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(4967), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303694] = 5, - ACTIONS(71), 1, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + STATE(6309), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [305311] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(4977), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303711] = 6, + ACTIONS(15109), 1, + anon_sym_in, + ACTIONS(15113), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15111), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [305326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14759), 1, + anon_sym_in, + ACTIONS(14763), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14761), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [305341] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(15094), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - STATE(4941), 1, + STATE(6705), 1, + sym_heredoc_body, + STATE(4836), 2, sym__heredoc_body, - STATE(4985), 1, sym__simple_heredoc_body, - STATE(7267), 1, - sym_heredoc_body, - [303730] = 6, + [305358] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(15094), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - STATE(4986), 1, + STATE(4717), 1, sym__heredoc_body, - STATE(4994), 1, + STATE(4929), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(6705), 1, sym_heredoc_body, - [303749] = 5, + [305377] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(4998), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303766] = 6, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + STATE(6309), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [305392] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(15094), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - STATE(5002), 1, + STATE(4693), 1, sym__heredoc_body, - STATE(5015), 1, + STATE(4748), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(6705), 1, sym_heredoc_body, - [303785] = 6, + [305411] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(15094), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - STATE(4942), 1, - sym__simple_heredoc_body, - STATE(4981), 1, - sym__heredoc_body, - STATE(7267), 1, + STATE(6705), 1, sym_heredoc_body, - [303804] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5478), 1, + STATE(4781), 2, sym__heredoc_body, - STATE(5479), 1, sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [303823] = 5, + [305428] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15086), 1, - anon_sym_SLASH, ACTIONS(15088), 1, anon_sym_RBRACE3, STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [303840] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - STATE(5562), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303857] = 4, + aux_sym__expansion_body_repeat1, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [305443] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(15115), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6309), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303872] = 4, + [305458] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(8370), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6308), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303887] = 4, + [305473] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(15117), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6309), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303902] = 5, + [305488] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(15094), 1, sym_simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - STATE(5455), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303919] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5480), 1, - sym__heredoc_body, - STATE(5481), 1, - sym__simple_heredoc_body, - STATE(6814), 1, + STATE(6705), 1, sym_heredoc_body, - [303938] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5487), 1, + STATE(4856), 2, sym__heredoc_body, - STATE(5488), 1, sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [303957] = 6, - ACTIONS(71), 1, + [305505] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(405), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(14900), 1, - anon_sym_do, - STATE(4771), 1, - sym_do_group, - STATE(4893), 1, - sym_compound_statement, - [303976] = 4, + ACTIONS(15119), 1, + anon_sym_in, + ACTIONS(15123), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15121), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [305520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14779), 1, + ACTIONS(14781), 1, anon_sym_in, - ACTIONS(14783), 1, + ACTIONS(14785), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14781), 3, + ACTIONS(14783), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [303991] = 5, - ACTIONS(71), 1, + [305535] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - STATE(5459), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304008] = 5, + ACTIONS(14743), 1, + anon_sym_in, + ACTIONS(14747), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14745), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [305550] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - aux_sym_concatenation_token1, - ACTIONS(15094), 1, - sym__concat, - STATE(6324), 1, + STATE(6283), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(14818), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(15125), 2, anon_sym_PIPE, anon_sym_RPAREN, - [304025] = 2, + [305565] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 5, + STATE(6285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14818), 2, sym__concat, - sym__expansion_word, - anon_sym_SLASH, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [304036] = 4, + ACTIONS(15127), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [305580] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15129), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(14803), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [305593] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7740), 1, + ACTIONS(15107), 1, anon_sym_RBRACE3, - STATE(6294), 1, + STATE(6309), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304051] = 3, + [305608] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15096), 1, - sym__concat, - ACTIONS(6703), 4, + ACTIONS(15131), 1, + anon_sym_RBRACE3, + STATE(6309), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(15133), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [304064] = 6, + [305623] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14814), 1, anon_sym_PIPE, - ACTIONS(14914), 1, + ACTIONS(14838), 1, anon_sym_RPAREN, - ACTIONS(15078), 1, + ACTIONS(15076), 1, sym__special_character, - STATE(6394), 1, + STATE(6418), 1, aux_sym__literal_repeat1, - STATE(6502), 1, + STATE(6570), 1, aux_sym_case_item_repeat1, - [304083] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(147), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5535), 1, - sym_do_group, - STATE(5537), 1, - sym_compound_statement, - [304102] = 4, + [305642] = 5, ACTIONS(71), 1, sym_comment, - STATE(6314), 1, + ACTIONS(15136), 1, + anon_sym_SLASH, + ACTIONS(15138), 1, + anon_sym_RBRACE3, + STATE(6282), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(14890), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(15098), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [304117] = 5, + [305659] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15100), 1, + ACTIONS(15032), 1, anon_sym_SLASH, - ACTIONS(15102), 1, + ACTIONS(15034), 1, anon_sym_RBRACE3, - STATE(6309), 1, + STATE(6282), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(14890), 2, sym__concat, aux_sym_concatenation_token1, - [304134] = 4, + [305676] = 6, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15040), 1, + anon_sym_do, + STATE(4860), 1, + sym_do_group, + STATE(4861), 1, + sym_compound_statement, + [305695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15142), 1, + anon_sym_COMMA, + ACTIONS(15145), 1, + aux_sym_heredoc_redirect_token1, + STATE(6314), 1, + aux_sym__for_body_repeat1, + ACTIONS(15140), 2, + anon_sym_SEMI, + anon_sym_AMP, + [305712] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15104), 1, + ACTIONS(8023), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6297), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304149] = 5, + [305727] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14980), 1, - anon_sym_SLASH, - ACTIONS(14982), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(15147), 1, sym__concat, - aux_sym_concatenation_token1, - [304166] = 4, + ACTIONS(6918), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [305740] = 5, ACTIONS(71), 1, sym_comment, - STATE(6303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(15106), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [304181] = 4, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + STATE(5519), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [305757] = 6, ACTIONS(71), 1, sym_comment, - STATE(6314), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(15108), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(15110), 2, - sym__concat, - aux_sym_concatenation_token1, - [304196] = 5, + ACTIONS(147), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(163), 1, + anon_sym_LBRACE, + ACTIONS(14968), 1, + anon_sym_do, + STATE(5591), 1, + sym_do_group, + STATE(5593), 1, + sym_compound_statement, + [305776] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14962), 1, - anon_sym_SLASH, - ACTIONS(14964), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [304213] = 2, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + STATE(5468), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [305793] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [304224] = 4, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + STATE(5478), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [305810] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [304239] = 4, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(5481), 1, + sym__heredoc_body, + STATE(5482), 1, + sym__simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + [305829] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [304254] = 5, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(5484), 1, + sym__heredoc_body, + STATE(5485), 1, + sym__simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + [305848] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15149), 1, sym_simple_heredoc_body, - STATE(6932), 1, + STATE(6844), 1, + sym_heredoc_body, + STATE(5486), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [305865] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + STATE(5488), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [305882] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(5491), 1, + sym__heredoc_body, + STATE(5492), 1, + sym__simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + [305901] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(6844), 1, + sym_heredoc_body, + STATE(5528), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [305918] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(5494), 1, + sym__heredoc_body, + STATE(5495), 1, + sym__simple_heredoc_body, + STATE(6844), 1, sym_heredoc_body, - STATE(4919), 2, + [305937] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15149), 1, + sym_simple_heredoc_body, + STATE(5497), 1, sym__heredoc_body, + STATE(5498), 1, sym__simple_heredoc_body, - [304271] = 4, + STATE(6844), 1, + sym_heredoc_body, + [305956] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15151), 1, + sym__concat, + ACTIONS(6924), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [305969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15119), 1, + ACTIONS(15153), 1, anon_sym_in, - ACTIONS(15123), 1, + ACTIONS(15157), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(15121), 3, + ACTIONS(15155), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [304286] = 5, + [305984] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, + STATE(6331), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(15159), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(15161), 2, + sym__concat, + aux_sym_concatenation_token1, + [305999] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15094), 1, sym_simple_heredoc_body, - STATE(7181), 1, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + STATE(6705), 1, sym_heredoc_body, - STATE(4861), 2, + STATE(4736), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304303] = 5, + [306016] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15094), 1, + sym_simple_heredoc_body, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + STATE(4803), 1, + sym__heredoc_body, + STATE(4843), 1, + sym__simple_heredoc_body, + STATE(6705), 1, + sym_heredoc_body, + [306035] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15094), 1, sym_simple_heredoc_body, - STATE(6932), 1, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + STATE(4715), 1, + sym__heredoc_body, + STATE(4757), 1, + sym__simple_heredoc_body, + STATE(6705), 1, + sym_heredoc_body, + [306054] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15094), 1, + sym_simple_heredoc_body, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + STATE(6705), 1, sym_heredoc_body, - STATE(4746), 2, + STATE(4735), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304320] = 3, + [306071] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15127), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(14792), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [304333] = 4, + ACTIONS(15115), 1, + anon_sym_RBRACE3, + STATE(6309), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8035), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [306086] = 6, ACTIONS(71), 1, sym_comment, - STATE(6324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(15129), 2, - sym__concat, - aux_sym_concatenation_token1, - [304348] = 2, + ACTIONS(15094), 1, + sym_simple_heredoc_body, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + STATE(4747), 1, + sym__heredoc_body, + STATE(4775), 1, + sym__simple_heredoc_body, + STATE(6705), 1, + sym_heredoc_body, + [306105] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [304359] = 6, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15164), 1, + sym_simple_heredoc_body, + STATE(7056), 1, + sym_heredoc_body, + STATE(5532), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [306122] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(667), 1, + ACTIONS(362), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(685), 1, + ACTIONS(386), 1, anon_sym_LBRACE, - ACTIONS(14860), 1, + ACTIONS(14844), 1, anon_sym_do, - STATE(4995), 1, + STATE(4705), 1, sym_do_group, - STATE(4996), 1, + STATE(4759), 1, sym_compound_statement, - [304378] = 4, - ACTIONS(3), 1, + [306141] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(15132), 1, - anon_sym_in, - ACTIONS(15136), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15134), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [304393] = 5, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15164), 1, + sym_simple_heredoc_body, + STATE(7056), 1, + sym_heredoc_body, + STATE(5579), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [306158] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15164), 1, sym_simple_heredoc_body, - STATE(6932), 1, + STATE(7056), 1, sym_heredoc_body, - STATE(4843), 2, + STATE(5596), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304410] = 6, + [306175] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15164), 1, sym_simple_heredoc_body, - STATE(4849), 1, + STATE(5569), 1, sym__heredoc_body, - STATE(4888), 1, + STATE(5592), 1, sym__simple_heredoc_body, - STATE(6932), 1, + STATE(7056), 1, sym_heredoc_body, - [304429] = 5, + [306194] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15164), 1, + sym_simple_heredoc_body, + STATE(5599), 1, + sym__heredoc_body, + STATE(5609), 1, + sym__simple_heredoc_body, + STATE(7056), 1, + sym_heredoc_body, + [306213] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15164), 1, sym_simple_heredoc_body, - STATE(7181), 1, + STATE(7056), 1, sym_heredoc_body, - STATE(4674), 2, + STATE(5535), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304446] = 4, - ACTIONS(3), 1, + [306230] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(14753), 1, - anon_sym_in, - ACTIONS(14757), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14755), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [304461] = 6, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15164), 1, + sym_simple_heredoc_body, + STATE(7056), 1, + sym_heredoc_body, + STATE(5564), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [306247] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15164), 1, sym_simple_heredoc_body, - STATE(4936), 1, + STATE(5539), 1, + sym__simple_heredoc_body, + STATE(5574), 1, sym__heredoc_body, - STATE(4938), 1, + STATE(7056), 1, + sym_heredoc_body, + [306266] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15164), 1, + sym_simple_heredoc_body, + STATE(5548), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(5551), 1, + sym__heredoc_body, + STATE(7056), 1, sym_heredoc_body, - [304480] = 6, + [306285] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15164), 1, sym_simple_heredoc_body, - STATE(4705), 1, + STATE(7056), 1, + sym_heredoc_body, + STATE(5549), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [306302] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15164), 1, + sym_simple_heredoc_body, + STATE(5552), 1, sym__heredoc_body, - STATE(4708), 1, + STATE(5554), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(7056), 1, sym_heredoc_body, - [304499] = 3, + [306321] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15138), 1, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15164), 1, + sym_simple_heredoc_body, + STATE(5555), 1, + sym__heredoc_body, + STATE(5576), 1, + sym__simple_heredoc_body, + STATE(7056), 1, + sym_heredoc_body, + [306340] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1254), 5, sym__concat, - ACTIONS(6673), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [304512] = 4, + [306351] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15142), 1, + ACTIONS(15168), 1, anon_sym_elif, - ACTIONS(15140), 2, + ACTIONS(15166), 2, anon_sym_fi, anon_sym_else, - STATE(6335), 2, + STATE(6352), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [304527] = 5, + [306366] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14834), 1, + anon_sym_RPAREN, + ACTIONS(15076), 1, + sym__special_character, + STATE(6418), 1, + aux_sym__literal_repeat1, + STATE(6589), 1, + aux_sym_case_item_repeat1, + [306385] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [306396] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1254), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [306407] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14946), 1, + anon_sym_RPAREN, + ACTIONS(15076), 1, + sym__special_character, + STATE(6418), 1, + aux_sym__literal_repeat1, + STATE(6596), 1, + aux_sym_case_item_repeat1, + [306426] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + ACTIONS(15171), 1, + sym_simple_heredoc_body, + STATE(7207), 1, + sym_heredoc_body, + STATE(4730), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [306443] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(642), 1, + anon_sym_LBRACE, + ACTIONS(14830), 1, + anon_sym_do, + STATE(4959), 1, + sym_do_group, + STATE(4992), 1, + sym_compound_statement, + [306462] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(7181), 1, + STATE(7207), 1, sym_heredoc_body, - STATE(4788), 2, + STATE(4787), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304544] = 5, + [306479] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(7181), 1, + STATE(7207), 1, sym_heredoc_body, - STATE(4732), 2, + STATE(4793), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304561] = 6, + [306496] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(4780), 1, + STATE(4795), 1, sym__heredoc_body, - STATE(4800), 1, + STATE(4796), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(7207), 1, sym_heredoc_body, - [304580] = 6, + [306515] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(4801), 1, + STATE(4798), 1, sym__heredoc_body, - STATE(4820), 1, + STATE(4799), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(7207), 1, sym_heredoc_body, - [304599] = 5, + [306534] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(7181), 1, + STATE(7207), 1, sym_heredoc_body, - STATE(4827), 2, + STATE(4800), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304616] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8288), 1, - anon_sym_RBRACE3, - STATE(6296), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [304631] = 6, + [306551] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(4828), 1, + STATE(7207), 1, + sym_heredoc_body, + STATE(4802), 2, sym__heredoc_body, - STATE(4831), 1, sym__simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - [304650] = 6, + [306568] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(4852), 1, + STATE(4820), 1, sym__heredoc_body, - STATE(4862), 1, + STATE(4821), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(7207), 1, sym_heredoc_body, - [304669] = 6, + [306587] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(4922), 1, + STATE(4827), 1, sym__heredoc_body, - STATE(4932), 1, + STATE(4828), 1, sym__simple_heredoc_body, - STATE(6932), 1, + STATE(7207), 1, sym_heredoc_body, - [304688] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [304703] = 6, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, + [306606] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15038), 1, - anon_sym_do, - STATE(4685), 1, - sym_do_group, - STATE(4687), 1, - sym_compound_statement, - [304722] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14924), 1, - anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6511), 1, - aux_sym_case_item_repeat1, - [304741] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(7207), 1, sym_heredoc_body, - STATE(5565), 2, + STATE(4829), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304758] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [304773] = 5, + [306623] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - STATE(4713), 2, + STATE(4830), 1, sym__heredoc_body, + STATE(4831), 1, sym__simple_heredoc_body, - [304790] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(7024), 1, + STATE(7207), 1, sym_heredoc_body, - STATE(5586), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304807] = 5, + [306642] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15171), 1, sym_simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - STATE(4681), 2, + STATE(4839), 1, sym__heredoc_body, + STATE(4840), 1, sym__simple_heredoc_body, - [304824] = 6, + STATE(7207), 1, + sym_heredoc_body, + [306661] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(5588), 1, - sym__heredoc_body, - STATE(5605), 1, - sym__simple_heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - [304843] = 6, + ACTIONS(14888), 1, + anon_sym_SLASH, + ACTIONS(14892), 1, + anon_sym_RBRACE3, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + [306678] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(5547), 1, - sym__simple_heredoc_body, - STATE(5553), 1, - sym__heredoc_body, - STATE(7024), 1, + STATE(7302), 1, sym_heredoc_body, - [304862] = 5, + STATE(4975), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [306695] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(7302), 1, sym_heredoc_body, - STATE(5551), 2, + STATE(5003), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304879] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15010), 1, - anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6617), 1, - aux_sym_case_item_repeat1, - [304898] = 5, + [306712] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(7302), 1, sym_heredoc_body, - STATE(5573), 2, + STATE(4972), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304915] = 6, + [306729] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(5554), 1, + STATE(4977), 1, sym__heredoc_body, - STATE(5577), 1, + STATE(4978), 1, sym__simple_heredoc_body, - STATE(7024), 1, + STATE(7302), 1, sym_heredoc_body, - [304934] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14686), 1, - anon_sym_in, - ACTIONS(14690), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14688), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [304949] = 6, + [306748] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(4680), 1, - sym__simple_heredoc_body, - STATE(4902), 1, + STATE(4982), 1, sym__heredoc_body, - STATE(6932), 1, + STATE(5016), 1, + sym__simple_heredoc_body, + STATE(7302), 1, sym_heredoc_body, - [304968] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15147), 1, - anon_sym_COMMA, - ACTIONS(15150), 1, - aux_sym_heredoc_redirect_token1, - STATE(6361), 1, - aux_sym__for_body_repeat1, - ACTIONS(15145), 2, - anon_sym_SEMI, - anon_sym_AMP, - [304985] = 5, + [306767] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(6814), 1, + STATE(7302), 1, sym_heredoc_body, - STATE(5465), 2, + STATE(5024), 2, sym__heredoc_body, sym__simple_heredoc_body, - [305002] = 5, + [306784] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(6814), 1, + STATE(7302), 1, sym_heredoc_body, - STATE(5468), 2, + STATE(4969), 2, sym__heredoc_body, sym__simple_heredoc_body, - [305019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15152), 1, - anon_sym_in, - ACTIONS(15156), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15154), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [305034] = 6, + [306801] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(5564), 1, - sym__simple_heredoc_body, - STATE(5566), 1, + STATE(4970), 1, sym__heredoc_body, - STATE(7024), 1, + STATE(4979), 1, + sym__simple_heredoc_body, + STATE(7302), 1, sym_heredoc_body, - [305053] = 6, + [306820] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(4693), 1, + STATE(4983), 1, sym__heredoc_body, - STATE(4715), 1, + STATE(4984), 1, sym__simple_heredoc_body, - STATE(6932), 1, + STATE(7302), 1, sym_heredoc_body, - [305072] = 5, + [306839] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(7302), 1, sym_heredoc_body, - STATE(5582), 2, + STATE(5009), 2, sym__heredoc_body, sym__simple_heredoc_body, - [305089] = 6, + [306856] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(5592), 1, + STATE(4955), 1, sym__heredoc_body, - STATE(5602), 1, + STATE(4971), 1, sym__simple_heredoc_body, - STATE(7024), 1, + STATE(7302), 1, sym_heredoc_body, - [305108] = 6, + [306875] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(15173), 1, sym_simple_heredoc_body, - STATE(5550), 1, + STATE(4976), 1, sym__simple_heredoc_body, - STATE(5604), 1, - sym__heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - [305127] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5469), 1, + STATE(4987), 1, sym__heredoc_body, - STATE(5470), 1, - sym__simple_heredoc_body, - STATE(6814), 1, + STATE(7302), 1, sym_heredoc_body, - [305146] = 5, + [306894] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, - anon_sym_SLASH, - ACTIONS(14910), 1, + ACTIONS(15175), 1, anon_sym_RBRACE3, STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [305163] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(4730), 1, - sym__heredoc_body, - STATE(4784), 1, - sym__simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [305182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14767), 1, - anon_sym_in, - ACTIONS(14771), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14769), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [305197] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15158), 1, - sym__concat, - ACTIONS(6639), 4, + aux_sym__expansion_body_repeat1, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15160), 1, - anon_sym_in, - ACTIONS(15164), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15162), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [305225] = 6, + [306909] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(15094), 1, sym_simple_heredoc_body, - STATE(5471), 1, - sym__heredoc_body, - STATE(5472), 1, + ACTIONS(15096), 1, + sym__heredoc_body_beginning, + STATE(4896), 1, sym__simple_heredoc_body, - STATE(6814), 1, + STATE(4903), 1, + sym__heredoc_body, + STATE(6705), 1, sym_heredoc_body, - [305244] = 4, + [306928] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7902), 1, + ACTIONS(8260), 1, anon_sym_RBRACE3, - STATE(6349), 1, + STATE(6298), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8035), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [305259] = 5, + [306943] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15096), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(15149), 1, sym_simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - STATE(5473), 2, + STATE(5489), 1, sym__heredoc_body, + STATE(5490), 1, sym__simple_heredoc_body, - [305276] = 4, + STATE(6844), 1, + sym_heredoc_body, + [306962] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15166), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(15168), 3, + ACTIONS(1254), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [305291] = 5, + anon_sym_RBRACE3, + [306972] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - STATE(5475), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305308] = 6, - ACTIONS(71), 1, + ACTIONS(15177), 1, + anon_sym_esac, + ACTIONS(15179), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15181), 1, + anon_sym_SEMI_AMP, + ACTIONS(15183), 1, + anon_sym_SEMI_SEMI_AMP, + [306988] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(4725), 1, - sym__heredoc_body, - STATE(4818), 1, - sym__simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [305327] = 4, + ACTIONS(15145), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15140), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [307000] = 2, ACTIONS(71), 1, sym_comment, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14810), 2, + ACTIONS(1314), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - ACTIONS(15171), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [305342] = 5, + anon_sym_RBRACE3, + [307010] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - aux_sym_concatenation_token1, - ACTIONS(15173), 1, + ACTIONS(1270), 4, sym__concat, - STATE(6324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, anon_sym_PIPE, anon_sym_RPAREN, - [305359] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5476), 1, - sym__heredoc_body, - STATE(5477), 1, - sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [305378] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - STATE(4762), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305395] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, - sym_simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - STATE(4912), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305412] = 2, + aux_sym_concatenation_token1, + [307020] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1262), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305422] = 2, + [307030] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1314), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305432] = 2, + [307040] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1290), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [305442] = 2, + anon_sym_RBRACE3, + [307050] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1306), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [305452] = 2, + anon_sym_RBRACE3, + [307060] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1254), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [305462] = 2, + [307070] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(1294), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305472] = 2, + [307080] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(15185), 1, + anon_sym_esac, + ACTIONS(15187), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15189), 1, + anon_sym_SEMI_AMP, + ACTIONS(15191), 1, + anon_sym_SEMI_SEMI_AMP, + [307096] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5956), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [307106] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [305482] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15175), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [305496] = 3, + [307116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15180), 1, + ACTIONS(15195), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(15178), 3, + ACTIONS(15193), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_AMP, - [305508] = 2, + [307128] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6639), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305518] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15182), 1, + ACTIONS(15197), 1, anon_sym_esac, - ACTIONS(15184), 1, + ACTIONS(15199), 1, anon_sym_SEMI_SEMI, - ACTIONS(15186), 1, + ACTIONS(15201), 2, anon_sym_SEMI_AMP, - ACTIONS(15188), 1, anon_sym_SEMI_SEMI_AMP, - [305534] = 5, + [307142] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(15086), 1, + ACTIONS(1254), 4, + sym__concat, anon_sym_SLASH, - ACTIONS(15088), 1, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305550] = 2, + [307152] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6724), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(1310), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305560] = 2, + [307162] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6728), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(1254), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305570] = 2, + [307172] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305580] = 2, + ACTIONS(15203), 1, + anon_sym_esac, + ACTIONS(15205), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15207), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [307186] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 4, - sym__concat, + ACTIONS(15076), 1, + sym__special_character, + STATE(6418), 1, + aux_sym__literal_repeat1, + ACTIONS(15125), 2, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305590] = 2, + [307200] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305600] = 2, + ACTIONS(15209), 1, + anon_sym_esac, + ACTIONS(15211), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15213), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [307214] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305610] = 2, + ACTIONS(15215), 1, + anon_sym_esac, + ACTIONS(15217), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15219), 1, + anon_sym_SEMI_AMP, + ACTIONS(15221), 1, + anon_sym_SEMI_SEMI_AMP, + [307230] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305620] = 2, + ACTIONS(15223), 1, + anon_sym_esac, + ACTIONS(15225), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15227), 1, + anon_sym_SEMI_AMP, + ACTIONS(15229), 1, + anon_sym_SEMI_SEMI_AMP, + [307246] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305630] = 2, + ACTIONS(15215), 1, + anon_sym_esac, + ACTIONS(15231), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15233), 1, + anon_sym_SEMI_AMP, + ACTIONS(15235), 1, + anon_sym_SEMI_SEMI_AMP, + [307262] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(15237), 1, + anon_sym_esac, + ACTIONS(15239), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15241), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [307276] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6924), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [307286] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305640] = 2, + [307296] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1254), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305650] = 5, + [307306] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15190), 1, + ACTIONS(15177), 1, anon_sym_esac, - ACTIONS(15192), 1, + ACTIONS(15243), 1, anon_sym_SEMI_SEMI, - ACTIONS(15194), 1, + ACTIONS(15245), 1, anon_sym_SEMI_AMP, - ACTIONS(15196), 1, + ACTIONS(15247), 1, anon_sym_SEMI_SEMI_AMP, - [305666] = 2, + [307322] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1278), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305676] = 2, + [307332] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, - sym__concat, + ACTIONS(15249), 1, + sym__special_character, + STATE(6418), 1, + aux_sym__literal_repeat1, + ACTIONS(1320), 2, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305686] = 2, + [307346] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1282), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305696] = 4, + [307356] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - ACTIONS(15171), 2, + ACTIONS(1286), 4, + sym__concat, anon_sym_PIPE, anon_sym_RPAREN, - [305710] = 4, + aux_sym_concatenation_token1, + [307366] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15198), 1, - anon_sym_esac, - ACTIONS(15200), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15202), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [305724] = 2, + ACTIONS(6918), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [307376] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1290), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305734] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15204), 1, - anon_sym_esac, - ACTIONS(15206), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15208), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [305748] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15190), 1, - anon_sym_esac, - ACTIONS(15210), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15212), 1, - anon_sym_SEMI_AMP, - ACTIONS(15214), 1, - anon_sym_SEMI_SEMI_AMP, - [305764] = 2, + [307386] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15216), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305774] = 4, + ACTIONS(1266), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [307396] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15218), 1, + ACTIONS(15252), 1, sym__special_character, - STATE(6419), 1, + STATE(6424), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1320), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [305788] = 5, + [307410] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(15100), 1, - anon_sym_SLASH, - ACTIONS(15102), 1, - anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305804] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1278), 4, + ACTIONS(15159), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305814] = 2, + [307420] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1294), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305824] = 5, + [307430] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15182), 1, + ACTIONS(15185), 1, anon_sym_esac, - ACTIONS(15221), 1, + ACTIONS(15255), 1, anon_sym_SEMI_SEMI, - ACTIONS(15223), 1, + ACTIONS(15257), 1, anon_sym_SEMI_AMP, - ACTIONS(15225), 1, + ACTIONS(15259), 1, anon_sym_SEMI_SEMI_AMP, - [305840] = 2, + [307446] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(7192), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [305850] = 2, + [307456] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1298), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305860] = 2, + [307466] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, - sym__concat, + ACTIONS(7963), 1, + sym__special_character, + ACTIONS(15072), 1, anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(15074), 1, anon_sym_RBRACE3, - [305870] = 2, + STATE(6424), 1, + aux_sym__literal_repeat1, + [307482] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1302), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305880] = 2, + [307492] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1250), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15229), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15227), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [305902] = 2, + [307502] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1237), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305912] = 2, + [307512] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1298), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305922] = 2, + [307522] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1302), 4, @@ -328083,122 +330050,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305932] = 5, + [307532] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7963), 1, sym__special_character, - ACTIONS(15070), 1, + ACTIONS(15084), 1, anon_sym_SLASH, - ACTIONS(15072), 1, + ACTIONS(15086), 1, anon_sym_RBRACE3, - STATE(6419), 1, + STATE(6424), 1, aux_sym__literal_repeat1, - [305948] = 2, + [307548] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5888), 4, + ACTIONS(5952), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305958] = 2, + [307558] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15108), 4, + ACTIONS(1306), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305968] = 2, + [307568] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6651), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(1282), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305978] = 4, + [307578] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15231), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(1250), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [305992] = 2, + anon_sym_RBRACE3, + [307588] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5707), 4, - sym__concat, + ACTIONS(7963), 1, + sym__special_character, + ACTIONS(15136), 1, anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(15138), 1, anon_sym_RBRACE3, - [306002] = 3, + STATE(6424), 1, + aux_sym__literal_repeat1, + [307604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15150), 1, + ACTIONS(15263), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(15145), 3, + ACTIONS(15261), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_AMP, - [306014] = 5, + [307616] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15233), 1, + ACTIONS(15223), 1, anon_sym_esac, - ACTIONS(15235), 1, + ACTIONS(15265), 1, anon_sym_SEMI_SEMI, - ACTIONS(15237), 1, + ACTIONS(15267), 1, anon_sym_SEMI_AMP, - ACTIONS(15239), 1, + ACTIONS(15269), 1, anon_sym_SEMI_SEMI_AMP, - [306030] = 4, + [307632] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15241), 1, - anon_sym_esac, - ACTIONS(15243), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15245), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [306044] = 4, + ACTIONS(15271), 1, + anon_sym_RBRACE3, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + [307646] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15247), 1, - anon_sym_esac, - ACTIONS(15249), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15251), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [306058] = 5, + ACTIONS(1258), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [307656] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15253), 1, - anon_sym_esac, - ACTIONS(15255), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15257), 1, - anon_sym_SEMI_AMP, - ACTIONS(15259), 1, - anon_sym_SEMI_SEMI_AMP, - [306074] = 5, + ACTIONS(15273), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [307666] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15253), 1, - anon_sym_esac, - ACTIONS(15261), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15263), 1, - anon_sym_SEMI_AMP, - ACTIONS(15265), 1, - anon_sym_SEMI_SEMI_AMP, - [306090] = 2, + ACTIONS(7196), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [307676] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1254), 4, @@ -328206,6403 +330166,6376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [306100] = 2, + [307686] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1274), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [306110] = 2, + [307696] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1215), 4, - sym__concat, + ACTIONS(12464), 1, anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [306120] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15233), 1, - anon_sym_esac, - ACTIONS(15267), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15269), 1, - anon_sym_SEMI_AMP, - ACTIONS(15271), 1, - anon_sym_SEMI_SEMI_AMP, - [306136] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1314), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [306146] = 4, + ACTIONS(15275), 1, + anon_sym_PIPE_AMP, + STATE(4755), 1, + aux_sym_pipeline_repeat1, + [307709] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15273), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306159] = 4, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15277), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [307720] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15275), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306172] = 4, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15281), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [307731] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15277), 1, + ACTIONS(15283), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306185] = 4, + [307744] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, ACTIONS(15279), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306198] = 4, + anon_sym_LBRACK, + ACTIONS(15285), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [307755] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15281), 1, + ACTIONS(15287), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306211] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15223), 1, - anon_sym_SEMI_AMP, - ACTIONS(15225), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15283), 1, - anon_sym_SEMI_SEMI, - [306224] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14812), 1, - anon_sym_RPAREN, - STATE(6501), 1, - aux_sym_case_item_repeat1, - [306237] = 3, + [307768] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15279), 1, anon_sym_LBRACK, - ACTIONS(15285), 2, + ACTIONS(15289), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306248] = 4, + [307779] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15289), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306261] = 4, + ACTIONS(1270), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [307788] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15291), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306274] = 3, + [307801] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15279), 1, anon_sym_LBRACK, ACTIONS(15293), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306285] = 4, + [307812] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15295), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306298] = 4, + [307825] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12681), 1, - anon_sym_PIPE, - ACTIONS(15297), 1, - anon_sym_PIPE_AMP, - STATE(4965), 1, - aux_sym_pipeline_repeat1, - [306311] = 3, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15297), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [307836] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15279), 1, anon_sym_LBRACK, ACTIONS(15299), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306322] = 4, + [307847] = 2, ACTIONS(71), 1, sym_comment, + ACTIONS(1274), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [307856] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, ACTIONS(15301), 1, anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [307869] = 4, + ACTIONS(71), 1, + sym_comment, ACTIONS(15303), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(15305), 1, anon_sym_COMMA, - STATE(6579), 1, + STATE(6526), 1, aux_sym__for_body_repeat1, - [306335] = 3, + [307882] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15305), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306346] = 4, + ACTIONS(1233), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [307891] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, ACTIONS(15307), 1, - anon_sym_RPAREN_RPAREN, - STATE(6584), 1, - aux_sym__for_body_repeat1, - [306359] = 4, + anon_sym_SEMI_SEMI, + ACTIONS(15213), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [307902] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1233), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [307913] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15309), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306372] = 4, + [307926] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15311), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306385] = 3, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [307939] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15313), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306396] = 3, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15313), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [307952] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15315), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306407] = 4, + ACTIONS(15305), 1, + anon_sym_COMMA, + ACTIONS(15315), 1, + anon_sym_RPAREN_RPAREN, + STATE(6525), 1, + aux_sym__for_body_repeat1, + [307965] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15317), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306420] = 4, + [307978] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, ACTIONS(15319), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, + anon_sym_COMMA, + ACTIONS(15321), 1, + anon_sym_RPAREN, + STATE(6478), 1, aux_sym__for_body_repeat1, - [306433] = 3, + [307991] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15321), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15208), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [306444] = 3, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15323), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308004] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15323), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306455] = 4, + ACTIONS(15189), 1, + anon_sym_SEMI_AMP, + ACTIONS(15191), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15325), 1, + anon_sym_SEMI_SEMI, + [308017] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15325), 1, + ACTIONS(15327), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306468] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15327), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306479] = 4, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308030] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(15329), 1, + ACTIONS(15319), 1, anon_sym_COMMA, - STATE(6477), 1, + ACTIONS(15329), 1, + anon_sym_RPAREN, + STATE(6577), 1, aux_sym__for_body_repeat1, - [306492] = 4, + [308043] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15332), 1, + ACTIONS(15331), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306505] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1262), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [306514] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15334), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306525] = 3, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308056] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15336), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306536] = 4, + ACTIONS(15219), 1, + anon_sym_SEMI_AMP, + ACTIONS(15221), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15333), 1, + anon_sym_SEMI_SEMI, + [308069] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15338), 1, + ACTIONS(15335), 1, anon_sym_RPAREN_RPAREN, - STATE(6478), 1, - aux_sym__for_body_repeat1, - [306549] = 4, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308082] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15340), 1, + ACTIONS(15337), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306562] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1225), 3, - anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [306571] = 2, + [308095] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [306580] = 3, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15339), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308108] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15342), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306591] = 4, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15341), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308121] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15344), 1, + ACTIONS(15343), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306604] = 4, + [308134] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15346), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306617] = 3, + ACTIONS(15145), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(15345), 1, + anon_sym_COMMA, + STATE(6486), 1, + aux_sym__for_body_repeat1, + [308147] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15279), 1, anon_sym_LBRACK, ACTIONS(15348), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306628] = 4, + [308158] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(12712), 1, anon_sym_PIPE, ACTIONS(15350), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306641] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15352), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306652] = 3, + anon_sym_PIPE_AMP, + STATE(4989), 1, + aux_sym_pipeline_repeat1, + [308171] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 1, - sym__special_character, - ACTIONS(1225), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [306663] = 4, + ACTIONS(15305), 1, + anon_sym_COMMA, + ACTIONS(15352), 1, + anon_sym_RPAREN_RPAREN, + STATE(6531), 1, + aux_sym__for_body_repeat1, + [308184] = 4, ACTIONS(71), 1, sym_comment, + ACTIONS(15305), 1, + anon_sym_COMMA, ACTIONS(15354), 1, - anon_sym_PIPE, - ACTIONS(15357), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306676] = 4, + anon_sym_RPAREN_RPAREN, + STATE(6486), 1, + aux_sym__for_body_repeat1, + [308197] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15359), 1, + ACTIONS(15356), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306689] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15361), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306700] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15363), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306711] = 4, + [308210] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15365), 1, + ACTIONS(15358), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306724] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15367), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306737] = 4, + [308223] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15371), 1, - anon_sym_RPAREN, - STATE(6504), 1, - aux_sym__for_body_repeat1, - [306750] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15373), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306763] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15375), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306776] = 4, + ACTIONS(15360), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308236] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14814), 1, anon_sym_PIPE, - ACTIONS(15377), 1, + ACTIONS(15362), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6524), 1, aux_sym_case_item_repeat1, - [306789] = 4, + [308249] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15379), 1, + ACTIONS(15364), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306802] = 4, + [308262] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15381), 1, - anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [306815] = 4, + ACTIONS(15233), 1, + anon_sym_SEMI_AMP, + ACTIONS(15235), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15366), 1, + anon_sym_SEMI_SEMI, + [308275] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15368), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [308286] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15383), 1, + ACTIONS(15370), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306828] = 4, + [308299] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15385), 1, + ACTIONS(15372), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306841] = 4, + [308312] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15387), 1, + ACTIONS(15374), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306854] = 4, + [308325] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15389), 1, + ACTIONS(15376), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306867] = 4, + [308338] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15391), 1, + ACTIONS(15378), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306880] = 4, + [308351] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 1, - anon_sym_RPAREN, - ACTIONS(15393), 1, - anon_sym_COMMA, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [306893] = 4, + ACTIONS(15380), 1, + anon_sym_SLASH, + ACTIONS(15382), 1, + anon_sym_RBRACE3, + ACTIONS(15384), 1, + sym__regex_no_slash, + [308364] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13393), 1, anon_sym_PIPE, - ACTIONS(15396), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306906] = 4, + ACTIONS(13395), 1, + anon_sym_PIPE_AMP, + STATE(5515), 1, + aux_sym_pipeline_repeat1, + [308377] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7184), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(15398), 1, + ACTIONS(15386), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15241), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [308388] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15388), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15201), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [308399] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, - STATE(6512), 1, + ACTIONS(15390), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306919] = 4, + [308412] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14808), 1, - anon_sym_RPAREN, - STATE(6615), 1, - aux_sym_case_item_repeat1, - [306932] = 4, + ACTIONS(15257), 1, + anon_sym_SEMI_AMP, + ACTIONS(15259), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15392), 1, + anon_sym_SEMI_SEMI, + [308425] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15401), 1, + ACTIONS(15394), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306945] = 4, + STATE(6490), 1, + aux_sym__for_body_repeat1, + [308438] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15396), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [308449] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1282), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [308458] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15403), 1, + ACTIONS(15398), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306958] = 4, + [308471] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15405), 1, + ACTIONS(15400), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306971] = 4, + [308484] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(1290), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [308493] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15402), 1, + sym__concat, + ACTIONS(6898), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [308504] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15404), 1, + sym__concat, + ACTIONS(6904), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [308515] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15407), 1, + ACTIONS(15406), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [306984] = 4, + [308528] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15409), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306997] = 4, + ACTIONS(1294), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [308537] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15411), 1, + ACTIONS(15408), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307010] = 4, + [308550] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13373), 1, + ACTIONS(14814), 1, anon_sym_PIPE, - ACTIONS(13375), 1, - anon_sym_PIPE_AMP, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - [307023] = 4, + ACTIONS(15410), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [308563] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15413), 1, + ACTIONS(15412), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, + STATE(6609), 1, aux_sym__for_body_repeat1, - [307036] = 4, + [308576] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15319), 1, anon_sym_COMMA, - ACTIONS(15415), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307049] = 4, + ACTIONS(15414), 1, + anon_sym_RPAREN, + STATE(6528), 1, + aux_sym__for_body_repeat1, + [308589] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15417), 1, + ACTIONS(15416), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307062] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15419), 1, - sym__concat, - ACTIONS(6651), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307073] = 3, + [308602] = 4, ACTIONS(71), 1, sym_comment, + ACTIONS(15418), 1, + anon_sym_PIPE, ACTIONS(15421), 1, - sym__concat, - ACTIONS(6639), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307084] = 4, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [308615] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, ACTIONS(15423), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307097] = 4, + STATE(6486), 1, + aux_sym__for_body_repeat1, + [308628] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, ACTIONS(15425), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307110] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1266), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307119] = 4, + STATE(6486), 1, + aux_sym__for_body_repeat1, + [308641] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15427), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307132] = 4, + [308654] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15319), 1, anon_sym_COMMA, ACTIONS(15429), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307145] = 4, + anon_sym_RPAREN, + STATE(6577), 1, + aux_sym__for_body_repeat1, + [308667] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, + ACTIONS(14814), 1, + anon_sym_PIPE, ACTIONS(15431), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307158] = 4, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [308680] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(15305), 1, anon_sym_COMMA, ACTIONS(15433), 1, anon_sym_RPAREN_RPAREN, - STATE(6551), 1, + STATE(6614), 1, aux_sym__for_body_repeat1, - [307171] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1250), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307180] = 4, + [308693] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(15305), 1, anon_sym_COMMA, ACTIONS(15435), 1, - anon_sym_RPAREN, - STATE(6539), 1, + anon_sym_RPAREN_RPAREN, + STATE(6486), 1, aux_sym__for_body_repeat1, - [307193] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1258), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307202] = 4, + [308706] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, ACTIONS(15437), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307215] = 4, + STATE(6615), 1, + aux_sym__for_body_repeat1, + [308719] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, + ACTIONS(14814), 1, + anon_sym_PIPE, ACTIONS(15439), 1, anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [307228] = 3, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [308732] = 4, ACTIONS(71), 1, sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, ACTIONS(15441), 1, - sym_extglob_pattern, - ACTIONS(6468), 2, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308745] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, anon_sym_PIPE, + ACTIONS(15443), 1, anon_sym_RPAREN, - [307239] = 4, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [308758] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15443), 1, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15445), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [308769] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(15447), 1, anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [307252] = 4, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [308782] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15445), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307265] = 4, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(15449), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [308795] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15257), 1, + ACTIONS(15451), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15207), 2, anon_sym_SEMI_AMP, - ACTIONS(15259), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15447), 1, - anon_sym_SEMI_SEMI, - [307278] = 4, + [308806] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15449), 1, + ACTIONS(15453), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307291] = 4, + [308819] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15451), 1, - anon_sym_SLASH, - ACTIONS(15453), 1, - anon_sym_RBRACE3, + ACTIONS(6947), 1, + anon_sym_COMMA, ACTIONS(15455), 1, - sym__regex_no_slash, - [307304] = 4, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308832] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15457), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307317] = 4, + [308845] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15263), 1, - anon_sym_SEMI_AMP, - ACTIONS(15265), 1, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(6947), 1, + anon_sym_COMMA, ACTIONS(15459), 1, - anon_sym_SEMI_SEMI, - [307330] = 4, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308858] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15269), 1, - anon_sym_SEMI_AMP, - ACTIONS(15271), 1, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(6947), 1, + anon_sym_COMMA, ACTIONS(15461), 1, - anon_sym_SEMI_SEMI, - [307343] = 4, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308871] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15463), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307356] = 4, + [308884] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14884), 1, + anon_sym_RPAREN, + STATE(6533), 1, + aux_sym_case_item_repeat1, + [308897] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15305), 1, anon_sym_COMMA, ACTIONS(15465), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307369] = 4, + STATE(6486), 1, + aux_sym__for_body_repeat1, + [308910] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15467), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307382] = 4, + [308923] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15319), 1, anon_sym_COMMA, ACTIONS(15469), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307395] = 4, + anon_sym_RPAREN, + STATE(6581), 1, + aux_sym__for_body_repeat1, + [308936] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15471), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307408] = 4, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [308949] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15473), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307421] = 4, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15473), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [308960] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, ACTIONS(15475), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307434] = 4, + sym__concat, + ACTIONS(6924), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [308971] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15477), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307447] = 4, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14952), 1, + anon_sym_RPAREN, + STATE(6567), 1, + aux_sym_case_item_repeat1, + [308984] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12688), 1, + ACTIONS(12704), 1, anon_sym_PIPE, - ACTIONS(15479), 1, + ACTIONS(15477), 1, anon_sym_PIPE_AMP, - STATE(4992), 1, + STATE(4964), 1, aux_sym_pipeline_repeat1, - [307460] = 3, + [308997] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15481), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307471] = 4, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15479), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [309010] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15245), 1, + anon_sym_SEMI_AMP, + ACTIONS(15247), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15481), 1, + anon_sym_SEMI_SEMI, + [309023] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15483), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307484] = 4, + [309036] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15485), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307497] = 3, + [309049] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15487), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307508] = 4, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15487), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [309062] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15489), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307521] = 3, + [309075] = 4, ACTIONS(71), 1, sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, ACTIONS(15491), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15202), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [307532] = 4, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309088] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15493), 1, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(14816), 1, anon_sym_RPAREN, - STATE(6537), 1, - aux_sym__for_body_repeat1, - [307545] = 4, + STATE(6520), 1, + aux_sym_case_item_repeat1, + [309101] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15495), 1, + ACTIONS(15493), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307558] = 4, + [309114] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15497), 1, + ACTIONS(15495), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307571] = 4, + [309127] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(15497), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309140] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15499), 1, anon_sym_RPAREN_RPAREN, - STATE(6521), 1, - aux_sym__for_body_repeat1, - [307584] = 4, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [309153] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, + ACTIONS(14814), 1, + anon_sym_PIPE, ACTIONS(15501), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309166] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15503), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307597] = 3, + [309179] = 3, ACTIONS(71), 1, sym_comment, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [307608] = 4, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15505), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309190] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(15507), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309203] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15503), 1, + ACTIONS(15509), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307621] = 2, + [309216] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 3, - sym_extglob_pattern, + ACTIONS(14814), 1, anon_sym_PIPE, + ACTIONS(15511), 1, anon_sym_RPAREN, - [307630] = 2, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309229] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 3, - sym_extglob_pattern, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(15513), 1, + anon_sym_RPAREN_RPAREN, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [309242] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15515), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309253] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15517), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309264] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, anon_sym_PIPE, + ACTIONS(14978), 1, anon_sym_RPAREN, - [307639] = 4, + STATE(6537), 1, + aux_sym_case_item_repeat1, + [309277] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15186), 1, - anon_sym_SEMI_AMP, - ACTIONS(15188), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15505), 1, - anon_sym_SEMI_SEMI, - [307652] = 4, + ACTIONS(15145), 1, + anon_sym_RPAREN, + ACTIONS(15519), 1, + anon_sym_COMMA, + STATE(6577), 1, + aux_sym__for_body_repeat1, + [309290] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15507), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307665] = 4, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15522), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309301] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12220), 1, + ACTIONS(1282), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15509), 1, - anon_sym_PIPE_AMP, - STATE(4581), 1, - aux_sym_pipeline_repeat1, - [307678] = 2, + anon_sym_RPAREN, + [309310] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1250), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307687] = 4, + [309319] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15319), 1, + anon_sym_COMMA, + ACTIONS(15524), 1, + anon_sym_RPAREN, + STATE(6577), 1, + aux_sym__for_body_repeat1, + [309332] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(1290), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15511), 1, anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [307700] = 2, + [309341] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1306), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307709] = 2, + [309350] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(12266), 1, + anon_sym_PIPE, + ACTIONS(15526), 1, + anon_sym_PIPE_AMP, + STATE(4623), 1, + aux_sym_pipeline_repeat1, + [309363] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1294), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307718] = 4, + [309372] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15513), 1, - anon_sym_RPAREN_RPAREN, - STATE(6621), 1, - aux_sym__for_body_repeat1, - [307731] = 4, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(15528), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309385] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15515), 1, + ACTIONS(15530), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307744] = 4, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [309398] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(12921), 1, + anon_sym_PIPE, + ACTIONS(15532), 1, + anon_sym_PIPE_AMP, + STATE(5117), 1, + aux_sym_pipeline_repeat1, + [309411] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14814), 1, + anon_sym_PIPE, + ACTIONS(15534), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309424] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15517), 1, + ACTIONS(15536), 1, anon_sym_RPAREN_RPAREN, - STATE(6472), 1, - aux_sym__for_body_repeat1, - [307757] = 4, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [309437] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15538), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309448] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15540), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309459] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15519), 1, + ACTIONS(15542), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307770] = 4, + [309472] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15521), 1, + ACTIONS(7419), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + ACTIONS(15544), 1, + anon_sym_COMMA, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307783] = 4, + [309485] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, + anon_sym_LBRACK, + ACTIONS(15547), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309496] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12864), 1, + ACTIONS(14814), 1, anon_sym_PIPE, - ACTIONS(15523), 1, - anon_sym_PIPE_AMP, - STATE(5098), 1, - aux_sym_pipeline_repeat1, - [307796] = 4, + ACTIONS(15549), 1, + anon_sym_RPAREN, + STATE(6524), 1, + aux_sym_case_item_repeat1, + [309509] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15525), 1, + ACTIONS(15551), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307809] = 4, + STATE(6594), 1, + aux_sym_arithmetic_expansion_repeat1, + [309522] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15527), 1, + ACTIONS(15553), 1, anon_sym_RPAREN_RPAREN, - STATE(6475), 1, + STATE(6486), 1, aux_sym__for_body_repeat1, - [307822] = 4, + [309535] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15529), 1, + ACTIONS(15555), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307835] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15531), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307846] = 3, + [309548] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15279), 1, anon_sym_LBRACK, - ACTIONS(15533), 2, + ACTIONS(15557), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [307857] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15237), 1, - anon_sym_SEMI_AMP, - ACTIONS(15239), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15535), 1, - anon_sym_SEMI_SEMI, - [307870] = 3, + [309559] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15537), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15245), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [307881] = 2, + ACTIONS(12687), 1, + anon_sym_PIPE, + ACTIONS(15559), 1, + anon_sym_PIPE_AMP, + STATE(4956), 1, + aux_sym_pipeline_repeat1, + [309572] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1254), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307890] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12563), 1, - anon_sym_PIPE, - ACTIONS(15539), 1, - anon_sym_PIPE_AMP, - STATE(4821), 1, - aux_sym_pipeline_repeat1, - [307903] = 2, + [309581] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1310), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307912] = 2, + [309590] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1254), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307921] = 3, + [309599] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + STATE(6282), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14890), 2, + sym__concat, + aux_sym_concatenation_token1, + [309610] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, anon_sym_LBRACK, - ACTIONS(15541), 2, + ACTIONS(15561), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [307932] = 4, + [309621] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15543), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307945] = 4, + ACTIONS(15563), 1, + sym_extglob_pattern, + ACTIONS(6810), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [309632] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15545), 1, + ACTIONS(15565), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [307958] = 4, + [309645] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15547), 1, + ACTIONS(15567), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307971] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14960), 1, - anon_sym_RPAREN, - STATE(6488), 1, - aux_sym_case_item_repeat1, - [307984] = 4, + STATE(6486), 1, + aux_sym__for_body_repeat1, + [309658] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15549), 1, + ACTIONS(15569), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307997] = 4, + STATE(6547), 1, + aux_sym__for_body_repeat1, + [309671] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15551), 1, + ACTIONS(15571), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308010] = 4, + STATE(6598), 1, + aux_sym__for_body_repeat1, + [309684] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15194), 1, - anon_sym_SEMI_AMP, - ACTIONS(15196), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15553), 1, - anon_sym_SEMI_SEMI, - [308023] = 4, + ACTIONS(13339), 1, + anon_sym_PIPE, + ACTIONS(15573), 1, + anon_sym_PIPE_AMP, + STATE(5457), 1, + aux_sym_pipeline_repeat1, + [309697] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15555), 1, + ACTIONS(15575), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [308036] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13281), 1, - anon_sym_PIPE, - ACTIONS(15557), 1, - anon_sym_PIPE_AMP, - STATE(5441), 1, - aux_sym_pipeline_repeat1, - [308049] = 4, + [309710] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15559), 1, + ACTIONS(15577), 1, anon_sym_RPAREN_RPAREN, - STATE(6468), 1, + STATE(6486), 1, aux_sym__for_body_repeat1, - [308062] = 4, + [309723] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15305), 1, anon_sym_COMMA, - ACTIONS(15561), 1, + ACTIONS(15579), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308075] = 3, + STATE(6486), 1, + aux_sym__for_body_repeat1, + [309736] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15279), 1, anon_sym_LBRACK, - ACTIONS(15563), 2, + ACTIONS(15581), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308086] = 3, + [309747] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15279), 1, anon_sym_LBRACK, - ACTIONS(15565), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308097] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15567), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308110] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15569), 1, - sym__concat, - ACTIONS(6673), 2, + ACTIONS(15583), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308121] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15014), 1, - anon_sym_RPAREN, - STATE(6453), 1, - aux_sym_case_item_repeat1, - [308134] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15571), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308147] = 4, + [309758] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15573), 1, + ACTIONS(15585), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [308160] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15575), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308173] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15577), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308186] = 4, + [309771] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15579), 1, + ACTIONS(15587), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [308199] = 4, + [309784] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15581), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308212] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12668), 1, - anon_sym_PIPE, - ACTIONS(15583), 1, - anon_sym_PIPE_AMP, - STATE(4945), 1, - aux_sym_pipeline_repeat1, - [308225] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15585), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15251), 2, + ACTIONS(15267), 1, anon_sym_SEMI_AMP, + ACTIONS(15269), 1, anon_sym_SEMI_SEMI_AMP, - [308236] = 4, + ACTIONS(15589), 1, + anon_sym_SEMI_SEMI, + [309797] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15212), 1, + ACTIONS(15227), 1, anon_sym_SEMI_AMP, - ACTIONS(15214), 1, + ACTIONS(15229), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15587), 1, + ACTIONS(15591), 1, anon_sym_SEMI_SEMI, - [308249] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15589), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [308262] = 4, + [309810] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14814), 1, anon_sym_PIPE, - ACTIONS(15591), 1, + ACTIONS(15593), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6524), 1, aux_sym_case_item_repeat1, - [308275] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15593), 1, - sym__concat, - ACTIONS(6703), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308286] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15595), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308297] = 4, + [309823] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, - ACTIONS(15597), 1, + ACTIONS(15595), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [308310] = 4, + [309836] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(15181), 1, + anon_sym_SEMI_AMP, + ACTIONS(15183), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15597), 1, + anon_sym_SEMI_SEMI, + [309849] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15599), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [308323] = 4, + [309862] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6947), 1, anon_sym_COMMA, ACTIONS(15601), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6594), 1, aux_sym_arithmetic_expansion_repeat1, - [308336] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15150), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [308344] = 3, + [309875] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(15603), 1, - anon_sym_RBRACE3, - ACTIONS(15605), 1, - sym_regex, - [308354] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5569), 1, - sym_do_group, - [308364] = 2, + sym__concat, + ACTIONS(6918), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309886] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6639), 2, + ACTIONS(15473), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308372] = 3, + [309894] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14900), 1, + ACTIONS(15145), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [309902] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14968), 1, anon_sym_do, - STATE(4819), 1, + STATE(5543), 1, sym_do_group, - [308382] = 2, + [309912] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15334), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308390] = 2, + ACTIONS(15263), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [309920] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15487), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308398] = 2, + ACTIONS(15136), 1, + anon_sym_SLASH, + ACTIONS(15138), 1, + anon_sym_RBRACE3, + [309930] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12180), 2, - sym__concat, - anon_sym_RBRACK, - [308406] = 2, + ACTIONS(15605), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15607), 1, + aux_sym__simple_variable_name_token1, + [309940] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15293), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308414] = 2, + ACTIONS(1258), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [309948] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15313), 2, + ACTIONS(15368), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308422] = 3, + [309956] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15451), 1, + ACTIONS(15609), 1, anon_sym_SLASH, - ACTIONS(15453), 1, + ACTIONS(15611), 1, anon_sym_RBRACE3, - [308432] = 3, + [309966] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym_RBRACK, - ACTIONS(6844), 1, - sym__concat, - [308442] = 3, + ACTIONS(15293), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [309974] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15086), 1, + ACTIONS(15072), 1, anon_sym_SLASH, - ACTIONS(15088), 1, + ACTIONS(15074), 1, anon_sym_RBRACE3, - [308452] = 2, + [309984] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15481), 2, + ACTIONS(15285), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308460] = 2, + [309992] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1282), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [308468] = 2, + [310000] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6728), 2, + ACTIONS(6918), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308476] = 3, + [310008] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5542), 1, - sym_do_group, - [308486] = 3, + ACTIONS(6598), 1, + anon_sym_RBRACK, + ACTIONS(7153), 1, + sym__concat, + [310018] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15607), 1, + ACTIONS(14888), 1, anon_sym_SLASH, - ACTIONS(15609), 1, + ACTIONS(14892), 1, anon_sym_RBRACE3, - [308496] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15229), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308504] = 2, + [310028] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(12278), 2, sym__concat, anon_sym_RBRACK, - [308512] = 2, + [310036] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308520] = 2, + ACTIONS(14968), 1, + anon_sym_do, + STATE(5597), 1, + sym_do_group, + [310046] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12107), 2, - sym__concat, - anon_sym_RBRACK, - [308528] = 2, + ACTIONS(6839), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [310054] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15531), 2, + ACTIONS(15538), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308536] = 2, + [310062] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15336), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308544] = 2, + ACTIONS(1290), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [310070] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15533), 2, + ACTIONS(15540), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308552] = 3, + [310078] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15611), 1, - anon_sym_LPAREN_LPAREN, ACTIONS(15613), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15615), 1, aux_sym__simple_variable_name_token1, - [308562] = 3, + [310088] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14900), 1, - anon_sym_do, - STATE(4704), 1, - sym_do_group, - [308572] = 2, + ACTIONS(6737), 1, + anon_sym_RBRACK, + ACTIONS(7168), 1, + sym__concat, + [310098] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15363), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308580] = 2, + ACTIONS(15195), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [310106] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15285), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308588] = 2, + ACTIONS(15048), 1, + anon_sym_SLASH, + ACTIONS(15050), 1, + anon_sym_RBRACE3, + [310116] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15315), 2, + ACTIONS(15297), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308596] = 3, + [310124] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14962), 1, + ACTIONS(15032), 1, anon_sym_SLASH, - ACTIONS(14964), 1, + ACTIONS(15034), 1, anon_sym_RBRACE3, - [308606] = 2, + [310134] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15229), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [308614] = 2, + ACTIONS(15522), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [310142] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15106), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [308622] = 3, + ACTIONS(15289), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [310150] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14796), 1, - anon_sym_COLON, - ACTIONS(14798), 1, - anon_sym_RBRACE3, - [308632] = 2, + ACTIONS(14844), 1, + anon_sym_do, + STATE(4782), 1, + sym_do_group, + [310160] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12228), 2, - sym__concat, - anon_sym_RBRACK, - [308640] = 3, + ACTIONS(15617), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15619), 1, + aux_sym__simple_variable_name_token1, + [310170] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6998), 1, - sym__concat, - [308650] = 2, + ACTIONS(6912), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [310178] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15541), 2, + ACTIONS(15277), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308658] = 3, + [310186] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, + ACTIONS(15547), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [310194] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15380), 1, anon_sym_SLASH, - ACTIONS(14910), 1, + ACTIONS(15382), 1, anon_sym_RBRACE3, - [308668] = 3, + [310204] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6483), 1, + ACTIONS(6701), 1, anon_sym_RBRACK, - ACTIONS(6848), 1, + ACTIONS(7160), 1, sym__concat, - [308678] = 3, + [310214] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6472), 1, - anon_sym_RBRACK, - ACTIONS(6834), 1, - sym__concat, - [308688] = 3, + ACTIONS(7192), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [310222] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_RBRACK, - ACTIONS(6838), 1, - sym__concat, - [308698] = 2, + ACTIONS(15621), 1, + anon_sym_SLASH, + ACTIONS(15623), 1, + anon_sym_RBRACE3, + [310232] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15342), 2, + ACTIONS(15517), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308706] = 3, + [310240] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15615), 1, - anon_sym_SLASH, - ACTIONS(15617), 1, + ACTIONS(15625), 1, anon_sym_RBRACE3, - [308716] = 2, + ACTIONS(15627), 1, + sym_regex, + [310250] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(15127), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [310258] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1266), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [308724] = 2, + [310266] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15323), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308732] = 2, + ACTIONS(15195), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [310274] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15348), 2, + ACTIONS(15557), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308740] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1258), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308748] = 2, + [310282] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15595), 2, + ACTIONS(6924), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308756] = 3, + [310290] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15038), 1, - anon_sym_do, - STATE(4749), 1, - sym_do_group, - [308766] = 3, + ACTIONS(15348), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [310298] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15100), 1, - anon_sym_SLASH, - ACTIONS(15102), 1, + ACTIONS(14799), 1, + anon_sym_COLON, + ACTIONS(14801), 1, anon_sym_RBRACE3, - [308776] = 2, + [310308] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6667), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [308784] = 2, + ACTIONS(12211), 2, + sym__concat, + anon_sym_RBRACK, + [310316] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15563), 2, + ACTIONS(7196), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308792] = 3, + [310324] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15038), 1, + ACTIONS(6746), 1, + anon_sym_RBRACK, + ACTIONS(7215), 1, + sym__concat, + [310334] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15040), 1, anon_sym_do, - STATE(4792), 1, + STATE(4868), 1, sym_do_group, - [308802] = 2, + [310344] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15565), 2, + ACTIONS(15281), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308810] = 3, + [310352] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15619), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15621), 1, - aux_sym__simple_variable_name_token1, - [308820] = 3, + ACTIONS(6831), 1, + anon_sym_RBRACK, + ACTIONS(7127), 1, + sym__concat, + [310362] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14980), 1, + ACTIONS(1294), 2, anon_sym_SLASH, - ACTIONS(14982), 1, anon_sym_RBRACE3, - [308830] = 3, + [310370] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15623), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15625), 1, - aux_sym__simple_variable_name_token1, - [308840] = 2, + ACTIONS(15040), 1, + anon_sym_do, + STATE(4872), 1, + sym_do_group, + [310380] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308848] = 2, + ACTIONS(14844), 1, + anon_sym_do, + STATE(4774), 1, + sym_do_group, + [310390] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15180), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308856] = 3, + ACTIONS(15084), 1, + anon_sym_SLASH, + ACTIONS(15086), 1, + anon_sym_RBRACE3, + [310400] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6840), 1, - sym__concat, - [308866] = 2, + ACTIONS(15515), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [310408] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6663), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [308874] = 3, + ACTIONS(15581), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [310416] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14860), 1, + ACTIONS(14830), 1, anon_sym_do, - STATE(4954), 1, - sym_do_group, - [308884] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15627), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15629), 1, - aux_sym__simple_variable_name_token1, - [308894] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1266), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308902] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15180), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [308910] = 2, + STATE(5006), 1, + sym_do_group, + [310426] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6724), 2, + ACTIONS(15583), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308918] = 3, + [310434] = 3, ACTIONS(71), 1, sym_comment, + ACTIONS(15629), 1, + anon_sym_LPAREN_LPAREN, ACTIONS(15631), 1, - anon_sym_SLASH, + aux_sym__simple_variable_name_token1, + [310444] = 3, + ACTIONS(71), 1, + sym_comment, ACTIONS(15633), 1, + anon_sym_SLASH, + ACTIONS(15635), 1, anon_sym_RBRACE3, - [308928] = 2, + [310454] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12177), 2, + sym__concat, + anon_sym_RBRACK, + [310462] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15352), 2, + ACTIONS(15505), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308936] = 3, + [310470] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15070), 1, - anon_sym_SLASH, - ACTIONS(15072), 1, - anon_sym_RBRACE3, - [308946] = 2, + ACTIONS(6780), 1, + anon_sym_RBRACK, + ACTIONS(7223), 1, + sym__concat, + [310480] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15327), 2, + ACTIONS(15396), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308954] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14860), 1, - anon_sym_do, - STATE(4997), 1, - sym_do_group, - [308964] = 2, + [310488] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6651), 2, + ACTIONS(15299), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308972] = 3, + [310496] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15635), 1, - anon_sym_SLASH, - ACTIONS(15637), 1, - anon_sym_RBRACE3, - [308982] = 2, + ACTIONS(12219), 2, + sym__concat, + anon_sym_RBRACK, + [310504] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15305), 2, + ACTIONS(15561), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308990] = 2, + [310512] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15361), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308998] = 2, + ACTIONS(15263), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [310520] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15299), 2, + ACTIONS(15445), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [309006] = 2, + [310528] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309013] = 2, + ACTIONS(15145), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [310536] = 3, ACTIONS(71), 1, sym_comment, + ACTIONS(15637), 1, + anon_sym_SLASH, ACTIONS(15639), 1, - anon_sym_BQUOTE, - [309020] = 2, + anon_sym_RBRACE3, + [310546] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15641), 1, - anon_sym_RPAREN, - [309027] = 2, + ACTIONS(14830), 1, + anon_sym_do, + STATE(4993), 1, + sym_do_group, + [310556] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [309034] = 2, + ACTIONS(15641), 1, + aux_sym_brace_expression_token1, + [310563] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15643), 1, - anon_sym_RBRACE3, - [309041] = 2, + sym_heredoc_end, + [310570] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15645), 1, anon_sym_RPAREN, - [309048] = 2, + [310577] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15647), 1, - aux_sym_brace_expression_token1, - [309055] = 2, + anon_sym_RPAREN, + [310584] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15649), 1, - anon_sym_BQUOTE, - [309062] = 2, + anon_sym_in, + [310591] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15651), 1, - anon_sym_RPAREN_RPAREN, - [309069] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309076] = 2, + anon_sym_RPAREN, + [310598] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15653), 1, - anon_sym_BQUOTE, - [309083] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309090] = 2, + aux_sym_brace_expression_token1, + [310605] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15655), 1, - anon_sym_RBRACE3, - [309097] = 2, + anon_sym_esac, + [310612] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15657), 1, - anon_sym_RBRACE3, - [309104] = 2, + anon_sym_BQUOTE, + [310619] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15659), 1, anon_sym_RPAREN, - [309111] = 2, + [310626] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15661), 1, - aux_sym_brace_expression_token1, - [309118] = 2, + anon_sym_RBRACE3, + [310633] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15663), 1, - anon_sym_RBRACE3, - [309125] = 2, + anon_sym_RPAREN, + [310640] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15665), 1, - anon_sym_BQUOTE, - [309132] = 2, + anon_sym_RBRACE3, + [310647] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15667), 1, - anon_sym_RBRACE3, - [309139] = 2, + anon_sym_BQUOTE, + [310654] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15669), 1, anon_sym_RPAREN, - [309146] = 2, + [310661] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309153] = 2, + ACTIONS(15671), 1, + aux_sym_brace_expression_token1, + [310668] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15659), 1, - anon_sym_BQUOTE, - [309160] = 2, + ACTIONS(15673), 1, + anon_sym_RPAREN, + [310675] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15671), 1, + ACTIONS(15663), 1, anon_sym_BQUOTE, - [309167] = 2, + [310682] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15673), 1, + ACTIONS(15675), 1, anon_sym_RPAREN, - [309174] = 2, + [310689] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15675), 1, - aux_sym_brace_expression_token1, - [309181] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(15677), 1, - aux_sym_heredoc_redirect_token1, - [309188] = 2, + anon_sym_RBRACE2, + [310696] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15679), 1, anon_sym_RPAREN, - [309195] = 2, + [310703] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15681), 1, - anon_sym_RPAREN, - [309202] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15683), 1, anon_sym_RBRACE2, - [309209] = 2, + [310710] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15669), 1, - anon_sym_BQUOTE, - [309216] = 2, + ACTIONS(15683), 1, + anon_sym_RBRACK_RBRACK, + [310717] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15685), 1, - anon_sym_fi, - [309223] = 2, + ts_builtin_sym_end, + [310724] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15687), 1, - anon_sym_RBRACE2, - [309230] = 2, - ACTIONS(71), 1, + aux_sym_brace_expression_token1, + [310731] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15689), 1, + aux_sym_heredoc_redirect_token1, + [310738] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15271), 1, anon_sym_RBRACE3, - [309237] = 2, + [310745] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15691), 1, - aux_sym_brace_expression_token1, - [309244] = 2, + anon_sym_BQUOTE, + [310752] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15679), 1, + anon_sym_BQUOTE, + [310759] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15693), 1, anon_sym_RPAREN, - [309251] = 2, - ACTIONS(71), 1, + [310766] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15695), 1, - anon_sym_RPAREN, - [309258] = 2, + aux_sym_heredoc_redirect_token1, + [310773] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15697), 1, - anon_sym_BQUOTE, - [309265] = 2, + anon_sym_RBRACE3, + [310780] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15699), 1, anon_sym_RBRACE3, - [309272] = 2, + [310787] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15701), 1, - anon_sym_BQUOTE, - [309279] = 2, + aux_sym_brace_expression_token1, + [310794] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15703), 1, anon_sym_RBRACE2, - [309286] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15693), 1, - anon_sym_BQUOTE, - [309293] = 2, + [310801] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15705), 1, anon_sym_RPAREN, - [309300] = 2, + [310808] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15707), 1, - aux_sym_brace_expression_token1, - [309307] = 2, + anon_sym_RBRACE3, + [310815] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15709), 1, - anon_sym_RPAREN, - [309314] = 2, + anon_sym_BQUOTE, + [310822] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15711), 1, - anon_sym_RPAREN, - [309321] = 2, + ACTIONS(15705), 1, + anon_sym_BQUOTE, + [310829] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [309328] = 2, + ACTIONS(15711), 1, + anon_sym_RPAREN, + [310836] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15713), 1, - anon_sym_RBRACE2, - [309335] = 2, - ACTIONS(71), 1, + anon_sym_RPAREN, + [310843] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15715), 1, - anon_sym_BQUOTE, - [309342] = 2, + aux_sym_heredoc_redirect_token1, + [310850] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15717), 1, - anon_sym_RBRACE3, - [309349] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15711), 1, - anon_sym_BQUOTE, - [309356] = 2, - ACTIONS(71), 1, + aux_sym_brace_expression_token1, + [310857] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15719), 1, - anon_sym_RPAREN, - [309363] = 2, + aux_sym_heredoc_redirect_token1, + [310864] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15721), 1, - aux_sym_brace_expression_token1, - [309370] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [309377] = 2, + anon_sym_RBRACE2, + [310871] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15723), 1, - anon_sym_BQUOTE, - [309384] = 2, + anon_sym_RPAREN, + [310878] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15719), 1, - anon_sym_BQUOTE, - [309391] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(15725), 1, - aux_sym_heredoc_redirect_token1, - [309398] = 2, + anon_sym_RBRACE2, + [310885] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15679), 1, - anon_sym_BQUOTE, - [309405] = 2, + ACTIONS(14820), 1, + anon_sym_RBRACE3, + [310892] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15727), 1, - anon_sym_RPAREN, - [309412] = 2, - ACTIONS(71), 1, + anon_sym_BQUOTE, + [310899] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15729), 1, - anon_sym_RPAREN, - [309419] = 2, + aux_sym_heredoc_redirect_token1, + [310906] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15731), 1, - anon_sym_esac, - [309426] = 2, + anon_sym_BQUOTE, + [310913] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15733), 1, aux_sym_brace_expression_token1, - [309433] = 2, - ACTIONS(71), 1, + [310920] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15735), 1, - anon_sym_RBRACE2, - [309440] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309447] = 2, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + [310927] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15737), 1, - anon_sym_RPAREN, - [309454] = 2, + aux_sym_heredoc_redirect_token1, + [310934] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309461] = 2, + ACTIONS(15673), 1, + anon_sym_BQUOTE, + [310941] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15739), 1, - anon_sym_esac, - [309468] = 2, + anon_sym_RBRACE3, + [310948] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15741), 1, - anon_sym_RBRACE3, - [309475] = 2, + anon_sym_RPAREN, + [310955] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15743), 1, - anon_sym_RBRACE2, - [309482] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15092), 1, anon_sym_RBRACE3, - [309489] = 2, - ACTIONS(71), 1, + [310962] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15745), 1, - aux_sym_brace_expression_token1, - [309496] = 2, + aux_sym_heredoc_redirect_token1, + [310969] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15713), 1, + anon_sym_BQUOTE, + [310976] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15747), 1, - anon_sym_RBRACE2, - [309503] = 2, + aux_sym_brace_expression_token1, + [310983] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15749), 1, anon_sym_RPAREN, - [309510] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9852), 1, - anon_sym_RBRACK, - [309517] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9784), 1, - anon_sym_RBRACK, - [309524] = 2, - ACTIONS(71), 1, + [310990] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15751), 1, - anon_sym_RBRACE2, - [309531] = 2, + aux_sym_heredoc_redirect_token1, + [310997] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15753), 1, - sym_word, - [309538] = 2, + anon_sym_BQUOTE, + [311004] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15741), 1, + anon_sym_BQUOTE, + [311011] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15755), 1, - aux_sym_brace_expression_token1, - [309545] = 2, + anon_sym_RPAREN, + [311018] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15757), 1, anon_sym_RBRACE3, - [309552] = 2, + [311025] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15759), 1, - anon_sym_RPAREN, - [309559] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15761), 1, anon_sym_RBRACE2, - [309566] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309573] = 2, + [311032] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14954), 1, - anon_sym_fi, - [309580] = 2, + ACTIONS(15761), 1, + anon_sym_RPAREN, + [311039] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15763), 1, - anon_sym_RPAREN, - [309587] = 2, + aux_sym_brace_expression_token1, + [311046] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15765), 1, - aux_sym_brace_expression_token1, - [309594] = 2, + anon_sym_RBRACE2, + [311053] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15767), 1, + anon_sym_RPAREN, + [311060] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14528), 1, anon_sym_RBRACE3, - [309601] = 2, + [311067] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15769), 1, - anon_sym_esac, - [309608] = 2, + anon_sym_RPAREN, + [311074] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(15088), 1, anon_sym_RBRACE3, - [309615] = 2, + [311081] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15771), 1, anon_sym_BQUOTE, - [309622] = 2, + [311088] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15773), 1, - anon_sym_esac, - [309629] = 2, + aux_sym_brace_expression_token1, + [311095] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15763), 1, - anon_sym_BQUOTE, - [309636] = 2, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [311102] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15775), 1, - aux_sym_brace_expression_token1, - [309643] = 2, + anon_sym_RBRACE3, + [311109] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15777), 1, anon_sym_RPAREN, - [309650] = 2, + [311116] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15779), 1, - anon_sym_RPAREN, - [309657] = 2, + anon_sym_BQUOTE, + [311123] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15781), 1, - anon_sym_RBRACE3, - [309664] = 2, + anon_sym_RPAREN, + [311130] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15783), 1, - anon_sym_RBRACE2, - [309671] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [311137] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [309678] = 2, + ACTIONS(15783), 1, + aux_sym_brace_expression_token1, + [311144] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15785), 1, - anon_sym_RBRACE2, - [309685] = 2, + anon_sym_RBRACE3, + [311151] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15787), 1, - aux_sym_brace_expression_token1, - [309692] = 2, + anon_sym_RPAREN, + [311158] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15789), 1, - anon_sym_RBRACE3, - [309699] = 2, + anon_sym_BQUOTE, + [311165] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15058), 1, - anon_sym_fi, - [309706] = 2, + ACTIONS(15791), 1, + anon_sym_BQUOTE, + [311172] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15791), 1, - anon_sym_RBRACE3, - [309713] = 2, + ACTIONS(15787), 1, + anon_sym_BQUOTE, + [311179] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15769), 1, + anon_sym_BQUOTE, + [311186] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15793), 1, - anon_sym_esac, - [309720] = 2, + aux_sym_brace_expression_token1, + [311193] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15795), 1, anon_sym_RPAREN, - [309727] = 2, - ACTIONS(71), 1, + [311200] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15797), 1, - anon_sym_esac, - [309734] = 2, + aux_sym_heredoc_redirect_token1, + [311207] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15781), 1, + anon_sym_BQUOTE, + [311214] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15799), 1, - aux_sym_brace_expression_token1, - [309741] = 2, + anon_sym_RBRACE2, + [311221] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15801), 1, - anon_sym_BQUOTE, - [309748] = 2, + anon_sym_in, + [311228] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15803), 1, - anon_sym_RBRACE3, - [309755] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309762] = 2, + anon_sym_RPAREN, + [311235] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15805), 1, - anon_sym_RBRACK_RBRACK, - [309769] = 2, - ACTIONS(71), 1, + aux_sym_brace_expression_token1, + [311242] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(15807), 1, - sym_heredoc_end, - [309776] = 2, + aux_sym_heredoc_redirect_token1, + [311249] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15809), 1, - sym_heredoc_end, - [309783] = 2, + anon_sym_RPAREN, + [311256] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15811), 1, - aux_sym_brace_expression_token1, - [309790] = 2, + anon_sym_RBRACE2, + [311263] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9928), 1, + anon_sym_RBRACK, + [311270] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9926), 1, + anon_sym_RBRACK, + [311277] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15813), 1, - anon_sym_RPAREN, - [309797] = 2, + anon_sym_RBRACE2, + [311284] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15815), 1, - anon_sym_RBRACK_RBRACK, - [309804] = 2, + aux_sym_brace_expression_token1, + [311291] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15817), 1, + ACTIONS(15761), 1, anon_sym_BQUOTE, - [309811] = 2, + [311298] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15817), 1, + anon_sym_RBRACE2, + [311305] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15607), 1, + aux_sym__simple_variable_name_token1, + [311312] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15819), 1, anon_sym_RBRACE3, - [309818] = 2, + [311319] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15821), 1, + anon_sym_RPAREN, + [311326] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14974), 1, anon_sym_fi, - [309825] = 2, + [311333] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15823), 1, - anon_sym_esac, - [309832] = 2, + aux_sym_brace_expression_token1, + [311340] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15825), 1, - aux_sym_brace_expression_token1, - [309839] = 2, + anon_sym_RBRACE3, + [311347] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15827), 1, - anon_sym_esac, - [309846] = 2, + anon_sym_RPAREN, + [311354] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15829), 1, - anon_sym_RPAREN, - [309853] = 2, + anon_sym_esac, + [311361] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15831), 1, anon_sym_RBRACE3, - [309860] = 2, + [311368] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15833), 1, - anon_sym_BQUOTE, - [309867] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15829), 1, - anon_sym_BQUOTE, - [309874] = 2, + anon_sym_RPAREN, + [311375] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15835), 1, - anon_sym_RPAREN, - [309881] = 2, + anon_sym_esac, + [311382] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15837), 1, aux_sym_brace_expression_token1, - [309888] = 2, + [311389] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15839), 1, - anon_sym_esac, - [309895] = 2, + anon_sym_in, + [311396] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15841), 1, - anon_sym_esac, - [309902] = 2, + anon_sym_BQUOTE, + [311403] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15843), 1, + ACTIONS(15833), 1, anon_sym_BQUOTE, - [309909] = 2, + [311410] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15845), 1, + ACTIONS(15843), 1, anon_sym_RPAREN, - [309916] = 2, + [311417] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15847), 1, - anon_sym_RBRACE2, - [309923] = 2, + ACTIONS(15845), 1, + anon_sym_RPAREN, + [311424] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15813), 1, + ACTIONS(15847), 1, anon_sym_BQUOTE, - [309930] = 2, + [311431] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15849), 1, aux_sym_brace_expression_token1, - [309937] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15851), 1, - anon_sym_BQUOTE, - [309944] = 2, + [311438] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15845), 1, + ACTIONS(15827), 1, anon_sym_BQUOTE, - [309951] = 2, + [311445] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15853), 1, + ACTIONS(15851), 1, anon_sym_RPAREN, - [309958] = 2, + [311452] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15795), 1, - anon_sym_BQUOTE, - [309965] = 2, + ACTIONS(15000), 1, + anon_sym_fi, + [311459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15853), 1, + aux_sym_heredoc_redirect_token1, + [311466] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15855), 1, - anon_sym_RPAREN, - [309972] = 2, + anon_sym_esac, + [311473] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15857), 1, anon_sym_RPAREN, - [309979] = 2, + [311480] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15859), 1, aux_sym_brace_expression_token1, - [309986] = 2, + [311487] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15861), 1, - anon_sym_RBRACE2, - [309993] = 2, + anon_sym_esac, + [311494] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15863), 1, - anon_sym_RPAREN, - [310000] = 2, + anon_sym_RBRACE2, + [311501] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15865), 1, anon_sym_RBRACE3, - [310007] = 2, + [311508] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15867), 1, + ACTIONS(15088), 1, anon_sym_RBRACE3, - [310014] = 2, + [311515] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15867), 1, + anon_sym_RBRACE2, + [311522] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15869), 1, - anon_sym_RPAREN, - [310021] = 2, + sym_heredoc_end, + [311529] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15871), 1, - anon_sym_RBRACE2, - [310028] = 2, + aux_sym_brace_expression_token1, + [311536] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15873), 1, - aux_sym_brace_expression_token1, - [310035] = 2, + sym_heredoc_end, + [311543] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15875), 1, - anon_sym_BQUOTE, - [310042] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15869), 1, - anon_sym_BQUOTE, - [310049] = 2, + anon_sym_RBRACE3, + [311550] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15877), 1, - anon_sym_RBRACE2, - [310056] = 2, + anon_sym_RPAREN, + [311557] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15879), 1, - anon_sym_RPAREN, - [310063] = 2, + anon_sym_BQUOTE, + [311564] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15881), 1, - anon_sym_RPAREN, - [310070] = 2, + anon_sym_BQUOTE, + [311571] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15883), 1, - anon_sym_RPAREN, - [310077] = 2, + anon_sym_fi, + [311578] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15885), 1, aux_sym_brace_expression_token1, - [310084] = 2, + [311585] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15887), 1, - anon_sym_RBRACE2, - [310091] = 2, + anon_sym_esac, + [311592] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15889), 1, - anon_sym_LT_LT_LT, - [310098] = 2, + anon_sym_esac, + [311599] = 2, ACTIONS(71), 1, sym_comment, + ACTIONS(15877), 1, + anon_sym_BQUOTE, + [311606] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(15891), 1, - aux_sym_brace_expression_token1, - [310105] = 2, + aux_sym_heredoc_redirect_token1, + [311613] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15893), 1, - anon_sym_RPAREN_RPAREN, - [310112] = 2, + sym_heredoc_start, + [311620] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15895), 1, - anon_sym_in, - [310119] = 2, + anon_sym_RPAREN, + [311627] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15897), 1, - anon_sym_RBRACE3, - [310126] = 2, + aux_sym_brace_expression_token1, + [311634] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15809), 1, + anon_sym_BQUOTE, + [311641] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15899), 1, - aux_sym_brace_expression_token1, - [310133] = 2, + anon_sym_esac, + [311648] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15901), 1, - anon_sym_RBRACE3, - [310140] = 2, + anon_sym_esac, + [311655] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15903), 1, - anon_sym_RPAREN, - [310147] = 2, + anon_sym_RBRACE3, + [311662] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15905), 1, anon_sym_RPAREN, - [310154] = 2, + [311669] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15907), 1, + ACTIONS(15088), 1, anon_sym_RBRACE3, - [310161] = 2, + [311676] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15907), 1, + aux_sym_brace_expression_token1, + [311683] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15909), 1, - anon_sym_RPAREN, - [310168] = 2, + anon_sym_DOT_DOT, + [311690] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15911), 1, - anon_sym_in, - [310175] = 2, + anon_sym_RBRACE3, + [311697] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15913), 1, - aux_sym_brace_expression_token1, - [310182] = 2, + anon_sym_RBRACE3, + [311704] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15915), 1, - anon_sym_BQUOTE, - [310189] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15917), 1, anon_sym_RBRACE3, - [310196] = 2, + [311711] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15919), 1, + ACTIONS(15917), 1, anon_sym_RPAREN, - [310203] = 2, + [311718] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15779), 1, - anon_sym_BQUOTE, - [310210] = 2, + ACTIONS(15919), 1, + anon_sym_RBRACE3, + [311725] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15921), 1, - anon_sym_BQUOTE, - [310217] = 2, + aux_sym_brace_expression_token1, + [311732] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15923), 1, - anon_sym_BQUOTE, - [310224] = 2, + anon_sym_RPAREN, + [311739] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15925), 1, - aux_sym_brace_expression_token1, - [310231] = 2, + anon_sym_BQUOTE, + [311746] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15927), 1, - ts_builtin_sym_end, - [310238] = 2, + anon_sym_BQUOTE, + [311753] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15923), 1, + anon_sym_BQUOTE, + [311760] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15929), 1, - anon_sym_esac, - [310245] = 2, + anon_sym_RPAREN, + [311767] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15931), 1, + ACTIONS(15905), 1, anon_sym_BQUOTE, - [310252] = 2, + [311774] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15919), 1, - anon_sym_BQUOTE, - [310259] = 2, + ACTIONS(15931), 1, + aux_sym_brace_expression_token1, + [311781] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15933), 1, - anon_sym_RPAREN, - [310266] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [311788] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15881), 1, - anon_sym_BQUOTE, - [310273] = 2, + ACTIONS(15933), 1, + anon_sym_RBRACE2, + [311795] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15935), 1, - aux_sym_brace_expression_token1, - [310280] = 2, + sym_heredoc_start, + [311802] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15909), 1, + ACTIONS(15937), 1, anon_sym_BQUOTE, - [310287] = 2, + [311809] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15937), 1, - anon_sym_RBRACE2, - [310294] = 2, - ACTIONS(3), 1, + ACTIONS(15917), 1, + anon_sym_BQUOTE, + [311816] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(15939), 1, - aux_sym_heredoc_redirect_token1, - [310301] = 2, + anon_sym_RPAREN, + [311823] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15941), 1, - anon_sym_RPAREN, - [310308] = 2, + aux_sym_brace_expression_token1, + [311830] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15943), 1, anon_sym_RPAREN, - [310315] = 2, + [311837] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15945), 1, - sym_heredoc_end, - [310322] = 2, + anon_sym_RPAREN, + [311844] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15947), 1, - aux_sym_brace_expression_token1, - [310329] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15903), 1, - anon_sym_BQUOTE, - [310336] = 2, + anon_sym_RBRACE3, + [311851] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15949), 1, anon_sym_RBRACE2, - [310343] = 2, - ACTIONS(3), 1, + [311858] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [311865] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(15951), 1, - aux_sym_heredoc_redirect_token1, - [310350] = 2, + anon_sym_RBRACE3, + [311872] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15953), 1, - anon_sym_RPAREN, - [310357] = 2, + aux_sym_brace_expression_token1, + [311879] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15955), 1, - anon_sym_RBRACE3, - [310364] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [310371] = 2, + anon_sym_RPAREN, + [311886] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15957), 1, aux_sym_brace_expression_token1, - [310378] = 2, + [311893] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15959), 1, - anon_sym_RPAREN, - [310385] = 2, + anon_sym_BQUOTE, + [311900] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15955), 1, + anon_sym_BQUOTE, + [311907] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15961), 1, - anon_sym_RBRACE3, - [310392] = 2, + anon_sym_RBRACE2, + [311914] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15963), 1, anon_sym_RPAREN, - [310399] = 2, + [311921] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15965), 1, - anon_sym_RPAREN, - [310406] = 2, + aux_sym_brace_expression_token1, + [311928] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15967), 1, - anon_sym_BQUOTE, - [310413] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [311935] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15963), 1, - anon_sym_BQUOTE, - [310420] = 2, + ACTIONS(15967), 1, + anon_sym_RPAREN, + [311942] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15969), 1, - aux_sym_brace_expression_token1, - [310427] = 2, + anon_sym_RBRACE2, + [311949] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14906), 1, + anon_sym_RBRACE3, + [311956] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15971), 1, - anon_sym_RPAREN, - [310434] = 2, + anon_sym_RBRACE2, + [311963] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15973), 1, - anon_sym_RBRACE2, - [310441] = 2, + anon_sym_BQUOTE, + [311970] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15975), 1, - anon_sym_RBRACE2, - [310448] = 2, + aux_sym_brace_expression_token1, + [311977] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15977), 1, + ACTIONS(14906), 1, + anon_sym_RBRACE3, + [311984] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15967), 1, anon_sym_BQUOTE, - [310455] = 2, + [311991] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15115), 1, + anon_sym_RBRACE3, + [311998] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15115), 1, + anon_sym_RBRACE3, + [312005] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15977), 1, + anon_sym_RPAREN, + [312012] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14906), 1, + anon_sym_RBRACE3, + [312019] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15979), 1, - anon_sym_RBRACE2, - [310462] = 2, + aux_sym_brace_expression_token1, + [312026] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15981), 1, anon_sym_RBRACE2, - [310469] = 2, + [312033] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15983), 1, - aux_sym_brace_expression_token1, - [310476] = 2, + anon_sym_RPAREN, + [312040] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15985), 1, - anon_sym_BQUOTE, - [310483] = 2, + anon_sym_RBRACE3, + [312047] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15987), 1, anon_sym_RBRACE3, - [310490] = 2, + [312054] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15989), 1, anon_sym_RPAREN, - [310497] = 2, + [312061] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15991), 1, - anon_sym_RBRACE3, - [310504] = 2, + anon_sym_RPAREN_RPAREN, + [312068] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15993), 1, - anon_sym_RPAREN, - [310511] = 2, + aux_sym_brace_expression_token1, + [312075] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15995), 1, - anon_sym_RBRACK_RBRACK, - [310518] = 2, + anon_sym_BQUOTE, + [312082] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15989), 1, + anon_sym_BQUOTE, + [312089] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15997), 1, - aux_sym_brace_expression_token1, - [310525] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [312096] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [312103] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(15999), 1, - aux_sym_heredoc_redirect_token1, - [310532] = 2, + anon_sym_RPAREN, + [312110] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14906), 1, + anon_sym_RBRACE3, + [312117] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16001), 1, - anon_sym_RPAREN, - [310539] = 2, + aux_sym_brace_expression_token1, + [312124] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16003), 1, - anon_sym_BQUOTE, - [310546] = 2, + anon_sym_RBRACE2, + [312131] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16005), 1, anon_sym_RBRACE3, - [310553] = 2, - ACTIONS(3), 1, + [312138] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16007), 1, - aux_sym_heredoc_redirect_token1, - [310560] = 2, + anon_sym_BQUOTE, + [312145] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16009), 1, - anon_sym_RPAREN, - [310567] = 2, - ACTIONS(71), 1, + anon_sym_BQUOTE, + [312152] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16011), 1, - aux_sym_brace_expression_token1, - [310574] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16013), 1, - sym_heredoc_start, - [310581] = 2, + aux_sym_heredoc_redirect_token1, + [312159] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16015), 1, + ACTIONS(15999), 1, anon_sym_BQUOTE, - [310588] = 2, + [312166] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16009), 1, - anon_sym_BQUOTE, - [310595] = 2, + ACTIONS(16013), 1, + aux_sym_brace_expression_token1, + [312173] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16017), 1, + ACTIONS(16015), 1, anon_sym_RPAREN, - [310602] = 2, + [312180] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16019), 1, - sym_heredoc_end, - [310609] = 2, + ACTIONS(16017), 1, + anon_sym_BQUOTE, + [312187] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15993), 1, - anon_sym_BQUOTE, - [310616] = 2, + ACTIONS(16019), 1, + anon_sym_RBRACE2, + [312194] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16021), 1, - aux_sym_brace_expression_token1, - [310623] = 2, + anon_sym_RBRACE2, + [312201] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16023), 1, anon_sym_RBRACE2, - [310630] = 2, + [312208] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15115), 1, + anon_sym_RBRACE3, + [312215] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16025), 1, - anon_sym_RPAREN, - [310637] = 2, + aux_sym_brace_expression_token1, + [312222] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16027), 1, - anon_sym_RBRACK_RBRACK, - [310644] = 2, - ACTIONS(71), 1, + anon_sym_RPAREN, + [312229] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16029), 1, - anon_sym_RBRACE3, - [310651] = 2, + aux_sym_heredoc_redirect_token1, + [312236] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16031), 1, anon_sym_RBRACE3, - [310658] = 2, + [312243] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16033), 1, anon_sym_BQUOTE, - [310665] = 2, + [312250] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16035), 1, - aux_sym_brace_expression_token1, - [310672] = 2, + anon_sym_RPAREN, + [312257] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15983), 1, + anon_sym_BQUOTE, + [312264] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16037), 1, - anon_sym_RBRACE2, - [310679] = 2, + aux_sym_brace_expression_token1, + [312271] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16039), 1, - anon_sym_RPAREN, - [310686] = 2, + sym_word, + [312278] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16041), 1, - anon_sym_RBRACE3, - [310693] = 2, + anon_sym_RPAREN, + [312285] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16043), 1, - anon_sym_RPAREN, - [310700] = 2, - ACTIONS(71), 1, + anon_sym_BQUOTE, + [312292] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16045), 1, - anon_sym_RBRACE3, - [310707] = 2, + aux_sym_heredoc_redirect_token1, + [312299] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16047), 1, + anon_sym_RPAREN, + [312306] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16035), 1, anon_sym_BQUOTE, - [310714] = 2, + [312313] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16049), 1, aux_sym_brace_expression_token1, - [310721] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16043), 1, - anon_sym_BQUOTE, - [310728] = 2, + [312320] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16051), 1, anon_sym_RPAREN, - [310735] = 2, + [312327] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16053), 1, - anon_sym_LBRACK, - [310742] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE2, + [312334] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16055), 1, - aux_sym_heredoc_redirect_token1, - [310749] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE2, + [312341] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16057), 1, - aux_sym_heredoc_redirect_token1, - [310756] = 2, + anon_sym_RBRACE2, + [312348] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15115), 1, + anon_sym_RBRACE3, + [312355] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15115), 1, + anon_sym_RBRACE3, + [312362] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16059), 1, + aux_sym_brace_expression_token1, + [312369] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15115), 1, anon_sym_RBRACE3, - [310763] = 2, + [312376] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16061), 1, - aux_sym_brace_expression_token1, - [310770] = 2, + anon_sym_BQUOTE, + [312383] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15989), 1, + ACTIONS(16027), 1, anon_sym_BQUOTE, - [310777] = 2, + [312390] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16063), 1, anon_sym_RBRACE3, - [310784] = 2, + [312397] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16065), 1, - anon_sym_BQUOTE, - [310791] = 2, + anon_sym_RPAREN, + [312404] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16039), 1, - anon_sym_BQUOTE, - [310798] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(16067), 1, - aux_sym_heredoc_redirect_token1, - [310805] = 2, + anon_sym_RBRACK_RBRACK, + [312411] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16069), 1, - anon_sym_RPAREN, - [310812] = 2, + aux_sym_brace_expression_token1, + [312418] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16071), 1, - aux_sym_brace_expression_token1, - [310819] = 2, + anon_sym_BQUOTE, + [312425] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16073), 1, - anon_sym_RPAREN, - [310826] = 2, + anon_sym_RBRACE3, + [312432] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15863), 1, - anon_sym_BQUOTE, - [310833] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(16075), 1, - aux_sym_heredoc_redirect_token1, - [310840] = 2, + anon_sym_RBRACE3, + [312439] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16077), 1, - anon_sym_BQUOTE, - [310847] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16069), 1, - anon_sym_BQUOTE, - [310854] = 2, + anon_sym_RPAREN, + [312446] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16079), 1, - anon_sym_RPAREN, - [310861] = 2, + anon_sym_BQUOTE, + [312453] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16081), 1, - aux_sym_brace_expression_token1, - [310868] = 2, + anon_sym_RBRACE3, + [312460] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16083), 1, - anon_sym_RBRACE3, - [310875] = 2, + aux_sym_brace_expression_token1, + [312467] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16085), 1, anon_sym_RPAREN, - [310882] = 2, + [312474] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16087), 1, - anon_sym_RBRACE2, - [310889] = 2, + anon_sym_RBRACE3, + [312481] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16089), 1, - anon_sym_RBRACE2, - [310896] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15965), 1, anon_sym_BQUOTE, - [310903] = 2, + [312488] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [310910] = 2, + ACTIONS(16085), 1, + anon_sym_BQUOTE, + [312495] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16091), 1, - aux_sym_brace_expression_token1, - [310917] = 2, + anon_sym_RPAREN, + [312502] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16093), 1, - anon_sym_RBRACE3, - [310924] = 2, + anon_sym_RPAREN, + [312509] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16095), 1, - anon_sym_RBRACE2, - [310931] = 2, + aux_sym_brace_expression_token1, + [312516] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16097), 1, - anon_sym_RPAREN, - [310938] = 2, + anon_sym_BQUOTE, + [312523] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14994), 1, - anon_sym_RBRACE3, - [310945] = 2, + ACTIONS(16099), 1, + anon_sym_BQUOTE, + [312530] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16099), 1, - anon_sym_LT_LT_LT, - [310952] = 2, + ACTIONS(16093), 1, + anon_sym_BQUOTE, + [312537] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16101), 1, anon_sym_RPAREN, - [310959] = 2, + [312544] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16065), 1, + anon_sym_BQUOTE, + [312551] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16103), 1, - aux_sym_brace_expression_token1, - [310966] = 2, + anon_sym_BQUOTE, + [312558] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16105), 1, - anon_sym_RBRACE3, - [310973] = 2, + aux_sym_brace_expression_token1, + [312565] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16107), 1, - anon_sym_RPAREN, - [310980] = 2, + anon_sym_RBRACE2, + [312572] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16109), 1, anon_sym_BQUOTE, - [310987] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9954), 1, - anon_sym_RBRACK, - [310994] = 2, + [312579] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9892), 1, - anon_sym_RBRACK, - [311001] = 2, + ACTIONS(16077), 1, + anon_sym_BQUOTE, + [312586] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16111), 1, - anon_sym_RBRACE2, - [311008] = 2, + anon_sym_RPAREN, + [312593] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16113), 1, - aux_sym_brace_expression_token1, - [311015] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [312600] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16115), 1, - aux_sym_heredoc_redirect_token1, - [311022] = 2, + anon_sym_fi, + [312607] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16117), 1, + aux_sym_brace_expression_token1, + [312614] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15107), 1, anon_sym_RBRACE3, - [311029] = 2, + [312621] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16119), 1, anon_sym_RPAREN, - [311036] = 2, + [312628] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14822), 1, + anon_sym_fi, + [312635] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16121), 1, - anon_sym_BQUOTE, - [311043] = 2, + anon_sym_RPAREN, + [312642] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16123), 1, - anon_sym_BQUOTE, - [311050] = 2, + ACTIONS(14824), 1, + anon_sym_RBRACE3, + [312649] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14958), 1, - anon_sym_fi, - [311057] = 2, + ACTIONS(16123), 1, + anon_sym_LT_LT_LT, + [312656] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16125), 1, aux_sym_brace_expression_token1, - [311064] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16119), 1, - anon_sym_BQUOTE, - [311071] = 2, + [312663] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16127), 1, - anon_sym_RPAREN, - [311078] = 2, + anon_sym_RBRACE3, + [312670] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16129), 1, - anon_sym_esac, - [311085] = 2, + anon_sym_RBRACE2, + [312677] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(16131), 1, anon_sym_RBRACE3, - [311092] = 2, + [312684] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16131), 1, - aux_sym_brace_expression_token1, - [311099] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [312691] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16133), 1, - anon_sym_esac, - [311106] = 2, + anon_sym_RBRACE3, + [312698] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16135), 1, + anon_sym_RPAREN, + [312705] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16137), 1, aux_sym_brace_expression_token1, - [311113] = 2, + [312712] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16107), 1, - anon_sym_BQUOTE, - [311120] = 2, + ACTIONS(9876), 1, + anon_sym_RBRACK, + [312719] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16137), 1, + ACTIONS(16139), 1, anon_sym_RBRACE2, - [311127] = 2, + [312726] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16139), 1, - anon_sym_RPAREN, - [311134] = 2, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [312733] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16141), 1, anon_sym_RPAREN, - [311141] = 2, + [312740] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16143), 1, - anon_sym_RPAREN_RPAREN, - [311148] = 2, + anon_sym_RPAREN, + [312747] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [311155] = 2, + ACTIONS(16145), 1, + anon_sym_LT_LT_LT, + [312754] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16145), 1, + ACTIONS(16147), 1, aux_sym_brace_expression_token1, - [311162] = 2, + [312761] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16147), 1, - anon_sym_RBRACE2, - [311169] = 2, + ACTIONS(9946), 1, + anon_sym_RBRACK, + [312768] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16149), 1, - anon_sym_RBRACE3, - [311176] = 2, + ACTIONS(9854), 1, + anon_sym_RBRACK, + [312775] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15012), 1, - anon_sym_fi, - [311183] = 2, + ACTIONS(16149), 1, + anon_sym_RBRACE2, + [312782] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16151), 1, - anon_sym_RBRACE2, - [311190] = 2, + aux_sym_brace_expression_token1, + [312789] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16153), 1, - anon_sym_esac, - [311197] = 2, + anon_sym_BQUOTE, + [312796] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15905), 1, + ACTIONS(16135), 1, anon_sym_BQUOTE, - [311204] = 2, + [312803] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16155), 1, aux_sym_brace_expression_token1, - [311211] = 2, + [312810] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16157), 1, - anon_sym_esac, - [311218] = 2, + anon_sym_RPAREN, + [312817] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [312824] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14854), 1, + anon_sym_fi, + [312831] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16159), 1, - anon_sym_RPAREN, - [311225] = 2, + anon_sym_RPAREN_RPAREN, + [312838] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16161), 1, - anon_sym_RBRACE2, - [311232] = 2, + anon_sym_RBRACE3, + [312845] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16163), 1, - anon_sym_RPAREN, - [311239] = 2, + anon_sym_esac, + [312852] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16165), 1, - sym_heredoc_end, - [311246] = 2, + aux_sym_brace_expression_token1, + [312859] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16167), 1, - sym_heredoc_end, - [311253] = 2, + anon_sym_in, + [312866] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16169), 1, - aux_sym_brace_expression_token1, - [311260] = 2, + anon_sym_in, + [312873] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16171), 1, - anon_sym_RBRACE3, - [311267] = 2, + anon_sym_esac, + [312880] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16173), 1, - anon_sym_RPAREN, - [311274] = 2, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [312887] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [311281] = 2, + ACTIONS(16173), 1, + anon_sym_RBRACE2, + [312894] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16175), 1, - anon_sym_BQUOTE, - [311288] = 2, + anon_sym_RPAREN, + [312901] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16177), 1, - anon_sym_fi, - [311295] = 2, + aux_sym_brace_expression_token1, + [312908] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16179), 1, - anon_sym_esac, - [311302] = 2, + anon_sym_RPAREN, + [312915] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16181), 1, - aux_sym_brace_expression_token1, - [311309] = 2, + anon_sym_BQUOTE, + [312922] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16141), 1, + anon_sym_BQUOTE, + [312929] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16183), 1, - anon_sym_esac, - [311316] = 2, + anon_sym_RPAREN, + [312936] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16173), 1, + ACTIONS(15767), 1, anon_sym_BQUOTE, - [311323] = 2, + [312943] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16185), 1, - anon_sym_RPAREN, - [311330] = 2, + ACTIONS(14880), 1, + anon_sym_fi, + [312950] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16187), 1, - anon_sym_RBRACE3, - [311337] = 2, + ACTIONS(16185), 1, + aux_sym_brace_expression_token1, + [312957] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(16187), 1, anon_sym_RBRACE3, - [311344] = 2, + [312964] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16189), 1, - anon_sym_RBRACE2, - [311351] = 2, + anon_sym_esac, + [312971] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16191), 1, - aux_sym_brace_expression_token1, - [311358] = 2, + anon_sym_RBRACE3, + [312978] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16193), 1, anon_sym_esac, - [311365] = 2, + [312985] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16195), 1, - anon_sym_esac, - [311372] = 2, + anon_sym_RPAREN, + [312992] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16197), 1, - anon_sym_RPAREN, - [311379] = 2, + ACTIONS(15669), 1, + anon_sym_BQUOTE, + [312999] = 2, ACTIONS(71), 1, sym_comment, + ACTIONS(16197), 1, + aux_sym_brace_expression_token1, + [313006] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(16199), 1, - anon_sym_RBRACE3, - [311386] = 2, + aux_sym_heredoc_redirect_token1, + [313013] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16201), 1, - anon_sym_BQUOTE, - [311393] = 2, + sym_heredoc_end, + [313020] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16203), 1, - anon_sym_RBRACE3, - [311400] = 2, - ACTIONS(71), 1, + sym_heredoc_end, + [313027] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16205), 1, - aux_sym_brace_expression_token1, - [311407] = 2, + aux_sym_heredoc_redirect_token1, + [313034] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16207), 1, - anon_sym_RBRACE3, - [311414] = 2, + anon_sym_BQUOTE, + [313041] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16197), 1, + ACTIONS(16195), 1, anon_sym_BQUOTE, - [311421] = 2, + [313048] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16209), 1, - anon_sym_RPAREN, - [311428] = 2, + aux_sym_brace_expression_token1, + [313055] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16211), 1, - anon_sym_in, - [311435] = 2, + anon_sym_RPAREN, + [313062] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16213), 1, - anon_sym_BQUOTE, - [311442] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16209), 1, - anon_sym_BQUOTE, - [311449] = 2, + anon_sym_fi, + [313069] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16215), 1, - aux_sym_brace_expression_token1, - [311456] = 2, + anon_sym_esac, + [313076] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16217), 1, - anon_sym_RBRACE3, - [311463] = 2, + anon_sym_esac, + [313083] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16219), 1, - anon_sym_RPAREN, - [311470] = 2, - ACTIONS(71), 1, + anon_sym_RBRACE3, + [313090] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16221), 1, - anon_sym_RPAREN, - [311477] = 2, + aux_sym_heredoc_redirect_token1, + [313097] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16223), 1, - anon_sym_RPAREN, - [311484] = 2, - ACTIONS(71), 1, + aux_sym_brace_expression_token1, + [313104] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16225), 1, - anon_sym_BQUOTE, - [311491] = 2, + aux_sym_heredoc_redirect_token1, + [313111] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16227), 1, - anon_sym_in, - [311498] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16229), 1, - aux_sym_brace_expression_token1, - [311505] = 2, + anon_sym_RPAREN, + [313118] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16219), 1, + ACTIONS(15723), 1, anon_sym_BQUOTE, - [311512] = 2, + [313125] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16231), 1, - anon_sym_RPAREN, - [311519] = 2, + ACTIONS(16229), 1, + anon_sym_esac, + [313132] = 2, ACTIONS(71), 1, sym_comment, + ACTIONS(16231), 1, + anon_sym_esac, + [313139] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(16233), 1, - anon_sym_RPAREN, - [311526] = 2, + aux_sym_heredoc_redirect_token1, + [313146] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16235), 1, - anon_sym_BQUOTE, - [311533] = 2, + aux_sym_brace_expression_token1, + [313153] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [313160] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16237), 1, - anon_sym_RBRACE2, - [311540] = 2, + anon_sym_BQUOTE, + [313167] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16239), 1, anon_sym_esac, - [311547] = 2, + [313174] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16241), 1, - aux_sym_brace_expression_token1, - [311554] = 2, - ACTIONS(71), 1, + anon_sym_RBRACE2, + [313181] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16243), 1, - anon_sym_RBRACE2, - [311561] = 2, + aux_sym_heredoc_redirect_token1, + [313188] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16227), 1, + anon_sym_BQUOTE, + [313195] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16245), 1, - anon_sym_RBRACE2, - [311568] = 2, + aux_sym_brace_expression_token1, + [313202] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16247), 1, - anon_sym_RBRACE2, - [311575] = 2, + anon_sym_BQUOTE, + [313209] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9852), 1, + anon_sym_RBRACK, + [313216] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16249), 1, - anon_sym_RBRACE3, - [311582] = 2, + anon_sym_BQUOTE, + [313223] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16251), 1, - anon_sym_RPAREN, - [311589] = 2, + anon_sym_RBRACE2, + [313230] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16253), 1, anon_sym_RBRACE3, - [311596] = 2, + [313237] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16255), 1, - aux_sym_brace_expression_token1, - [311603] = 2, + anon_sym_RBRACE3, + [313244] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16257), 1, + aux_sym_brace_expression_token1, + [313251] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16179), 1, anon_sym_BQUOTE, - [311610] = 2, + [313258] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16259), 1, - anon_sym_RBRACE3, - [311617] = 2, + anon_sym_RPAREN, + [313265] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16261), 1, - anon_sym_RPAREN, - [311624] = 2, + ACTIONS(14886), 1, + anon_sym_fi, + [313272] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16251), 1, + ACTIONS(16261), 1, anon_sym_BQUOTE, - [311631] = 2, + [313279] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16263), 1, + ACTIONS(16259), 1, anon_sym_BQUOTE, - [311638] = 2, + [313286] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16261), 1, - anon_sym_BQUOTE, - [311645] = 2, + ACTIONS(16263), 1, + anon_sym_RPAREN, + [313293] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16265), 1, - aux_sym_brace_expression_token1, - [311652] = 2, + anon_sym_RPAREN, + [313300] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16267), 1, - anon_sym_RPAREN, - [311659] = 2, + anon_sym_esac, + [313307] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16269), 1, anon_sym_RPAREN, - [311666] = 2, + [313314] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16271), 1, - anon_sym_BQUOTE, - [311673] = 2, + anon_sym_RBRACE2, + [313321] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16273), 1, - anon_sym_RPAREN, - [311680] = 2, + anon_sym_RBRACE3, + [313328] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16275), 1, - anon_sym_RBRACE3, - [311687] = 2, + anon_sym_BQUOTE, + [313335] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16277), 1, - anon_sym_RPAREN, - [311694] = 2, + sym_word, + [313342] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16279), 1, - aux_sym_brace_expression_token1, - [311701] = 2, + anon_sym_RPAREN, + [313349] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16269), 1, + anon_sym_BQUOTE, + [313356] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16281), 1, - anon_sym_RBRACE2, - [311708] = 2, + anon_sym_RPAREN, + [313363] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16283), 1, - anon_sym_RBRACE3, - [311715] = 2, + aux_sym_brace_expression_token1, + [313370] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16285), 1, - anon_sym_RPAREN, - [311722] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14820), 1, - anon_sym_RBRACE3, - [311729] = 2, + anon_sym_RBRACE2, + [313377] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16287), 1, - anon_sym_LT_LT_LT, - [311736] = 2, + anon_sym_RBRACE2, + [313384] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16289), 1, - anon_sym_BQUOTE, - [311743] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16285), 1, - anon_sym_BQUOTE, - [311750] = 2, + anon_sym_RBRACE2, + [313391] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16291), 1, - anon_sym_BQUOTE, - [311757] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16293), 1, - aux_sym_brace_expression_token1, - [311764] = 2, + anon_sym_RPAREN, + [313398] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16277), 1, - anon_sym_BQUOTE, - [311771] = 2, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [313405] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16233), 1, - anon_sym_BQUOTE, - [311778] = 2, + ACTIONS(16293), 1, + anon_sym_RPAREN, + [313412] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16295), 1, - anon_sym_RPAREN, - [311785] = 2, + ts_builtin_sym_end, + [313419] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16297), 1, - anon_sym_RPAREN, - [311792] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311799] = 2, + anon_sym_BQUOTE, + [313426] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16299), 1, anon_sym_RPAREN, - [311806] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311813] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [311820] = 2, + [313433] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16301), 1, - anon_sym_RBRACE2, - [311827] = 2, + anon_sym_RBRACE3, + [313440] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16303), 1, - anon_sym_RBRACE3, - [311834] = 2, - ACTIONS(71), 1, + anon_sym_RPAREN, + [313447] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16305), 1, - anon_sym_RPAREN, - [311841] = 2, + aux_sym_heredoc_redirect_token1, + [313454] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16307), 1, - anon_sym_BQUOTE, - [311848] = 2, + anon_sym_RBRACE2, + [313461] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16309), 1, anon_sym_BQUOTE, - [311855] = 2, + [313468] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16305), 1, + ACTIONS(16303), 1, anon_sym_BQUOTE, - [311862] = 2, + [313475] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16311), 1, - anon_sym_RBRACK_RBRACK, - [311869] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16273), 1, - anon_sym_BQUOTE, - [311876] = 2, + anon_sym_RPAREN, + [313482] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16313), 1, anon_sym_RPAREN, - [311883] = 2, - ACTIONS(3), 1, + [313489] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16315), 1, - aux_sym_heredoc_redirect_token1, - [311890] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [313496] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [313503] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15175), 1, + anon_sym_RBRACE3, + [313510] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16317), 1, - aux_sym_heredoc_redirect_token1, - [311897] = 2, + anon_sym_RBRACE3, + [313517] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + ACTIONS(15088), 1, anon_sym_RBRACE3, - [311904] = 2, + [313524] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16319), 1, - anon_sym_RBRACE3, - [311911] = 2, + anon_sym_RPAREN, + [313531] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16321), 1, - anon_sym_RPAREN, - [311918] = 2, + anon_sym_RBRACE2, + [313538] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16323), 1, + ACTIONS(15107), 1, anon_sym_RBRACE3, - [311925] = 2, + [313545] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16325), 1, + ACTIONS(16323), 1, anon_sym_BQUOTE, - [311932] = 2, + [313552] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16321), 1, + ACTIONS(16293), 1, anon_sym_BQUOTE, - [311939] = 2, + [313559] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16327), 1, + ACTIONS(16325), 1, anon_sym_RPAREN, - [311946] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16329), 1, - anon_sym_RBRACE3, - [311953] = 2, + [313566] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16331), 1, - anon_sym_RPAREN, - [311960] = 2, + ACTIONS(16327), 1, + anon_sym_RBRACE2, + [313573] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16333), 1, + ACTIONS(16329), 1, anon_sym_RBRACE2, - [311967] = 2, + [313580] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16335), 1, - anon_sym_BQUOTE, - [311974] = 2, + ACTIONS(16331), 1, + anon_sym_RBRACE3, + [313587] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16331), 1, - anon_sym_BQUOTE, - [311981] = 2, + ACTIONS(15619), 1, + aux_sym__simple_variable_name_token1, + [313594] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [311988] = 2, + ACTIONS(16333), 1, + anon_sym_RBRACE2, + [313601] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311995] = 2, + ACTIONS(16335), 1, + anon_sym_RBRACK_RBRACK, + [313608] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16337), 1, - anon_sym_RBRACE2, - [312002] = 2, + sym_word, + [313615] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [312009] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(16339), 1, - aux_sym_heredoc_redirect_token1, - [312016] = 2, + anon_sym_DOT_DOT, + [313622] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [312023] = 2, + ACTIONS(16041), 1, + anon_sym_BQUOTE, + [313629] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16341), 1, anon_sym_RBRACE3, - [312030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16343), 1, - aux_sym_heredoc_redirect_token1, - [312037] = 2, + [313636] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15629), 1, - aux_sym__simple_variable_name_token1, - [312044] = 2, + ACTIONS(16343), 1, + anon_sym_RPAREN, + [313643] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16345), 1, - anon_sym_RPAREN, - [312051] = 2, + sym_heredoc_start, + [313650] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16347), 1, - anon_sym_RBRACE2, - [312058] = 2, + anon_sym_RBRACE3, + [313657] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16349), 1, - sym_word, - [312065] = 2, + anon_sym_RPAREN, + [313664] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16351), 1, - anon_sym_DOT_DOT, - [312072] = 2, + anon_sym_RBRACE3, + [313671] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16353), 1, - anon_sym_BQUOTE, - [312079] = 2, + anon_sym_RBRACE3, + [313678] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16355), 1, - anon_sym_RBRACE3, - [312086] = 2, + sym_heredoc_start, + [313685] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16357), 1, anon_sym_RPAREN, - [312093] = 2, + [313692] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16359), 1, - sym_heredoc_start, - [312100] = 2, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [313699] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16361), 1, - aux_sym_heredoc_redirect_token1, - [312107] = 2, + anon_sym_BQUOTE, + [313706] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16345), 1, + ACTIONS(16357), 1, anon_sym_BQUOTE, - [312114] = 2, + [313713] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16363), 1, - anon_sym_RBRACE3, - [312121] = 2, + anon_sym_RPAREN, + [313720] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16349), 1, + anon_sym_BQUOTE, + [313727] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16365), 1, anon_sym_RPAREN, - [312128] = 2, - ACTIONS(71), 1, + [313734] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16367), 1, - sym_heredoc_start, - [312135] = 2, + aux_sym_heredoc_redirect_token1, + [313741] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16369), 1, - anon_sym_RBRACE3, - [312142] = 2, + anon_sym_RPAREN, + [313748] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16371), 1, - anon_sym_BQUOTE, - [312149] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9704), 1, - anon_sym_RBRACK, - [312156] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9678), 1, - anon_sym_RBRACK, - [312163] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16373), 1, anon_sym_RBRACE2, - [312170] = 2, + [313755] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16365), 1, - anon_sym_BQUOTE, - [312177] = 2, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [313762] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16375), 1, anon_sym_RPAREN, - [312184] = 2, + [313769] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(16377), 1, anon_sym_RBRACE3, - [312191] = 2, + [313776] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14862), 1, - anon_sym_fi, - [312198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16377), 1, - aux_sym_heredoc_redirect_token1, - [312205] = 2, + ACTIONS(15175), 1, + anon_sym_RBRACE3, + [313783] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16379), 1, - anon_sym_RBRACE3, - [312212] = 2, + anon_sym_RPAREN, + [313790] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16381), 1, - anon_sym_esac, - [312219] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14824), 1, - anon_sym_RBRACE3, - [312226] = 2, + anon_sym_LT_LT_LT, + [313797] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16383), 1, - anon_sym_RBRACE2, - [312233] = 2, + anon_sym_BQUOTE, + [313804] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16385), 1, - anon_sym_esac, - [312240] = 2, + ACTIONS(16369), 1, + anon_sym_BQUOTE, + [313811] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - [312247] = 2, + ACTIONS(16385), 1, + aux_sym_brace_expression_token1, + [313818] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16387), 1, anon_sym_RPAREN, - [312254] = 2, + [313825] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16389), 1, - anon_sym_RBRACE3, - [312261] = 2, + anon_sym_RBRACK_RBRACK, + [313832] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16391), 1, - anon_sym_RPAREN, - [312268] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16393), 1, - anon_sym_RPAREN, - [312275] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16395), 1, anon_sym_BQUOTE, - [312282] = 2, + [313839] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312289] = 2, + ACTIONS(16379), 1, + anon_sym_BQUOTE, + [313846] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14874), 1, - anon_sym_fi, - [312296] = 2, + ACTIONS(16393), 1, + anon_sym_RPAREN, + [313853] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16391), 1, - anon_sym_BQUOTE, - [312303] = 2, + ACTIONS(16395), 1, + anon_sym_RBRACE2, + [313860] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16397), 1, anon_sym_esac, - [312310] = 2, + [313867] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16399), 1, anon_sym_RBRACE3, - [312317] = 2, + [313874] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16401), 1, - anon_sym_esac, - [312324] = 2, + anon_sym_RPAREN, + [313881] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9774), 1, + anon_sym_RBRACK, + [313888] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9766), 1, + anon_sym_RBRACK, + [313895] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16403), 1, - anon_sym_RPAREN, - [312331] = 2, + anon_sym_RBRACE2, + [313902] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16405), 1, - anon_sym_RBRACE3, - [312338] = 2, + anon_sym_RPAREN, + [313909] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16407), 1, - sym_heredoc_end, - [312345] = 2, + anon_sym_RPAREN, + [313916] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16409), 1, - sym_heredoc_end, - [312352] = 2, + anon_sym_BQUOTE, + [313923] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16411), 1, - anon_sym_RBRACE3, - [312359] = 2, + ACTIONS(16405), 1, + anon_sym_BQUOTE, + [313930] = 2, ACTIONS(71), 1, sym_comment, + ACTIONS(14808), 1, + anon_sym_fi, + [313937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16411), 1, + aux_sym_heredoc_redirect_token1, + [313944] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(16413), 1, - anon_sym_BQUOTE, - [312366] = 2, + aux_sym_heredoc_redirect_token1, + [313951] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16415), 1, - anon_sym_RBRACE3, - [312373] = 2, + anon_sym_esac, + [313958] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16417), 1, - anon_sym_RPAREN, - [312380] = 2, + anon_sym_RBRACE3, + [313965] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16403), 1, - anon_sym_BQUOTE, - [312387] = 2, + ACTIONS(16419), 1, + anon_sym_RBRACK_RBRACK, + [313972] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16419), 1, - anon_sym_fi, - [312394] = 2, + ACTIONS(16071), 1, + anon_sym_RPAREN, + [313979] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16421), 1, - anon_sym_esac, - [312401] = 2, + anon_sym_BQUOTE, + [313986] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16423), 1, - anon_sym_esac, - [312408] = 2, - ACTIONS(71), 1, + anon_sym_RBRACE2, + [313993] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16425), 1, - anon_sym_BQUOTE, - [312415] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16417), 1, - anon_sym_BQUOTE, - [312422] = 2, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + [314000] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16427), 1, - anon_sym_BQUOTE, - [312429] = 2, + aux_sym_heredoc_redirect_token1, + [314007] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16429), 1, anon_sym_RPAREN, - [312436] = 2, + [314014] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16431), 1, - anon_sym_BQUOTE, - [312443] = 2, + anon_sym_RBRACE2, + [314021] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14846), 1, + anon_sym_fi, + [314028] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16433), 1, - anon_sym_esac, - [312450] = 2, + anon_sym_LBRACK, + [314035] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16435), 1, anon_sym_esac, - [312457] = 2, - ACTIONS(71), 1, + [314042] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16437), 1, - anon_sym_BQUOTE, - [312464] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16429), 1, - anon_sym_BQUOTE, - [312471] = 2, + aux_sym_heredoc_redirect_token1, + [314049] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16439), 1, - anon_sym_RBRACE3, - [312478] = 2, + anon_sym_esac, + [314056] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16441), 1, - anon_sym_RPAREN, - [312485] = 2, - ACTIONS(71), 1, + anon_sym_RBRACE3, + [314063] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(16443), 1, - anon_sym_RPAREN, - [312492] = 2, + aux_sym_heredoc_redirect_token1, + [314070] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16445), 1, - anon_sym_BQUOTE, - [312499] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16441), 1, - anon_sym_BQUOTE, - [312506] = 2, + sym_heredoc_end, + [314077] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16393), 1, - anon_sym_BQUOTE, - [312513] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(16447), 1, - aux_sym_heredoc_redirect_token1, - [312520] = 2, + sym_heredoc_end, + [314084] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16449), 1, anon_sym_RPAREN, - [312527] = 2, + [314091] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16451), 1, - anon_sym_RPAREN, - [312534] = 2, + anon_sym_RBRACE3, + [314098] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16453), 1, - anon_sym_RBRACE2, - [312541] = 2, + anon_sym_RPAREN, + [314105] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16375), 1, + anon_sym_BQUOTE, + [314112] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16455), 1, - anon_sym_RPAREN, - [312548] = 2, + anon_sym_fi, + [314119] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16457), 1, - anon_sym_RBRACE2, - [312555] = 2, + anon_sym_esac, + [314126] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16459), 1, - anon_sym_RBRACE2, - [312562] = 2, + anon_sym_esac, + [314133] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16461), 1, - ts_builtin_sym_end, - [312569] = 2, + anon_sym_BQUOTE, + [314140] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16463), 1, - anon_sym_RBRACE3, - [312576] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312583] = 2, + anon_sym_RPAREN, + [314147] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16465), 1, anon_sym_RPAREN, - [312590] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - [312597] = 2, + [314154] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16467), 1, anon_sym_BQUOTE, - [312604] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16465), 1, - anon_sym_BQUOTE, - [312611] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312618] = 2, + [314161] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16469), 1, - anon_sym_RBRACE2, - [312625] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15231), 1, - anon_sym_RBRACE3, - [312632] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9956), 1, - anon_sym_RBRACK, - [312639] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16471), 1, anon_sym_BQUOTE, - [312646] = 2, + [314168] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14364), 1, - anon_sym_RBRACE3, - [312653] = 2, + ACTIONS(16471), 1, + anon_sym_esac, + [314175] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16473), 1, - anon_sym_RPAREN, - [312660] = 2, + anon_sym_esac, + [314182] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16163), 1, + ACTIONS(16453), 1, anon_sym_BQUOTE, - [312667] = 2, + [314189] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16475), 1, - anon_sym_BQUOTE, - [312674] = 2, + anon_sym_RPAREN, + [314196] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16477), 1, anon_sym_RBRACE3, - [312681] = 2, + [314203] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16479), 1, - anon_sym_RBRACE3, - [312688] = 2, + anon_sym_BQUOTE, + [314210] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16481), 1, + anon_sym_BQUOTE, + [314217] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16483), 1, anon_sym_RPAREN, - [312695] = 2, + [314224] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14916), 1, - anon_sym_fi, - [312702] = 2, + ACTIONS(16475), 1, + anon_sym_BQUOTE, + [314231] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16483), 1, - anon_sym_RBRACK_RBRACK, - [312709] = 2, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [314238] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16485), 1, - anon_sym_RPAREN, - [312716] = 2, + anon_sym_esac, + [314245] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16267), 1, - anon_sym_BQUOTE, - [312723] = 2, + ACTIONS(15175), 1, + anon_sym_RBRACE3, + [314252] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16487), 1, - anon_sym_BQUOTE, - [312730] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16481), 1, - anon_sym_BQUOTE, - [312737] = 2, + anon_sym_esac, + [314259] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16489), 1, anon_sym_RBRACE3, - [312744] = 2, + [314266] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16491), 1, - anon_sym_RBRACE3, - [312751] = 2, + anon_sym_RBRACE2, + [314273] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16493), 1, - anon_sym_RPAREN, - [312758] = 2, + anon_sym_RBRACE3, + [314280] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16495), 1, - anon_sym_RPAREN, - [312765] = 2, + anon_sym_BQUOTE, + [314287] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16497), 1, - anon_sym_BQUOTE, - [312772] = 2, + anon_sym_RBRACE3, + [314294] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16493), 1, + ACTIONS(16483), 1, anon_sym_BQUOTE, - [312779] = 2, + [314301] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16499), 1, anon_sym_RPAREN, - [312786] = 2, + [314308] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16501), 1, - anon_sym_RPAREN, - [312793] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, anon_sym_RBRACE3, - [312800] = 2, + [314315] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16503), 1, + anon_sym_BQUOTE, + [314322] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15088), 1, anon_sym_RBRACE3, - [312807] = 2, + [314329] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16505), 1, + ACTIONS(16449), 1, anon_sym_BQUOTE, - [312814] = 2, - ACTIONS(3), 1, + [314336] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16507), 1, - aux_sym_heredoc_redirect_token1, - [312821] = 2, + ACTIONS(16499), 1, + anon_sym_BQUOTE, + [314343] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + ACTIONS(16505), 1, anon_sym_RBRACE3, - [312828] = 2, + [314350] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16501), 1, - anon_sym_BQUOTE, - [312835] = 2, + ACTIONS(16507), 1, + anon_sym_RBRACE3, + [314357] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16509), 1, - anon_sym_RBRACE3, - [312842] = 2, + anon_sym_RPAREN, + [314364] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16511), 1, anon_sym_RPAREN, - [312849] = 2, - ACTIONS(3), 1, + [314371] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16513), 1, - aux_sym_heredoc_redirect_token1, - [312856] = 2, + anon_sym_RBRACE2, + [314378] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16515), 1, anon_sym_RPAREN, - [312863] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [312870] = 2, + [314385] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16517), 1, - anon_sym_BQUOTE, - [312877] = 2, + anon_sym_RPAREN, + [314392] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16519), 1, - anon_sym_RBRACE2, - [312884] = 2, + anon_sym_RBRACE3, + [314399] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16521), 1, - anon_sym_RBRACE2, - [312891] = 2, + anon_sym_BQUOTE, + [314406] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16523), 1, - aux_sym_brace_expression_token1, - [312898] = 2, + anon_sym_RPAREN, + [314413] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9832), 1, - anon_sym_RBRACK, - [312905] = 2, + ACTIONS(16525), 1, + anon_sym_RBRACK_RBRACK, + [314420] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9830), 1, - anon_sym_RBRACK, - [312912] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [314427] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16525), 1, + ACTIONS(16527), 1, anon_sym_RBRACE2, - [312919] = 2, + [314434] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16511), 1, + ACTIONS(16515), 1, anon_sym_BQUOTE, - [312926] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16527), 1, - anon_sym_RPAREN, - [312933] = 2, + [314441] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16529), 1, - anon_sym_RBRACE2, - [312940] = 2, + anon_sym_BQUOTE, + [314448] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16531), 1, - sym_heredoc_end, - [312947] = 2, + anon_sym_RPAREN, + [314455] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16533), 1, - sym_heredoc_end, - [312954] = 2, + aux_sym_brace_expression_token1, + [314462] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16535), 1, anon_sym_RBRACE3, - [312961] = 2, + [314469] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16537), 1, - anon_sym_RBRACE2, - [312968] = 2, + anon_sym_RPAREN, + [314476] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14902), 1, + anon_sym_RBRACE3, + [314483] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16539), 1, - anon_sym_RPAREN, - [312975] = 2, + anon_sym_BQUOTE, + [314490] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312982] = 2, + ACTIONS(16537), 1, + anon_sym_BQUOTE, + [314497] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16541), 1, - anon_sym_BQUOTE, - [312989] = 2, + anon_sym_RPAREN, + [314504] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16543), 1, - anon_sym_LT_LT_LT, - [312996] = 2, + anon_sym_RPAREN, + [314511] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16545), 1, - anon_sym_RBRACE3, - [313003] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16539), 1, - anon_sym_BQUOTE, - [313010] = 2, + anon_sym_RBRACE2, + [314518] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16547), 1, - anon_sym_RPAREN, - [313017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16549), 1, - aux_sym_heredoc_redirect_token1, - [313024] = 2, + anon_sym_RBRACE3, + [314525] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15613), 1, - aux_sym__simple_variable_name_token1, - [313031] = 2, + ACTIONS(16549), 1, + anon_sym_LT_LT_LT, + [314532] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16551), 1, - anon_sym_RPAREN, - [313038] = 2, + anon_sym_RBRACE2, + [314539] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16553), 1, - anon_sym_BQUOTE, - [313045] = 2, + anon_sym_RBRACE2, + [314546] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16555), 1, - sym_word, - [313052] = 2, + anon_sym_RBRACE2, + [314553] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16557), 1, - anon_sym_DOT_DOT, - [313059] = 2, + anon_sym_RBRACE2, + [314560] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15615), 1, + aux_sym__simple_variable_name_token1, + [314567] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16559), 1, - anon_sym_BQUOTE, - [313066] = 2, + anon_sym_RBRACE3, + [314574] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16551), 1, - anon_sym_BQUOTE, - [313073] = 2, + ACTIONS(14908), 1, + anon_sym_RBRACE3, + [314581] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16561), 1, - anon_sym_RPAREN, - [313080] = 2, + sym_word, + [314588] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16563), 1, - sym_heredoc_start, - [313087] = 2, + anon_sym_DOT_DOT, + [314595] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16565), 1, anon_sym_BQUOTE, - [313094] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16485), 1, - anon_sym_BQUOTE, - [313101] = 2, + [314602] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16567), 1, - anon_sym_RPAREN, - [313108] = 2, + anon_sym_RBRACE3, + [314609] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16569), 1, - sym_heredoc_start, - [313115] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16387), 1, - anon_sym_BQUOTE, - [313122] = 2, + anon_sym_RPAREN, + [314616] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16571), 1, - anon_sym_RBRACE2, - [313129] = 2, + sym_heredoc_start, + [314623] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16573), 1, anon_sym_RBRACE3, - [313136] = 2, + [314630] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14908), 1, + anon_sym_RBRACE3, + [314637] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16575), 1, anon_sym_RPAREN, - [313143] = 2, + [314644] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16577), 1, - anon_sym_RBRACE3, - [313150] = 2, + sym_heredoc_start, + [314651] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16579), 1, + ACTIONS(16175), 1, anon_sym_BQUOTE, - [313157] = 2, + [314658] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16575), 1, - anon_sym_BQUOTE, - [313164] = 2, - ACTIONS(3), 1, + ACTIONS(16579), 1, + anon_sym_RPAREN, + [314665] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16581), 1, - aux_sym_heredoc_redirect_token1, - [313171] = 2, + anon_sym_BQUOTE, + [314672] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16583), 1, - anon_sym_RPAREN, - [313178] = 2, + ACTIONS(16575), 1, + anon_sym_BQUOTE, + [314679] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16585), 1, + ACTIONS(14908), 1, anon_sym_RBRACE3, - [313185] = 2, + [314686] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16587), 1, + ACTIONS(16543), 1, anon_sym_BQUOTE, - [313192] = 2, + [314693] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9826), 1, + anon_sym_RBRACK, + [314700] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9800), 1, + anon_sym_RBRACK, + [314707] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16583), 1, - anon_sym_BQUOTE, - [313199] = 2, + anon_sym_RBRACE2, + [314714] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16589), 1, + ACTIONS(16585), 1, anon_sym_RPAREN, - [313206] = 2, + [314721] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16587), 1, + anon_sym_RBRACE3, + [314728] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16589), 1, + anon_sym_BQUOTE, + [314735] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16591), 1, - anon_sym_RPAREN, - [313213] = 2, + sym_heredoc_end, + [314742] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16593), 1, - anon_sym_BQUOTE, - [313220] = 2, + sym_heredoc_end, + [314749] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [314756] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16595), 1, - anon_sym_RPAREN, - [313227] = 2, + sym_word, + [314763] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16597), 1, - anon_sym_BQUOTE, - [313234] = 2, + aux_sym_brace_expression_token1, + [314770] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16599), 1, - aux_sym_brace_expression_token1, - [313241] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16601), 1, - aux_sym_heredoc_redirect_token1, - [313248] = 2, + anon_sym_RPAREN, + [314777] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16589), 1, - anon_sym_BQUOTE, - [313255] = 2, + ACTIONS(16601), 1, + anon_sym_esac, + [314784] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16603), 1, - anon_sym_RBRACE2, - [313262] = 2, + sym_word, + [314791] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16605), 1, - sym_word, - [313269] = 2, + anon_sym_LT_LT_LT, + [314798] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15657), 1, + anon_sym_RPAREN, + [314805] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16607), 1, anon_sym_RBRACE3, - [313276] = 2, + [314812] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16609), 1, - anon_sym_RPAREN, - [313283] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, anon_sym_RBRACE3, - [313290] = 2, + [314819] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16611), 1, - anon_sym_BQUOTE, - [313297] = 2, + anon_sym_RPAREN, + [314826] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16613), 1, - anon_sym_in, - [313304] = 2, + anon_sym_RPAREN, + [314833] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14908), 1, + anon_sym_RBRACE3, + [314840] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16615), 1, - sym_word, - [313311] = 2, + anon_sym_RBRACE2, + [314847] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16617), 1, - anon_sym_RBRACK_RBRACK, - [313318] = 2, + ACTIONS(15175), 1, + anon_sym_RBRACE3, + [314854] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16591), 1, - anon_sym_BQUOTE, - [313325] = 2, + ACTIONS(16617), 1, + anon_sym_RPAREN, + [314861] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16619), 1, - anon_sym_in, - [313332] = 2, + anon_sym_RBRACE3, + [314868] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16621), 1, anon_sym_RPAREN, - [313339] = 2, + [314875] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16623), 1, - anon_sym_RPAREN, - [313346] = 2, + anon_sym_RBRACE3, + [314882] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16625), 1, - anon_sym_RPAREN, - [313353] = 2, + anon_sym_BQUOTE, + [314889] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16627), 1, anon_sym_BQUOTE, - [313360] = 2, + [314896] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16629), 1, - anon_sym_RBRACE3, - [313367] = 2, + anon_sym_RPAREN, + [314903] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16631), 1, anon_sym_RPAREN, - [313374] = 2, + [314910] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16623), 1, + ACTIONS(16621), 1, anon_sym_BQUOTE, - [313381] = 2, + [314917] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16633), 1, - anon_sym_BQUOTE, - [313388] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16631), 1, - anon_sym_BQUOTE, - [313395] = 2, + anon_sym_RBRACE3, + [314924] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16635), 1, anon_sym_RPAREN, - [313402] = 2, + [314931] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_BQUOTE, - [313409] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [314938] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16637), 1, - anon_sym_RPAREN, - [313416] = 2, + ACTIONS(15175), 1, + anon_sym_RBRACE3, + [314945] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16639), 1, - anon_sym_RPAREN, - [313423] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [314952] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16641), 1, - anon_sym_RPAREN, - [313430] = 2, + ACTIONS(16637), 1, + aux_sym_brace_expression_token1, + [314959] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16643), 1, + ACTIONS(16639), 1, anon_sym_BQUOTE, - [313437] = 2, + [314966] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(16635), 1, + anon_sym_BQUOTE, + [314973] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15175), 1, anon_sym_RBRACE3, - [313444] = 2, + [314980] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16645), 1, + ACTIONS(16641), 1, anon_sym_RPAREN, - [313451] = 2, + [314987] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16621), 1, - anon_sym_BQUOTE, - [313458] = 2, + ACTIONS(16643), 1, + aux_sym_brace_expression_token1, + [314994] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16645), 1, + anon_sym_RPAREN, + [315001] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16647), 1, - anon_sym_esac, - [313465] = 2, + anon_sym_RBRACE3, + [315008] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16649), 1, anon_sym_RPAREN, - [313472] = 2, - ACTIONS(3), 1, + [315015] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16651), 1, - aux_sym_heredoc_redirect_token1, - [313479] = 2, + anon_sym_RBRACK_RBRACK, + [315022] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16653), 1, - anon_sym_RPAREN, - [313486] = 2, + sym_heredoc_end, + [315029] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313493] = 2, + ACTIONS(16429), 1, + anon_sym_BQUOTE, + [315036] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16655), 1, - anon_sym_RBRACE2, - [313500] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16657), 1, - anon_sym_RBRACE3, - [313507] = 2, + anon_sym_BQUOTE, + [315043] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9952), 1, - anon_sym_RBRACK, - [313514] = 2, + ACTIONS(16649), 1, + anon_sym_BQUOTE, + [315050] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9926), 1, - anon_sym_RBRACK, - [313521] = 2, + ACTIONS(16657), 1, + anon_sym_BQUOTE, + [315057] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16659), 1, - anon_sym_RBRACE2, - [313528] = 2, + anon_sym_RBRACE3, + [315064] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16661), 1, anon_sym_RPAREN, - [313535] = 2, + [315071] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16663), 1, + ACTIONS(16613), 1, anon_sym_BQUOTE, - [313542] = 2, + [315078] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16665), 1, + ACTIONS(16663), 1, anon_sym_BQUOTE, - [313549] = 2, + [315085] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16661), 1, anon_sym_BQUOTE, - [313556] = 2, + [315092] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16667), 1, + ACTIONS(16665), 1, anon_sym_RPAREN, - [313563] = 2, + [315099] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16667), 1, + anon_sym_RBRACE2, + [315106] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [315113] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16669), 1, - aux_sym_brace_expression_token1, - [313570] = 2, + anon_sym_RBRACK_RBRACK, + [315120] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16631), 1, + anon_sym_BQUOTE, + [315127] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16671), 1, anon_sym_RPAREN, - [313577] = 2, + [315134] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16673), 1, - anon_sym_LT_LT_LT, - [313584] = 2, + anon_sym_RPAREN_RPAREN, + [315141] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16675), 1, - aux_sym_brace_expression_token1, - [313591] = 2, + anon_sym_BQUOTE, + [315148] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16677), 1, - anon_sym_RBRACE3, - [313598] = 2, + ACTIONS(16463), 1, + anon_sym_BQUOTE, + [315155] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16679), 1, - anon_sym_RPAREN_RPAREN, - [313605] = 2, + ACTIONS(16629), 1, + anon_sym_BQUOTE, + [315162] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16625), 1, - anon_sym_BQUOTE, - [313612] = 2, + ACTIONS(16677), 1, + anon_sym_RPAREN, + [315169] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16679), 1, + aux_sym_brace_expression_token1, + [315176] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16681), 1, anon_sym_in, - [313619] = 2, + [315183] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16683), 1, - anon_sym_in, - [313626] = 2, + anon_sym_RBRACE3, + [315190] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16685), 1, anon_sym_RBRACE2, - [313633] = 2, + [315197] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16687), 1, anon_sym_RBRACE3, - [313640] = 2, + [315204] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16689), 1, - anon_sym_esac, - [313647] = 2, + anon_sym_RPAREN, + [315211] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9874), 1, + anon_sym_RBRACK, + [315218] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16691), 1, anon_sym_RPAREN, - [313654] = 2, + [315225] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16693), 1, - anon_sym_RPAREN, - [313661] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [315232] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15625), 1, - aux_sym__simple_variable_name_token1, - [313668] = 2, + ACTIONS(16693), 1, + anon_sym_LT_LT_LT, + [315239] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16695), 1, - anon_sym_RPAREN, - [313675] = 2, + anon_sym_BQUOTE, + [315246] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14932), 1, - anon_sym_RBRACE3, - [313682] = 2, + ACTIONS(16697), 1, + anon_sym_RBRACE2, + [315253] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16697), 1, - anon_sym_RBRACK_RBRACK, - [313689] = 2, + ACTIONS(16699), 1, + anon_sym_RPAREN, + [315260] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313696] = 2, + ACTIONS(15631), 1, + aux_sym__simple_variable_name_token1, + [315267] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16699), 1, - anon_sym_RBRACE3, - [313703] = 2, + ACTIONS(9948), 1, + anon_sym_RBRACK, + [315274] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16701), 1, - anon_sym_LT_LT_LT, - [313710] = 2, + anon_sym_RBRACE2, + [315281] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16703), 1, - anon_sym_LT_LT_LT, - [313717] = 2, + sym_word, + [315288] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16705), 1, - anon_sym_BQUOTE, - [313724] = 2, + anon_sym_DOT_DOT, + [315295] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16707), 1, - anon_sym_RPAREN, - [313731] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16709), 1, aux_sym_brace_expression_token1, - [313738] = 2, + [315302] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15621), 1, - aux_sym__simple_variable_name_token1, - [313745] = 2, + ACTIONS(16709), 1, + anon_sym_BQUOTE, + [315309] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16711), 1, - aux_sym_brace_expression_token1, - [313752] = 2, + anon_sym_RPAREN, + [315316] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16695), 1, - anon_sym_BQUOTE, - [313759] = 2, + ACTIONS(16713), 1, + sym_heredoc_start, + [315323] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16713), 1, - sym_word, - [313766] = 2, + ACTIONS(16689), 1, + anon_sym_BQUOTE, + [315330] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16715), 1, - anon_sym_DOT_DOT, - [313773] = 2, + anon_sym_LT_LT_LT, + [315337] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16717), 1, - anon_sym_BQUOTE, - [313780] = 2, + aux_sym_brace_expression_token1, + [315344] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16719), 1, - anon_sym_RBRACE2, - [313787] = 2, + sym_heredoc_start, + [315351] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16611), 1, + anon_sym_BQUOTE, + [315358] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16721), 1, - anon_sym_RPAREN, - [313794] = 2, + anon_sym_RBRACE3, + [315365] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16723), 1, - sym_heredoc_start, - [313801] = 2, + anon_sym_RPAREN_RPAREN, + [315372] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16725), 1, anon_sym_RBRACE3, - [313808] = 2, + [315379] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16727), 1, anon_sym_RPAREN, - [313815] = 2, + [315386] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16729), 1, - aux_sym_brace_expression_token1, - [313822] = 2, + anon_sym_RBRACE2, + [315393] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16731), 1, - sym_heredoc_start, - [313829] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16733), 1, anon_sym_BQUOTE, - [313836] = 2, + [315400] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16727), 1, anon_sym_BQUOTE, - [313843] = 2, + [315407] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16733), 1, + anon_sym_RBRACE3, + [315414] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16735), 1, anon_sym_RPAREN, - [313850] = 2, - ACTIONS(3), 1, + [315421] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16737), 1, - aux_sym_heredoc_redirect_token1, - [313857] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [315428] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [315435] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16739), 1, - aux_sym_heredoc_redirect_token1, - [313864] = 2, + anon_sym_BQUOTE, + [315442] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16741), 1, - anon_sym_BQUOTE, - [313871] = 2, + anon_sym_RPAREN, + [315449] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16693), 1, - anon_sym_BQUOTE, - [313878] = 2, + ACTIONS(16743), 1, + anon_sym_RBRACK_RBRACK, + [315456] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16707), 1, - anon_sym_BQUOTE, - [313885] = 2, + ACTIONS(14922), 1, + anon_sym_RBRACE3, + [315463] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16743), 1, - anon_sym_DOT_DOT, - [313892] = 2, + ACTIONS(16737), 1, + anon_sym_BQUOTE, + [315470] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16745), 1, - anon_sym_RPAREN, - [313899] = 2, + sym_word, + [315477] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16747), 1, - anon_sym_RBRACK_RBRACK, - [313906] = 2, + anon_sym_DOT_DOT, + [315484] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16749), 1, - anon_sym_RBRACE2, - [313913] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313920] = 2, + anon_sym_RPAREN, + [315491] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16751), 1, - anon_sym_RPAREN, - [313927] = 2, - ACTIONS(3), 1, + sym_heredoc_start, + [315498] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16753), 1, - aux_sym_heredoc_redirect_token1, - [313934] = 2, + anon_sym_RBRACE3, + [315505] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16755), 1, anon_sym_RPAREN, - [313941] = 2, - ACTIONS(3), 1, + [315512] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16757), 1, - aux_sym_heredoc_redirect_token1, - [313948] = 2, + sym_heredoc_start, + [315519] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16759), 1, - sym_word, - [313955] = 2, + anon_sym_RPAREN, + [315526] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16761), 1, - anon_sym_DOT_DOT, - [313962] = 2, + anon_sym_BQUOTE, + [315533] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16763), 1, - anon_sym_RPAREN, - [313969] = 2, + ACTIONS(16755), 1, + anon_sym_BQUOTE, + [315540] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16765), 1, - sym_heredoc_start, - [313976] = 2, + ACTIONS(16763), 1, + anon_sym_in, + [315547] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(16765), 1, anon_sym_RBRACE3, - [313983] = 2, + [315554] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16767), 1, anon_sym_RBRACE2, - [313990] = 2, + [315561] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16769), 1, - sym_heredoc_start, - [313997] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [315568] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16771), 1, - aux_sym_heredoc_redirect_token1, - [314004] = 2, + aux_sym_brace_expression_token1, + [315575] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16773), 1, - anon_sym_RPAREN, - [314011] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15115), 1, anon_sym_RBRACE3, - [314018] = 2, - ACTIONS(3), 1, + [315582] = 2, + ACTIONS(71), 1, sym_comment, ACTIONS(16775), 1, - aux_sym_heredoc_redirect_token1, - [314025] = 2, + anon_sym_RPAREN, + [315589] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16777), 1, - aux_sym_brace_expression_token1, - [314032] = 2, + anon_sym_BQUOTE, + [315596] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16779), 1, - sym_heredoc_start, - [314039] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - [314046] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15759), 1, anon_sym_BQUOTE, - [314053] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [314060] = 2, + [315603] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [314067] = 2, + ACTIONS(16775), 1, + anon_sym_BQUOTE, + [315610] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [314074] = 2, + ACTIONS(16769), 1, + anon_sym_BQUOTE, + [315617] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16781), 1, - anon_sym_RBRACE2, - [314081] = 2, + anon_sym_RPAREN, + [315624] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16783), 1, - anon_sym_RBRACE2, - [314088] = 2, + anon_sym_in, + [315631] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14974), 1, - anon_sym_fi, - [314095] = 2, + ACTIONS(15107), 1, + anon_sym_RBRACE3, + [315638] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16785), 1, - anon_sym_RBRACE2, - [314102] = 2, + anon_sym_DOT_DOT, + [315645] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16787), 1, - anon_sym_RBRACE3, - [314109] = 2, + anon_sym_DOT_DOT, + [315652] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16789), 1, - anon_sym_RBRACE3, - [314116] = 2, + anon_sym_DOT_DOT, + [315659] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16791), 1, anon_sym_DOT_DOT, - [314123] = 2, + [315666] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16793), 1, anon_sym_DOT_DOT, - [314130] = 2, + [315673] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16795), 1, anon_sym_DOT_DOT, - [314137] = 2, + [315680] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16797), 1, anon_sym_DOT_DOT, - [314144] = 2, + [315687] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16799), 1, anon_sym_DOT_DOT, - [314151] = 2, + [315694] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16801), 1, anon_sym_DOT_DOT, - [314158] = 2, + [315701] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16803), 1, anon_sym_DOT_DOT, - [314165] = 2, + [315708] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16805), 1, anon_sym_DOT_DOT, - [314172] = 2, + [315715] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16807), 1, anon_sym_DOT_DOT, - [314179] = 2, + [315722] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16809), 1, anon_sym_DOT_DOT, - [314186] = 2, + [315729] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16811), 1, anon_sym_DOT_DOT, - [314193] = 2, + [315736] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16813), 1, anon_sym_DOT_DOT, - [314200] = 2, + [315743] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16815), 1, anon_sym_DOT_DOT, - [314207] = 2, + [315750] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16817), 1, anon_sym_DOT_DOT, - [314214] = 2, + [315757] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16819), 1, anon_sym_DOT_DOT, - [314221] = 2, + [315764] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16821), 1, anon_sym_DOT_DOT, - [314228] = 2, + [315771] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16823), 1, anon_sym_DOT_DOT, - [314235] = 2, + [315778] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16825), 1, anon_sym_DOT_DOT, - [314242] = 2, + [315785] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16827), 1, anon_sym_DOT_DOT, - [314249] = 2, + [315792] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16829), 1, anon_sym_DOT_DOT, - [314256] = 2, + [315799] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16831), 1, anon_sym_DOT_DOT, - [314263] = 2, + [315806] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16833), 1, anon_sym_DOT_DOT, - [314270] = 2, + [315813] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16835), 1, anon_sym_DOT_DOT, - [314277] = 2, + [315820] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16837), 1, anon_sym_DOT_DOT, - [314284] = 2, + [315827] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16839), 1, anon_sym_DOT_DOT, - [314291] = 2, + [315834] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16841), 1, anon_sym_DOT_DOT, - [314298] = 2, + [315841] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16843), 1, anon_sym_DOT_DOT, - [314305] = 2, + [315848] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16845), 1, anon_sym_DOT_DOT, - [314312] = 2, + [315855] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16847), 1, anon_sym_DOT_DOT, - [314319] = 2, + [315862] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16849), 1, anon_sym_DOT_DOT, - [314326] = 2, + [315869] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16851), 1, anon_sym_DOT_DOT, - [314333] = 2, + [315876] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16853), 1, anon_sym_DOT_DOT, - [314340] = 2, + [315883] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16855), 1, anon_sym_DOT_DOT, - [314347] = 2, + [315890] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16857), 1, anon_sym_DOT_DOT, - [314354] = 2, + [315897] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16859), 1, anon_sym_DOT_DOT, - [314361] = 2, + [315904] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16861), 1, anon_sym_DOT_DOT, - [314368] = 2, + [315911] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16863), 1, anon_sym_DOT_DOT, - [314375] = 2, + [315918] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16865), 1, anon_sym_DOT_DOT, - [314382] = 2, + [315925] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16867), 1, anon_sym_DOT_DOT, - [314389] = 2, + [315932] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16869), 1, anon_sym_DOT_DOT, - [314396] = 2, + [315939] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16871), 1, anon_sym_DOT_DOT, - [314403] = 2, + [315946] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16873), 1, anon_sym_DOT_DOT, - [314410] = 2, + [315953] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16875), 1, anon_sym_DOT_DOT, - [314417] = 2, + [315960] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16877), 1, anon_sym_DOT_DOT, - [314424] = 2, + [315967] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16879), 1, anon_sym_DOT_DOT, - [314431] = 2, + [315974] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16881), 1, anon_sym_DOT_DOT, - [314438] = 2, + [315981] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16883), 1, anon_sym_DOT_DOT, - [314445] = 2, + [315988] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16885), 1, anon_sym_DOT_DOT, - [314452] = 2, + [315995] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16887), 1, anon_sym_DOT_DOT, - [314459] = 2, + [316002] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16889), 1, anon_sym_DOT_DOT, - [314466] = 2, + [316009] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16891), 1, anon_sym_DOT_DOT, - [314473] = 2, + [316016] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16893), 1, anon_sym_DOT_DOT, - [314480] = 2, + [316023] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16895), 1, anon_sym_DOT_DOT, - [314487] = 2, + [316030] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16897), 1, anon_sym_DOT_DOT, - [314494] = 2, + [316037] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16899), 1, anon_sym_DOT_DOT, - [314501] = 2, + [316044] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16901), 1, anon_sym_DOT_DOT, - [314508] = 2, + [316051] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16903), 1, - anon_sym_DOT_DOT, - [314515] = 2, + aux_sym_brace_expression_token1, + [316058] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16905), 1, - anon_sym_DOT_DOT, - [314522] = 2, + anon_sym_RBRACE2, + [316065] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16907), 1, - anon_sym_DOT_DOT, - [314529] = 2, + anon_sym_RBRACE3, + [316072] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16909), 1, - aux_sym_brace_expression_token1, - [314536] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15639), 1, - anon_sym_RPAREN, - [314543] = 2, + anon_sym_RBRACE3, + [316079] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16911), 1, anon_sym_RPAREN, - [314550] = 2, + [316086] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16913), 1, - anon_sym_esac, - [314557] = 2, + anon_sym_RPAREN, + [316093] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16915), 1, anon_sym_BQUOTE, - [314564] = 2, + [316100] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16911), 1, anon_sym_BQUOTE, - [314571] = 2, + [316107] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16917), 1, - sym_word, - [314578] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9958), 1, - anon_sym_RBRACK, - [314585] = 2, + anon_sym_RPAREN, + [316114] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16919), 1, - anon_sym_RPAREN, - [314592] = 2, + anon_sym_RBRACE3, + [316121] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16921), 1, - aux_sym_brace_expression_token1, - [314599] = 2, + anon_sym_BQUOTE, + [316128] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16923), 1, aux_sym_brace_expression_token1, - [314606] = 2, + [316135] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16913), 1, + anon_sym_BQUOTE, + [316142] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16925), 1, anon_sym_RBRACE3, - [314613] = 2, + [316149] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16097), 1, + anon_sym_RPAREN, + [316156] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16927), 1, anon_sym_esac, - [314620] = 2, + [316163] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16929), 1, - anon_sym_RPAREN, - [314627] = 2, + anon_sym_BQUOTE, + [316170] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [314634] = 2, + ACTIONS(16407), 1, + anon_sym_BQUOTE, + [316177] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15653), 1, - anon_sym_RPAREN, - [314641] = 2, + ACTIONS(15088), 1, + anon_sym_RBRACE3, + [316184] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16931), 1, - aux_sym_brace_expression_token1, - [314648] = 2, + anon_sym_BQUOTE, + [316191] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16933), 1, aux_sym_brace_expression_token1, - [314655] = 2, + [316198] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16935), 1, aux_sym_brace_expression_token1, - [314662] = 2, + [316205] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16937), 1, aux_sym_brace_expression_token1, - [314669] = 2, + [316212] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16939), 1, aux_sym_brace_expression_token1, - [314676] = 2, + [316219] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16941), 1, aux_sym_brace_expression_token1, - [314683] = 2, + [316226] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16943), 1, aux_sym_brace_expression_token1, - [314690] = 2, + [316233] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16945), 1, aux_sym_brace_expression_token1, - [314697] = 2, + [316240] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16947), 1, aux_sym_brace_expression_token1, - [314704] = 2, + [316247] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16949), 1, aux_sym_brace_expression_token1, - [314711] = 2, + [316254] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16951), 1, aux_sym_brace_expression_token1, - [314718] = 2, + [316261] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16953), 1, aux_sym_brace_expression_token1, - [314725] = 2, + [316268] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16955), 1, aux_sym_brace_expression_token1, - [314732] = 2, + [316275] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16957), 1, aux_sym_brace_expression_token1, - [314739] = 2, + [316282] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16959), 1, aux_sym_brace_expression_token1, - [314746] = 2, + [316289] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16961), 1, aux_sym_brace_expression_token1, - [314753] = 2, + [316296] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16963), 1, aux_sym_brace_expression_token1, - [314760] = 2, + [316303] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16965), 1, aux_sym_brace_expression_token1, - [314767] = 2, + [316310] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16967), 1, aux_sym_brace_expression_token1, - [314774] = 2, + [316317] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16969), 1, aux_sym_brace_expression_token1, - [314781] = 2, + [316324] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16971), 1, aux_sym_brace_expression_token1, - [314788] = 2, + [316331] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16973), 1, aux_sym_brace_expression_token1, - [314795] = 2, + [316338] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16975), 1, aux_sym_brace_expression_token1, - [314802] = 2, + [316345] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16977), 1, aux_sym_brace_expression_token1, - [314809] = 2, + [316352] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16979), 1, aux_sym_brace_expression_token1, - [314816] = 2, + [316359] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16981), 1, aux_sym_brace_expression_token1, - [314823] = 2, + [316366] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16983), 1, aux_sym_brace_expression_token1, - [314830] = 2, + [316373] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16985), 1, aux_sym_brace_expression_token1, - [314837] = 2, + [316380] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16987), 1, aux_sym_brace_expression_token1, - [314844] = 2, + [316387] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16989), 1, aux_sym_brace_expression_token1, - [314851] = 2, + [316394] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16991), 1, aux_sym_brace_expression_token1, - [314858] = 2, + [316401] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16993), 1, aux_sym_brace_expression_token1, - [314865] = 2, + [316408] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16995), 1, aux_sym_brace_expression_token1, - [314872] = 2, + [316415] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16997), 1, aux_sym_brace_expression_token1, - [314879] = 2, + [316422] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16999), 1, aux_sym_brace_expression_token1, - [314886] = 2, + [316429] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17001), 1, aux_sym_brace_expression_token1, - [314893] = 2, + [316436] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17003), 1, aux_sym_brace_expression_token1, - [314900] = 2, + [316443] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17005), 1, aux_sym_brace_expression_token1, - [314907] = 2, + [316450] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17007), 1, aux_sym_brace_expression_token1, - [314914] = 2, + [316457] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17009), 1, aux_sym_brace_expression_token1, - [314921] = 2, + [316464] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17011), 1, aux_sym_brace_expression_token1, - [314928] = 2, + [316471] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17013), 1, aux_sym_brace_expression_token1, - [314935] = 2, + [316478] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17015), 1, - aux_sym_brace_expression_token1, - [314942] = 2, + anon_sym_RBRACE3, + [316485] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17017), 1, aux_sym_brace_expression_token1, - [314949] = 2, + [316492] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17019), 1, aux_sym_brace_expression_token1, - [314956] = 2, + [316499] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17021), 1, aux_sym_brace_expression_token1, - [314963] = 2, + [316506] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17023), 1, aux_sym_brace_expression_token1, - [314970] = 2, + [316513] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17025), 1, aux_sym_brace_expression_token1, - [314977] = 2, + [316520] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17027), 1, aux_sym_brace_expression_token1, - [314984] = 2, + [316527] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17029), 1, aux_sym_brace_expression_token1, - [314991] = 2, + [316534] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17031), 1, aux_sym_brace_expression_token1, - [314998] = 2, + [316541] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17033), 1, aux_sym_brace_expression_token1, - [315005] = 2, + [316548] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17035), 1, aux_sym_brace_expression_token1, - [315012] = 2, + [316555] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17037), 1, aux_sym_brace_expression_token1, - [315019] = 2, + [316562] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17039), 1, aux_sym_brace_expression_token1, - [315026] = 2, + [316569] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17041), 1, aux_sym_brace_expression_token1, - [315033] = 2, + [316576] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17043), 1, aux_sym_brace_expression_token1, - [315040] = 2, + [316583] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17045), 1, aux_sym_brace_expression_token1, - [315047] = 2, + [316590] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17047), 1, aux_sym_brace_expression_token1, - [315054] = 2, + [316597] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17049), 1, aux_sym_brace_expression_token1, - [315061] = 2, + [316604] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17051), 1, aux_sym_brace_expression_token1, - [315068] = 2, + [316611] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(17053), 1, - anon_sym_RBRACE3, + aux_sym_brace_expression_token1, + [316618] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17055), 1, + anon_sym_esac, }; static const uint32_t ts_small_parse_table_map[] = { @@ -334613,7047 +336546,7047 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(527)] = 474, [SMALL_STATE(528)] = 587, [SMALL_STATE(529)] = 704, - [SMALL_STATE(530)] = 819, - [SMALL_STATE(531)] = 936, - [SMALL_STATE(532)] = 1049, + [SMALL_STATE(530)] = 821, + [SMALL_STATE(531)] = 938, + [SMALL_STATE(532)] = 1053, [SMALL_STATE(533)] = 1166, [SMALL_STATE(534)] = 1283, - [SMALL_STATE(535)] = 1391, + [SMALL_STATE(535)] = 1397, [SMALL_STATE(536)] = 1505, - [SMALL_STATE(537)] = 1581, - [SMALL_STATE(538)] = 1657, - [SMALL_STATE(539)] = 1771, - [SMALL_STATE(540)] = 1879, - [SMALL_STATE(541)] = 1993, - [SMALL_STATE(542)] = 2101, - [SMALL_STATE(543)] = 2217, - [SMALL_STATE(544)] = 2329, - [SMALL_STATE(545)] = 2445, + [SMALL_STATE(537)] = 1617, + [SMALL_STATE(538)] = 1693, + [SMALL_STATE(539)] = 1805, + [SMALL_STATE(540)] = 1913, + [SMALL_STATE(541)] = 2027, + [SMALL_STATE(542)] = 2143, + [SMALL_STATE(543)] = 2251, + [SMALL_STATE(544)] = 2327, + [SMALL_STATE(545)] = 2441, [SMALL_STATE(546)] = 2557, [SMALL_STATE(547)] = 2632, [SMALL_STATE(548)] = 2707, [SMALL_STATE(549)] = 2818, - [SMALL_STATE(550)] = 2893, - [SMALL_STATE(551)] = 3000, - [SMALL_STATE(552)] = 3113, - [SMALL_STATE(553)] = 3224, - [SMALL_STATE(554)] = 3335, - [SMALL_STATE(555)] = 3442, - [SMALL_STATE(556)] = 3553, - [SMALL_STATE(557)] = 3666, + [SMALL_STATE(550)] = 2931, + [SMALL_STATE(551)] = 3038, + [SMALL_STATE(552)] = 3149, + [SMALL_STATE(553)] = 3256, + [SMALL_STATE(554)] = 3363, + [SMALL_STATE(555)] = 3474, + [SMALL_STATE(556)] = 3587, + [SMALL_STATE(557)] = 3698, [SMALL_STATE(558)] = 3773, [SMALL_STATE(559)] = 3848, - [SMALL_STATE(560)] = 3954, - [SMALL_STATE(561)] = 4028, - [SMALL_STATE(562)] = 4136, - [SMALL_STATE(563)] = 4244, - [SMALL_STATE(564)] = 4350, - [SMALL_STATE(565)] = 4424, - [SMALL_STATE(566)] = 4530, - [SMALL_STATE(567)] = 4636, - [SMALL_STATE(568)] = 4710, - [SMALL_STATE(569)] = 4816, - [SMALL_STATE(570)] = 4886, - [SMALL_STATE(571)] = 4950, - [SMALL_STATE(572)] = 5020, - [SMALL_STATE(573)] = 5120, - [SMALL_STATE(574)] = 5226, - [SMALL_STATE(575)] = 5300, - [SMALL_STATE(576)] = 5374, - [SMALL_STATE(577)] = 5448, - [SMALL_STATE(578)] = 5558, - [SMALL_STATE(579)] = 5670, - [SMALL_STATE(580)] = 5780, - [SMALL_STATE(581)] = 5847, - [SMALL_STATE(582)] = 5960, - [SMALL_STATE(583)] = 6033, - [SMALL_STATE(584)] = 6106, - [SMALL_STATE(585)] = 6179, - [SMALL_STATE(586)] = 6252, - [SMALL_STATE(587)] = 6321, - [SMALL_STATE(588)] = 6390, - [SMALL_STATE(589)] = 6491, - [SMALL_STATE(590)] = 6594, - [SMALL_STATE(591)] = 6661, - [SMALL_STATE(592)] = 6762, - [SMALL_STATE(593)] = 6861, - [SMALL_STATE(594)] = 6960, - [SMALL_STATE(595)] = 7059, - [SMALL_STATE(596)] = 7128, - [SMALL_STATE(597)] = 7197, - [SMALL_STATE(598)] = 7296, - [SMALL_STATE(599)] = 7397, - [SMALL_STATE(600)] = 7464, - [SMALL_STATE(601)] = 7567, - [SMALL_STATE(602)] = 7672, - [SMALL_STATE(603)] = 7745, - [SMALL_STATE(604)] = 7850, - [SMALL_STATE(605)] = 7923, - [SMALL_STATE(606)] = 8036, - [SMALL_STATE(607)] = 8103, - [SMALL_STATE(608)] = 8208, - [SMALL_STATE(609)] = 8336, - [SMALL_STATE(610)] = 8404, - [SMALL_STATE(611)] = 8532, - [SMALL_STATE(612)] = 8632, - [SMALL_STATE(613)] = 8700, - [SMALL_STATE(614)] = 8768, - [SMALL_STATE(615)] = 8868, - [SMALL_STATE(616)] = 8936, - [SMALL_STATE(617)] = 9034, - [SMALL_STATE(618)] = 9132, - [SMALL_STATE(619)] = 9260, - [SMALL_STATE(620)] = 9374, - [SMALL_STATE(621)] = 9472, - [SMALL_STATE(622)] = 9570, - [SMALL_STATE(623)] = 9668, - [SMALL_STATE(624)] = 9736, - [SMALL_STATE(625)] = 9864, - [SMALL_STATE(626)] = 9936, - [SMALL_STATE(627)] = 10064, - [SMALL_STATE(628)] = 10136, - [SMALL_STATE(629)] = 10208, - [SMALL_STATE(630)] = 10276, - [SMALL_STATE(631)] = 10348, - [SMALL_STATE(632)] = 10476, - [SMALL_STATE(633)] = 10548, - [SMALL_STATE(634)] = 10646, - [SMALL_STATE(635)] = 10774, - [SMALL_STATE(636)] = 10872, - [SMALL_STATE(637)] = 10972, - [SMALL_STATE(638)] = 11100, - [SMALL_STATE(639)] = 11198, - [SMALL_STATE(640)] = 11312, - [SMALL_STATE(641)] = 11410, - [SMALL_STATE(642)] = 11508, - [SMALL_STATE(643)] = 11580, - [SMALL_STATE(644)] = 11687, - [SMALL_STATE(645)] = 11786, - [SMALL_STATE(646)] = 11883, - [SMALL_STATE(647)] = 11980, - [SMALL_STATE(648)] = 12077, - [SMALL_STATE(649)] = 12176, - [SMALL_STATE(650)] = 12243, - [SMALL_STATE(651)] = 12314, - [SMALL_STATE(652)] = 12381, - [SMALL_STATE(653)] = 12478, - [SMALL_STATE(654)] = 12575, - [SMALL_STATE(655)] = 12642, - [SMALL_STATE(656)] = 12709, - [SMALL_STATE(657)] = 12808, - [SMALL_STATE(658)] = 12907, - [SMALL_STATE(659)] = 12978, - [SMALL_STATE(660)] = 13075, - [SMALL_STATE(661)] = 13172, - [SMALL_STATE(662)] = 13269, - [SMALL_STATE(663)] = 13366, - [SMALL_STATE(664)] = 13465, - [SMALL_STATE(665)] = 13562, - [SMALL_STATE(666)] = 13659, - [SMALL_STATE(667)] = 13756, - [SMALL_STATE(668)] = 13827, - [SMALL_STATE(669)] = 13898, - [SMALL_STATE(670)] = 13969, - [SMALL_STATE(671)] = 14040, - [SMALL_STATE(672)] = 14111, - [SMALL_STATE(673)] = 14182, - [SMALL_STATE(674)] = 14279, - [SMALL_STATE(675)] = 14350, - [SMALL_STATE(676)] = 14421, - [SMALL_STATE(677)] = 14488, - [SMALL_STATE(678)] = 14555, - [SMALL_STATE(679)] = 14652, - [SMALL_STATE(680)] = 14759, - [SMALL_STATE(681)] = 14868, - [SMALL_STATE(682)] = 14967, - [SMALL_STATE(683)] = 15027, - [SMALL_STATE(684)] = 15123, - [SMALL_STATE(685)] = 15219, - [SMALL_STATE(686)] = 15315, - [SMALL_STATE(687)] = 15411, - [SMALL_STATE(688)] = 15525, - [SMALL_STATE(689)] = 15639, - [SMALL_STATE(690)] = 15753, - [SMALL_STATE(691)] = 15849, - [SMALL_STATE(692)] = 15911, - [SMALL_STATE(693)] = 15981, - [SMALL_STATE(694)] = 16051, - [SMALL_STATE(695)] = 16165, - [SMALL_STATE(696)] = 16273, - [SMALL_STATE(697)] = 16387, - [SMALL_STATE(698)] = 16501, - [SMALL_STATE(699)] = 16597, - [SMALL_STATE(700)] = 16707, - [SMALL_STATE(701)] = 16777, - [SMALL_STATE(702)] = 16847, - [SMALL_STATE(703)] = 16955, - [SMALL_STATE(704)] = 17051, - [SMALL_STATE(705)] = 17165, - [SMALL_STATE(706)] = 17261, - [SMALL_STATE(707)] = 17375, - [SMALL_STATE(708)] = 17471, - [SMALL_STATE(709)] = 17585, - [SMALL_STATE(710)] = 17681, - [SMALL_STATE(711)] = 17795, - [SMALL_STATE(712)] = 17891, - [SMALL_STATE(713)] = 17985, - [SMALL_STATE(714)] = 18055, - [SMALL_STATE(715)] = 18151, - [SMALL_STATE(716)] = 18221, - [SMALL_STATE(717)] = 18317, - [SMALL_STATE(718)] = 18387, - [SMALL_STATE(719)] = 18483, - [SMALL_STATE(720)] = 18553, - [SMALL_STATE(721)] = 18649, - [SMALL_STATE(722)] = 18747, - [SMALL_STATE(723)] = 18841, - [SMALL_STATE(724)] = 18937, - [SMALL_STATE(725)] = 19033, - [SMALL_STATE(726)] = 19131, - [SMALL_STATE(727)] = 19193, - [SMALL_STATE(728)] = 19263, - [SMALL_STATE(729)] = 19365, - [SMALL_STATE(730)] = 19435, - [SMALL_STATE(731)] = 19505, - [SMALL_STATE(732)] = 19607, - [SMALL_STATE(733)] = 19677, - [SMALL_STATE(734)] = 19747, - [SMALL_STATE(735)] = 19817, - [SMALL_STATE(736)] = 19887, - [SMALL_STATE(737)] = 19985, - [SMALL_STATE(738)] = 20051, - [SMALL_STATE(739)] = 20121, - [SMALL_STATE(740)] = 20187, - [SMALL_STATE(741)] = 20289, - [SMALL_STATE(742)] = 20349, - [SMALL_STATE(743)] = 20418, - [SMALL_STATE(744)] = 20513, - [SMALL_STATE(745)] = 20582, - [SMALL_STATE(746)] = 20651, - [SMALL_STATE(747)] = 20720, - [SMALL_STATE(748)] = 20823, - [SMALL_STATE(749)] = 20892, - [SMALL_STATE(750)] = 20961, - [SMALL_STATE(751)] = 21030, - [SMALL_STATE(752)] = 21099, - [SMALL_STATE(753)] = 21168, - [SMALL_STATE(754)] = 21229, - [SMALL_STATE(755)] = 21298, - [SMALL_STATE(756)] = 21367, - [SMALL_STATE(757)] = 21462, - [SMALL_STATE(758)] = 21555, - [SMALL_STATE(759)] = 21648, - [SMALL_STATE(760)] = 21743, - [SMALL_STATE(761)] = 21812, - [SMALL_STATE(762)] = 21915, - [SMALL_STATE(763)] = 22008, - [SMALL_STATE(764)] = 22069, - [SMALL_STATE(765)] = 22162, - [SMALL_STATE(766)] = 22257, - [SMALL_STATE(767)] = 22352, - [SMALL_STATE(768)] = 22421, - [SMALL_STATE(769)] = 22516, - [SMALL_STATE(770)] = 22611, - [SMALL_STATE(771)] = 22706, - [SMALL_STATE(772)] = 22801, - [SMALL_STATE(773)] = 22870, - [SMALL_STATE(774)] = 22939, - [SMALL_STATE(775)] = 23008, - [SMALL_STATE(776)] = 23077, - [SMALL_STATE(777)] = 23146, - [SMALL_STATE(778)] = 23215, - [SMALL_STATE(779)] = 23274, - [SMALL_STATE(780)] = 23377, - [SMALL_STATE(781)] = 23446, - [SMALL_STATE(782)] = 23510, - [SMALL_STATE(783)] = 23582, - [SMALL_STATE(784)] = 23648, - [SMALL_STATE(785)] = 23716, - [SMALL_STATE(786)] = 23794, - [SMALL_STATE(787)] = 23890, - [SMALL_STATE(788)] = 23958, - [SMALL_STATE(789)] = 24050, - [SMALL_STATE(790)] = 24144, - [SMALL_STATE(791)] = 24238, - [SMALL_STATE(792)] = 24330, - [SMALL_STATE(793)] = 24398, - [SMALL_STATE(794)] = 24476, - [SMALL_STATE(795)] = 24540, - [SMALL_STATE(796)] = 24604, - [SMALL_STATE(797)] = 24668, - [SMALL_STATE(798)] = 24732, - [SMALL_STATE(799)] = 24826, - [SMALL_STATE(800)] = 24894, - [SMALL_STATE(801)] = 24964, - [SMALL_STATE(802)] = 25028, - [SMALL_STATE(803)] = 25092, - [SMALL_STATE(804)] = 25156, - [SMALL_STATE(805)] = 25220, - [SMALL_STATE(806)] = 25284, - [SMALL_STATE(807)] = 25352, - [SMALL_STATE(808)] = 25420, - [SMALL_STATE(809)] = 25488, - [SMALL_STATE(810)] = 25556, - [SMALL_STATE(811)] = 25619, - [SMALL_STATE(812)] = 25676, - [SMALL_STATE(813)] = 25733, - [SMALL_STATE(814)] = 25796, - [SMALL_STATE(815)] = 25873, - [SMALL_STATE(816)] = 25936, - [SMALL_STATE(817)] = 25999, - [SMALL_STATE(818)] = 26062, - [SMALL_STATE(819)] = 26125, - [SMALL_STATE(820)] = 26188, - [SMALL_STATE(821)] = 26283, - [SMALL_STATE(822)] = 26378, - [SMALL_STATE(823)] = 26471, - [SMALL_STATE(824)] = 26534, - [SMALL_STATE(825)] = 26591, - [SMALL_STATE(826)] = 26648, - [SMALL_STATE(827)] = 26711, - [SMALL_STATE(828)] = 26804, - [SMALL_STATE(829)] = 26867, - [SMALL_STATE(830)] = 26962, - [SMALL_STATE(831)] = 27027, - [SMALL_STATE(832)] = 27090, - [SMALL_STATE(833)] = 27147, - [SMALL_STATE(834)] = 27210, - [SMALL_STATE(835)] = 27267, - [SMALL_STATE(836)] = 27330, - [SMALL_STATE(837)] = 27387, - [SMALL_STATE(838)] = 27444, - [SMALL_STATE(839)] = 27507, - [SMALL_STATE(840)] = 27570, - [SMALL_STATE(841)] = 27633, - [SMALL_STATE(842)] = 27690, - [SMALL_STATE(843)] = 27753, - [SMALL_STATE(844)] = 27848, - [SMALL_STATE(845)] = 27911, - [SMALL_STATE(846)] = 27974, - [SMALL_STATE(847)] = 28045, - [SMALL_STATE(848)] = 28102, - [SMALL_STATE(849)] = 28159, - [SMALL_STATE(850)] = 28222, - [SMALL_STATE(851)] = 28317, - [SMALL_STATE(852)] = 28412, - [SMALL_STATE(853)] = 28469, - [SMALL_STATE(854)] = 28526, - [SMALL_STATE(855)] = 28619, - [SMALL_STATE(856)] = 28696, - [SMALL_STATE(857)] = 28759, - [SMALL_STATE(858)] = 28816, - [SMALL_STATE(859)] = 28873, - [SMALL_STATE(860)] = 28930, - [SMALL_STATE(861)] = 28999, - [SMALL_STATE(862)] = 29056, - [SMALL_STATE(863)] = 29113, - [SMALL_STATE(864)] = 29208, - [SMALL_STATE(865)] = 29271, - [SMALL_STATE(866)] = 29334, - [SMALL_STATE(867)] = 29397, - [SMALL_STATE(868)] = 29454, - [SMALL_STATE(869)] = 29530, - [SMALL_STATE(870)] = 29592, - [SMALL_STATE(871)] = 29686, - [SMALL_STATE(872)] = 29780, - [SMALL_STATE(873)] = 29874, - [SMALL_STATE(874)] = 29944, - [SMALL_STATE(875)] = 30010, - [SMALL_STATE(876)] = 30076, - [SMALL_STATE(877)] = 30172, - [SMALL_STATE(878)] = 30234, - [SMALL_STATE(879)] = 30296, - [SMALL_STATE(880)] = 30358, - [SMALL_STATE(881)] = 30468, - [SMALL_STATE(882)] = 30530, - [SMALL_STATE(883)] = 30592, - [SMALL_STATE(884)] = 30654, - [SMALL_STATE(885)] = 30722, - [SMALL_STATE(886)] = 30818, - [SMALL_STATE(887)] = 30880, - [SMALL_STATE(888)] = 30940, - [SMALL_STATE(889)] = 30996, - [SMALL_STATE(890)] = 31052, - [SMALL_STATE(891)] = 31108, - [SMALL_STATE(892)] = 31164, - [SMALL_STATE(893)] = 31220, - [SMALL_STATE(894)] = 31276, - [SMALL_STATE(895)] = 31332, - [SMALL_STATE(896)] = 31394, - [SMALL_STATE(897)] = 31450, - [SMALL_STATE(898)] = 31506, - [SMALL_STATE(899)] = 31562, - [SMALL_STATE(900)] = 31618, - [SMALL_STATE(901)] = 31684, - [SMALL_STATE(902)] = 31750, - [SMALL_STATE(903)] = 31806, - [SMALL_STATE(904)] = 31862, - [SMALL_STATE(905)] = 31918, - [SMALL_STATE(906)] = 31974, - [SMALL_STATE(907)] = 32030, - [SMALL_STATE(908)] = 32092, - [SMALL_STATE(909)] = 32148, - [SMALL_STATE(910)] = 32204, - [SMALL_STATE(911)] = 32266, - [SMALL_STATE(912)] = 32328, - [SMALL_STATE(913)] = 32390, - [SMALL_STATE(914)] = 32446, - [SMALL_STATE(915)] = 32502, - [SMALL_STATE(916)] = 32558, - [SMALL_STATE(917)] = 32614, - [SMALL_STATE(918)] = 32670, - [SMALL_STATE(919)] = 32726, - [SMALL_STATE(920)] = 32782, - [SMALL_STATE(921)] = 32838, - [SMALL_STATE(922)] = 32894, - [SMALL_STATE(923)] = 32950, - [SMALL_STATE(924)] = 33006, - [SMALL_STATE(925)] = 33068, - [SMALL_STATE(926)] = 33134, - [SMALL_STATE(927)] = 33200, - [SMALL_STATE(928)] = 33256, - [SMALL_STATE(929)] = 33312, - [SMALL_STATE(930)] = 33368, - [SMALL_STATE(931)] = 33424, - [SMALL_STATE(932)] = 33486, - [SMALL_STATE(933)] = 33542, - [SMALL_STATE(934)] = 33638, - [SMALL_STATE(935)] = 33694, - [SMALL_STATE(936)] = 33750, - [SMALL_STATE(937)] = 33806, - [SMALL_STATE(938)] = 33916, - [SMALL_STATE(939)] = 34026, - [SMALL_STATE(940)] = 34096, - [SMALL_STATE(941)] = 34162, - [SMALL_STATE(942)] = 34228, - [SMALL_STATE(943)] = 34338, - [SMALL_STATE(944)] = 34398, - [SMALL_STATE(945)] = 34460, - [SMALL_STATE(946)] = 34522, - [SMALL_STATE(947)] = 34614, - [SMALL_STATE(948)] = 34706, - [SMALL_STATE(949)] = 34798, - [SMALL_STATE(950)] = 34908, - [SMALL_STATE(951)] = 34970, - [SMALL_STATE(952)] = 35032, - [SMALL_STATE(953)] = 35094, - [SMALL_STATE(954)] = 35170, - [SMALL_STATE(955)] = 35234, - [SMALL_STATE(956)] = 35296, - [SMALL_STATE(957)] = 35358, - [SMALL_STATE(958)] = 35422, - [SMALL_STATE(959)] = 35498, - [SMALL_STATE(960)] = 35560, - [SMALL_STATE(961)] = 35622, - [SMALL_STATE(962)] = 35732, - [SMALL_STATE(963)] = 35800, - [SMALL_STATE(964)] = 35862, - [SMALL_STATE(965)] = 35956, - [SMALL_STATE(966)] = 36050, - [SMALL_STATE(967)] = 36144, - [SMALL_STATE(968)] = 36238, - [SMALL_STATE(969)] = 36300, - [SMALL_STATE(970)] = 36376, - [SMALL_STATE(971)] = 36486, - [SMALL_STATE(972)] = 36580, - [SMALL_STATE(973)] = 36646, - [SMALL_STATE(974)] = 36712, - [SMALL_STATE(975)] = 36822, - [SMALL_STATE(976)] = 36914, - [SMALL_STATE(977)] = 37006, - [SMALL_STATE(978)] = 37062, - [SMALL_STATE(979)] = 37117, - [SMALL_STATE(980)] = 37182, - [SMALL_STATE(981)] = 37247, - [SMALL_STATE(982)] = 37312, - [SMALL_STATE(983)] = 37373, - [SMALL_STATE(984)] = 37428, - [SMALL_STATE(985)] = 37483, - [SMALL_STATE(986)] = 37544, - [SMALL_STATE(987)] = 37605, - [SMALL_STATE(988)] = 37666, - [SMALL_STATE(989)] = 37727, - [SMALL_STATE(990)] = 37788, - [SMALL_STATE(991)] = 37849, - [SMALL_STATE(992)] = 37910, - [SMALL_STATE(993)] = 37971, - [SMALL_STATE(994)] = 38046, - [SMALL_STATE(995)] = 38107, - [SMALL_STATE(996)] = 38166, - [SMALL_STATE(997)] = 38221, - [SMALL_STATE(998)] = 38276, - [SMALL_STATE(999)] = 38369, - [SMALL_STATE(1000)] = 38462, - [SMALL_STATE(1001)] = 38555, - [SMALL_STATE(1002)] = 38648, - [SMALL_STATE(1003)] = 38713, - [SMALL_STATE(1004)] = 38806, - [SMALL_STATE(1005)] = 38871, - [SMALL_STATE(1006)] = 38930, - [SMALL_STATE(1007)] = 38995, - [SMALL_STATE(1008)] = 39060, - [SMALL_STATE(1009)] = 39121, - [SMALL_STATE(1010)] = 39182, - [SMALL_STATE(1011)] = 39237, - [SMALL_STATE(1012)] = 39292, - [SMALL_STATE(1013)] = 39347, - [SMALL_STATE(1014)] = 39402, - [SMALL_STATE(1015)] = 39457, - [SMALL_STATE(1016)] = 39518, - [SMALL_STATE(1017)] = 39579, - [SMALL_STATE(1018)] = 39634, - [SMALL_STATE(1019)] = 39689, - [SMALL_STATE(1020)] = 39750, - [SMALL_STATE(1021)] = 39811, - [SMALL_STATE(1022)] = 39872, - [SMALL_STATE(1023)] = 39937, - [SMALL_STATE(1024)] = 40002, - [SMALL_STATE(1025)] = 40057, - [SMALL_STATE(1026)] = 40112, - [SMALL_STATE(1027)] = 40173, - [SMALL_STATE(1028)] = 40232, - [SMALL_STATE(1029)] = 40293, - [SMALL_STATE(1030)] = 40352, - [SMALL_STATE(1031)] = 40407, - [SMALL_STATE(1032)] = 40462, - [SMALL_STATE(1033)] = 40525, - [SMALL_STATE(1034)] = 40580, - [SMALL_STATE(1035)] = 40635, - [SMALL_STATE(1036)] = 40690, - [SMALL_STATE(1037)] = 40745, - [SMALL_STATE(1038)] = 40800, - [SMALL_STATE(1039)] = 40855, - [SMALL_STATE(1040)] = 40910, - [SMALL_STATE(1041)] = 40965, - [SMALL_STATE(1042)] = 41020, - [SMALL_STATE(1043)] = 41075, - [SMALL_STATE(1044)] = 41130, - [SMALL_STATE(1045)] = 41185, - [SMALL_STATE(1046)] = 41252, - [SMALL_STATE(1047)] = 41307, - [SMALL_STATE(1048)] = 41380, - [SMALL_STATE(1049)] = 41435, - [SMALL_STATE(1050)] = 41490, - [SMALL_STATE(1051)] = 41545, - [SMALL_STATE(1052)] = 41600, - [SMALL_STATE(1053)] = 41655, - [SMALL_STATE(1054)] = 41716, - [SMALL_STATE(1055)] = 41771, - [SMALL_STATE(1056)] = 41832, - [SMALL_STATE(1057)] = 41887, - [SMALL_STATE(1058)] = 41952, - [SMALL_STATE(1059)] = 42017, - [SMALL_STATE(1060)] = 42082, - [SMALL_STATE(1061)] = 42155, - [SMALL_STATE(1062)] = 42220, - [SMALL_STATE(1063)] = 42285, - [SMALL_STATE(1064)] = 42346, - [SMALL_STATE(1065)] = 42407, - [SMALL_STATE(1066)] = 42472, - [SMALL_STATE(1067)] = 42527, - [SMALL_STATE(1068)] = 42582, - [SMALL_STATE(1069)] = 42637, - [SMALL_STATE(1070)] = 42692, - [SMALL_STATE(1071)] = 42747, - [SMALL_STATE(1072)] = 42806, - [SMALL_STATE(1073)] = 42861, - [SMALL_STATE(1074)] = 42916, - [SMALL_STATE(1075)] = 42985, - [SMALL_STATE(1076)] = 43046, - [SMALL_STATE(1077)] = 43107, - [SMALL_STATE(1078)] = 43162, - [SMALL_STATE(1079)] = 43217, - [SMALL_STATE(1080)] = 43272, - [SMALL_STATE(1081)] = 43327, - [SMALL_STATE(1082)] = 43382, - [SMALL_STATE(1083)] = 43437, - [SMALL_STATE(1084)] = 43496, - [SMALL_STATE(1085)] = 43551, - [SMALL_STATE(1086)] = 43606, - [SMALL_STATE(1087)] = 43661, - [SMALL_STATE(1088)] = 43716, - [SMALL_STATE(1089)] = 43771, - [SMALL_STATE(1090)] = 43830, - [SMALL_STATE(1091)] = 43885, - [SMALL_STATE(1092)] = 43940, - [SMALL_STATE(1093)] = 44007, - [SMALL_STATE(1094)] = 44062, - [SMALL_STATE(1095)] = 44123, - [SMALL_STATE(1096)] = 44184, - [SMALL_STATE(1097)] = 44245, - [SMALL_STATE(1098)] = 44318, - [SMALL_STATE(1099)] = 44393, - [SMALL_STATE(1100)] = 44454, - [SMALL_STATE(1101)] = 44515, - [SMALL_STATE(1102)] = 44576, - [SMALL_STATE(1103)] = 44637, - [SMALL_STATE(1104)] = 44702, - [SMALL_STATE(1105)] = 44767, - [SMALL_STATE(1106)] = 44828, - [SMALL_STATE(1107)] = 44889, - [SMALL_STATE(1108)] = 44950, - [SMALL_STATE(1109)] = 45011, - [SMALL_STATE(1110)] = 45066, - [SMALL_STATE(1111)] = 45121, - [SMALL_STATE(1112)] = 45214, - [SMALL_STATE(1113)] = 45275, - [SMALL_STATE(1114)] = 45368, - [SMALL_STATE(1115)] = 45429, - [SMALL_STATE(1116)] = 45490, - [SMALL_STATE(1117)] = 45551, - [SMALL_STATE(1118)] = 45612, - [SMALL_STATE(1119)] = 45673, - [SMALL_STATE(1120)] = 45734, - [SMALL_STATE(1121)] = 45795, - [SMALL_STATE(1122)] = 45856, - [SMALL_STATE(1123)] = 45917, - [SMALL_STATE(1124)] = 45978, - [SMALL_STATE(1125)] = 46039, - [SMALL_STATE(1126)] = 46100, - [SMALL_STATE(1127)] = 46161, - [SMALL_STATE(1128)] = 46224, - [SMALL_STATE(1129)] = 46293, - [SMALL_STATE(1130)] = 46354, - [SMALL_STATE(1131)] = 46421, - [SMALL_STATE(1132)] = 46486, - [SMALL_STATE(1133)] = 46577, - [SMALL_STATE(1134)] = 46668, - [SMALL_STATE(1135)] = 46733, - [SMALL_STATE(1136)] = 46798, - [SMALL_STATE(1137)] = 46871, - [SMALL_STATE(1138)] = 46931, - [SMALL_STATE(1139)] = 46985, - [SMALL_STATE(1140)] = 47043, - [SMALL_STATE(1141)] = 47097, - [SMALL_STATE(1142)] = 47151, - [SMALL_STATE(1143)] = 47205, - [SMALL_STATE(1144)] = 47259, - [SMALL_STATE(1145)] = 47313, - [SMALL_STATE(1146)] = 47367, - [SMALL_STATE(1147)] = 47421, - [SMALL_STATE(1148)] = 47481, - [SMALL_STATE(1149)] = 47535, - [SMALL_STATE(1150)] = 47589, - [SMALL_STATE(1151)] = 47643, - [SMALL_STATE(1152)] = 47697, - [SMALL_STATE(1153)] = 47751, - [SMALL_STATE(1154)] = 47805, - [SMALL_STATE(1155)] = 47859, - [SMALL_STATE(1156)] = 47913, - [SMALL_STATE(1157)] = 47967, - [SMALL_STATE(1158)] = 48021, - [SMALL_STATE(1159)] = 48081, - [SMALL_STATE(1160)] = 48139, - [SMALL_STATE(1161)] = 48193, - [SMALL_STATE(1162)] = 48253, - [SMALL_STATE(1163)] = 48313, - [SMALL_STATE(1164)] = 48367, - [SMALL_STATE(1165)] = 48421, - [SMALL_STATE(1166)] = 48481, - [SMALL_STATE(1167)] = 48541, - [SMALL_STATE(1168)] = 48595, - [SMALL_STATE(1169)] = 48649, - [SMALL_STATE(1170)] = 48709, - [SMALL_STATE(1171)] = 48763, - [SMALL_STATE(1172)] = 48817, - [SMALL_STATE(1173)] = 48871, - [SMALL_STATE(1174)] = 48925, - [SMALL_STATE(1175)] = 48979, - [SMALL_STATE(1176)] = 49033, - [SMALL_STATE(1177)] = 49125, - [SMALL_STATE(1178)] = 49179, - [SMALL_STATE(1179)] = 49233, - [SMALL_STATE(1180)] = 49297, - [SMALL_STATE(1181)] = 49361, - [SMALL_STATE(1182)] = 49419, - [SMALL_STATE(1183)] = 49473, - [SMALL_STATE(1184)] = 49565, - [SMALL_STATE(1185)] = 49619, - [SMALL_STATE(1186)] = 49673, - [SMALL_STATE(1187)] = 49781, - [SMALL_STATE(1188)] = 49845, - [SMALL_STATE(1189)] = 49909, - [SMALL_STATE(1190)] = 49963, - [SMALL_STATE(1191)] = 50023, - [SMALL_STATE(1192)] = 50083, - [SMALL_STATE(1193)] = 50137, - [SMALL_STATE(1194)] = 50191, - [SMALL_STATE(1195)] = 50251, - [SMALL_STATE(1196)] = 50305, - [SMALL_STATE(1197)] = 50359, - [SMALL_STATE(1198)] = 50413, - [SMALL_STATE(1199)] = 50473, - [SMALL_STATE(1200)] = 50581, - [SMALL_STATE(1201)] = 50641, - [SMALL_STATE(1202)] = 50701, - [SMALL_STATE(1203)] = 50755, - [SMALL_STATE(1204)] = 50815, - [SMALL_STATE(1205)] = 50875, - [SMALL_STATE(1206)] = 50935, - [SMALL_STATE(1207)] = 51043, - [SMALL_STATE(1208)] = 51103, - [SMALL_STATE(1209)] = 51157, - [SMALL_STATE(1210)] = 51211, - [SMALL_STATE(1211)] = 51271, - [SMALL_STATE(1212)] = 51331, - [SMALL_STATE(1213)] = 51385, - [SMALL_STATE(1214)] = 51445, - [SMALL_STATE(1215)] = 51499, - [SMALL_STATE(1216)] = 51607, - [SMALL_STATE(1217)] = 51673, - [SMALL_STATE(1218)] = 51781, - [SMALL_STATE(1219)] = 51889, - [SMALL_STATE(1220)] = 51949, - [SMALL_STATE(1221)] = 52003, - [SMALL_STATE(1222)] = 52063, - [SMALL_STATE(1223)] = 52123, - [SMALL_STATE(1224)] = 52183, - [SMALL_STATE(1225)] = 52237, - [SMALL_STATE(1226)] = 52297, - [SMALL_STATE(1227)] = 52357, - [SMALL_STATE(1228)] = 52417, - [SMALL_STATE(1229)] = 52471, - [SMALL_STATE(1230)] = 52525, - [SMALL_STATE(1231)] = 52583, - [SMALL_STATE(1232)] = 52637, - [SMALL_STATE(1233)] = 52695, - [SMALL_STATE(1234)] = 52755, - [SMALL_STATE(1235)] = 52815, - [SMALL_STATE(1236)] = 52873, - [SMALL_STATE(1237)] = 52927, - [SMALL_STATE(1238)] = 52985, - [SMALL_STATE(1239)] = 53039, - [SMALL_STATE(1240)] = 53099, - [SMALL_STATE(1241)] = 53159, - [SMALL_STATE(1242)] = 53213, - [SMALL_STATE(1243)] = 53267, - [SMALL_STATE(1244)] = 53321, - [SMALL_STATE(1245)] = 53385, - [SMALL_STATE(1246)] = 53443, - [SMALL_STATE(1247)] = 53497, - [SMALL_STATE(1248)] = 53551, - [SMALL_STATE(1249)] = 53605, - [SMALL_STATE(1250)] = 53659, - [SMALL_STATE(1251)] = 53723, - [SMALL_STATE(1252)] = 53777, - [SMALL_STATE(1253)] = 53831, - [SMALL_STATE(1254)] = 53885, - [SMALL_STATE(1255)] = 53939, - [SMALL_STATE(1256)] = 53993, - [SMALL_STATE(1257)] = 54047, - [SMALL_STATE(1258)] = 54101, - [SMALL_STATE(1259)] = 54159, - [SMALL_STATE(1260)] = 54213, - [SMALL_STATE(1261)] = 54267, - [SMALL_STATE(1262)] = 54321, - [SMALL_STATE(1263)] = 54375, - [SMALL_STATE(1264)] = 54429, - [SMALL_STATE(1265)] = 54489, - [SMALL_STATE(1266)] = 54549, - [SMALL_STATE(1267)] = 54609, - [SMALL_STATE(1268)] = 54673, - [SMALL_STATE(1269)] = 54727, - [SMALL_STATE(1270)] = 54787, - [SMALL_STATE(1271)] = 54847, - [SMALL_STATE(1272)] = 54911, - [SMALL_STATE(1273)] = 54965, - [SMALL_STATE(1274)] = 55019, - [SMALL_STATE(1275)] = 55073, - [SMALL_STATE(1276)] = 55133, - [SMALL_STATE(1277)] = 55193, - [SMALL_STATE(1278)] = 55247, - [SMALL_STATE(1279)] = 55301, - [SMALL_STATE(1280)] = 55361, - [SMALL_STATE(1281)] = 55421, - [SMALL_STATE(1282)] = 55481, - [SMALL_STATE(1283)] = 55541, - [SMALL_STATE(1284)] = 55601, - [SMALL_STATE(1285)] = 55655, - [SMALL_STATE(1286)] = 55709, - [SMALL_STATE(1287)] = 55763, - [SMALL_STATE(1288)] = 55817, - [SMALL_STATE(1289)] = 55871, - [SMALL_STATE(1290)] = 55925, - [SMALL_STATE(1291)] = 55979, - [SMALL_STATE(1292)] = 56039, - [SMALL_STATE(1293)] = 56098, - [SMALL_STATE(1294)] = 56151, - [SMALL_STATE(1295)] = 56204, - [SMALL_STATE(1296)] = 56257, - [SMALL_STATE(1297)] = 56310, - [SMALL_STATE(1298)] = 56369, - [SMALL_STATE(1299)] = 56422, - [SMALL_STATE(1300)] = 56475, - [SMALL_STATE(1301)] = 56528, - [SMALL_STATE(1302)] = 56587, - [SMALL_STATE(1303)] = 56640, - [SMALL_STATE(1304)] = 56693, - [SMALL_STATE(1305)] = 56746, - [SMALL_STATE(1306)] = 56835, - [SMALL_STATE(1307)] = 56894, - [SMALL_STATE(1308)] = 56953, - [SMALL_STATE(1309)] = 57006, - [SMALL_STATE(1310)] = 57059, - [SMALL_STATE(1311)] = 57112, - [SMALL_STATE(1312)] = 57171, - [SMALL_STATE(1313)] = 57224, - [SMALL_STATE(1314)] = 57277, - [SMALL_STATE(1315)] = 57330, - [SMALL_STATE(1316)] = 57383, - [SMALL_STATE(1317)] = 57436, - [SMALL_STATE(1318)] = 57495, - [SMALL_STATE(1319)] = 57548, - [SMALL_STATE(1320)] = 57601, - [SMALL_STATE(1321)] = 57658, - [SMALL_STATE(1322)] = 57711, - [SMALL_STATE(1323)] = 57770, - [SMALL_STATE(1324)] = 57829, - [SMALL_STATE(1325)] = 57888, - [SMALL_STATE(1326)] = 57947, - [SMALL_STATE(1327)] = 58006, - [SMALL_STATE(1328)] = 58059, - [SMALL_STATE(1329)] = 58112, - [SMALL_STATE(1330)] = 58165, - [SMALL_STATE(1331)] = 58218, - [SMALL_STATE(1332)] = 58271, - [SMALL_STATE(1333)] = 58324, - [SMALL_STATE(1334)] = 58377, - [SMALL_STATE(1335)] = 58434, - [SMALL_STATE(1336)] = 58487, - [SMALL_STATE(1337)] = 58540, - [SMALL_STATE(1338)] = 58597, - [SMALL_STATE(1339)] = 58656, - [SMALL_STATE(1340)] = 58709, - [SMALL_STATE(1341)] = 58762, - [SMALL_STATE(1342)] = 58821, - [SMALL_STATE(1343)] = 58874, - [SMALL_STATE(1344)] = 58927, - [SMALL_STATE(1345)] = 58986, - [SMALL_STATE(1346)] = 59045, - [SMALL_STATE(1347)] = 59104, - [SMALL_STATE(1348)] = 59157, - [SMALL_STATE(1349)] = 59216, - [SMALL_STATE(1350)] = 59269, - [SMALL_STATE(1351)] = 59322, - [SMALL_STATE(1352)] = 59375, - [SMALL_STATE(1353)] = 59434, - [SMALL_STATE(1354)] = 59493, - [SMALL_STATE(1355)] = 59552, - [SMALL_STATE(1356)] = 59611, - [SMALL_STATE(1357)] = 59670, - [SMALL_STATE(1358)] = 59729, - [SMALL_STATE(1359)] = 59782, - [SMALL_STATE(1360)] = 59835, - [SMALL_STATE(1361)] = 59892, - [SMALL_STATE(1362)] = 59945, - [SMALL_STATE(1363)] = 60004, - [SMALL_STATE(1364)] = 60063, - [SMALL_STATE(1365)] = 60116, - [SMALL_STATE(1366)] = 60169, - [SMALL_STATE(1367)] = 60226, - [SMALL_STATE(1368)] = 60285, - [SMALL_STATE(1369)] = 60344, - [SMALL_STATE(1370)] = 60397, - [SMALL_STATE(1371)] = 60456, - [SMALL_STATE(1372)] = 60515, - [SMALL_STATE(1373)] = 60574, - [SMALL_STATE(1374)] = 60633, - [SMALL_STATE(1375)] = 60692, - [SMALL_STATE(1376)] = 60751, - [SMALL_STATE(1377)] = 60810, - [SMALL_STATE(1378)] = 60869, - [SMALL_STATE(1379)] = 60928, - [SMALL_STATE(1380)] = 60987, - [SMALL_STATE(1381)] = 61040, - [SMALL_STATE(1382)] = 61099, - [SMALL_STATE(1383)] = 61158, - [SMALL_STATE(1384)] = 61211, - [SMALL_STATE(1385)] = 61264, - [SMALL_STATE(1386)] = 61329, - [SMALL_STATE(1387)] = 61388, - [SMALL_STATE(1388)] = 61445, - [SMALL_STATE(1389)] = 61498, - [SMALL_STATE(1390)] = 61557, - [SMALL_STATE(1391)] = 61646, - [SMALL_STATE(1392)] = 61703, - [SMALL_STATE(1393)] = 61756, - [SMALL_STATE(1394)] = 61815, - [SMALL_STATE(1395)] = 61868, - [SMALL_STATE(1396)] = 61925, - [SMALL_STATE(1397)] = 61978, - [SMALL_STATE(1398)] = 62035, - [SMALL_STATE(1399)] = 62088, - [SMALL_STATE(1400)] = 62141, - [SMALL_STATE(1401)] = 62194, - [SMALL_STATE(1402)] = 62253, - [SMALL_STATE(1403)] = 62312, - [SMALL_STATE(1404)] = 62365, - [SMALL_STATE(1405)] = 62418, - [SMALL_STATE(1406)] = 62471, - [SMALL_STATE(1407)] = 62524, - [SMALL_STATE(1408)] = 62577, - [SMALL_STATE(1409)] = 62630, - [SMALL_STATE(1410)] = 62683, - [SMALL_STATE(1411)] = 62740, - [SMALL_STATE(1412)] = 62797, - [SMALL_STATE(1413)] = 62854, - [SMALL_STATE(1414)] = 62907, - [SMALL_STATE(1415)] = 62960, - [SMALL_STATE(1416)] = 63013, - [SMALL_STATE(1417)] = 63072, - [SMALL_STATE(1418)] = 63125, - [SMALL_STATE(1419)] = 63184, - [SMALL_STATE(1420)] = 63237, - [SMALL_STATE(1421)] = 63296, - [SMALL_STATE(1422)] = 63355, - [SMALL_STATE(1423)] = 63414, - [SMALL_STATE(1424)] = 63471, - [SMALL_STATE(1425)] = 63528, - [SMALL_STATE(1426)] = 63585, - [SMALL_STATE(1427)] = 63638, - [SMALL_STATE(1428)] = 63695, - [SMALL_STATE(1429)] = 63748, - [SMALL_STATE(1430)] = 63837, - [SMALL_STATE(1431)] = 63896, - [SMALL_STATE(1432)] = 63949, - [SMALL_STATE(1433)] = 64002, - [SMALL_STATE(1434)] = 64055, - [SMALL_STATE(1435)] = 64108, - [SMALL_STATE(1436)] = 64161, - [SMALL_STATE(1437)] = 64218, - [SMALL_STATE(1438)] = 64277, - [SMALL_STATE(1439)] = 64330, - [SMALL_STATE(1440)] = 64383, - [SMALL_STATE(1441)] = 64436, - [SMALL_STATE(1442)] = 64489, - [SMALL_STATE(1443)] = 64542, - [SMALL_STATE(1444)] = 64601, - [SMALL_STATE(1445)] = 64660, - [SMALL_STATE(1446)] = 64719, - [SMALL_STATE(1447)] = 64778, - [SMALL_STATE(1448)] = 64837, - [SMALL_STATE(1449)] = 64894, - [SMALL_STATE(1450)] = 64947, - [SMALL_STATE(1451)] = 65006, - [SMALL_STATE(1452)] = 65059, - [SMALL_STATE(1453)] = 65112, - [SMALL_STATE(1454)] = 65165, - [SMALL_STATE(1455)] = 65224, - [SMALL_STATE(1456)] = 65277, - [SMALL_STATE(1457)] = 65336, - [SMALL_STATE(1458)] = 65393, - [SMALL_STATE(1459)] = 65446, - [SMALL_STATE(1460)] = 65499, - [SMALL_STATE(1461)] = 65552, - [SMALL_STATE(1462)] = 65611, - [SMALL_STATE(1463)] = 65670, - [SMALL_STATE(1464)] = 65727, - [SMALL_STATE(1465)] = 65783, - [SMALL_STATE(1466)] = 65835, - [SMALL_STATE(1467)] = 65887, - [SMALL_STATE(1468)] = 65939, - [SMALL_STATE(1469)] = 65991, - [SMALL_STATE(1470)] = 66053, - [SMALL_STATE(1471)] = 66115, - [SMALL_STATE(1472)] = 66171, - [SMALL_STATE(1473)] = 66223, - [SMALL_STATE(1474)] = 66275, - [SMALL_STATE(1475)] = 66331, - [SMALL_STATE(1476)] = 66383, - [SMALL_STATE(1477)] = 66435, - [SMALL_STATE(1478)] = 66487, - [SMALL_STATE(1479)] = 66539, - [SMALL_STATE(1480)] = 66591, - [SMALL_STATE(1481)] = 66647, - [SMALL_STATE(1482)] = 66699, - [SMALL_STATE(1483)] = 66751, - [SMALL_STATE(1484)] = 66803, - [SMALL_STATE(1485)] = 66859, - [SMALL_STATE(1486)] = 66911, - [SMALL_STATE(1487)] = 66963, - [SMALL_STATE(1488)] = 67015, - [SMALL_STATE(1489)] = 67073, - [SMALL_STATE(1490)] = 67125, - [SMALL_STATE(1491)] = 67177, - [SMALL_STATE(1492)] = 67233, - [SMALL_STATE(1493)] = 67285, - [SMALL_STATE(1494)] = 67337, - [SMALL_STATE(1495)] = 67389, - [SMALL_STATE(1496)] = 67441, - [SMALL_STATE(1497)] = 67499, - [SMALL_STATE(1498)] = 67551, - [SMALL_STATE(1499)] = 67603, - [SMALL_STATE(1500)] = 67655, - [SMALL_STATE(1501)] = 67707, - [SMALL_STATE(1502)] = 67763, - [SMALL_STATE(1503)] = 67819, - [SMALL_STATE(1504)] = 67871, - [SMALL_STATE(1505)] = 67927, - [SMALL_STATE(1506)] = 67979, - [SMALL_STATE(1507)] = 68031, - [SMALL_STATE(1508)] = 68083, - [SMALL_STATE(1509)] = 68139, - [SMALL_STATE(1510)] = 68191, - [SMALL_STATE(1511)] = 68249, - [SMALL_STATE(1512)] = 68301, - [SMALL_STATE(1513)] = 68353, - [SMALL_STATE(1514)] = 68411, - [SMALL_STATE(1515)] = 68467, - [SMALL_STATE(1516)] = 68525, - [SMALL_STATE(1517)] = 68577, - [SMALL_STATE(1518)] = 68629, - [SMALL_STATE(1519)] = 68681, - [SMALL_STATE(1520)] = 68783, - [SMALL_STATE(1521)] = 68835, - [SMALL_STATE(1522)] = 68887, - [SMALL_STATE(1523)] = 68945, - [SMALL_STATE(1524)] = 69003, - [SMALL_STATE(1525)] = 69061, - [SMALL_STATE(1526)] = 69113, - [SMALL_STATE(1527)] = 69165, - [SMALL_STATE(1528)] = 69217, - [SMALL_STATE(1529)] = 69269, - [SMALL_STATE(1530)] = 69321, - [SMALL_STATE(1531)] = 69373, - [SMALL_STATE(1532)] = 69425, - [SMALL_STATE(1533)] = 69477, - [SMALL_STATE(1534)] = 69529, - [SMALL_STATE(1535)] = 69581, - [SMALL_STATE(1536)] = 69633, - [SMALL_STATE(1537)] = 69685, - [SMALL_STATE(1538)] = 69737, - [SMALL_STATE(1539)] = 69789, - [SMALL_STATE(1540)] = 69841, - [SMALL_STATE(1541)] = 69893, - [SMALL_STATE(1542)] = 69981, - [SMALL_STATE(1543)] = 70037, - [SMALL_STATE(1544)] = 70125, - [SMALL_STATE(1545)] = 70177, - [SMALL_STATE(1546)] = 70229, - [SMALL_STATE(1547)] = 70281, - [SMALL_STATE(1548)] = 70333, - [SMALL_STATE(1549)] = 70391, - [SMALL_STATE(1550)] = 70443, - [SMALL_STATE(1551)] = 70495, - [SMALL_STATE(1552)] = 70547, - [SMALL_STATE(1553)] = 70599, - [SMALL_STATE(1554)] = 70651, - [SMALL_STATE(1555)] = 70703, - [SMALL_STATE(1556)] = 70755, - [SMALL_STATE(1557)] = 70807, - [SMALL_STATE(1558)] = 70859, - [SMALL_STATE(1559)] = 70911, - [SMALL_STATE(1560)] = 70963, - [SMALL_STATE(1561)] = 71015, - [SMALL_STATE(1562)] = 71067, - [SMALL_STATE(1563)] = 71119, - [SMALL_STATE(1564)] = 71171, - [SMALL_STATE(1565)] = 71273, - [SMALL_STATE(1566)] = 71325, - [SMALL_STATE(1567)] = 71377, - [SMALL_STATE(1568)] = 71429, - [SMALL_STATE(1569)] = 71487, - [SMALL_STATE(1570)] = 71539, - [SMALL_STATE(1571)] = 71591, - [SMALL_STATE(1572)] = 71643, - [SMALL_STATE(1573)] = 71701, - [SMALL_STATE(1574)] = 71753, - [SMALL_STATE(1575)] = 71805, - [SMALL_STATE(1576)] = 71857, - [SMALL_STATE(1577)] = 71909, - [SMALL_STATE(1578)] = 71961, - [SMALL_STATE(1579)] = 72013, - [SMALL_STATE(1580)] = 72065, - [SMALL_STATE(1581)] = 72117, - [SMALL_STATE(1582)] = 72169, - [SMALL_STATE(1583)] = 72221, - [SMALL_STATE(1584)] = 72279, - [SMALL_STATE(1585)] = 72331, - [SMALL_STATE(1586)] = 72433, - [SMALL_STATE(1587)] = 72485, - [SMALL_STATE(1588)] = 72537, - [SMALL_STATE(1589)] = 72595, - [SMALL_STATE(1590)] = 72697, - [SMALL_STATE(1591)] = 72755, - [SMALL_STATE(1592)] = 72813, - [SMALL_STATE(1593)] = 72871, - [SMALL_STATE(1594)] = 72929, - [SMALL_STATE(1595)] = 72987, - [SMALL_STATE(1596)] = 73045, - [SMALL_STATE(1597)] = 73097, - [SMALL_STATE(1598)] = 73155, - [SMALL_STATE(1599)] = 73213, - [SMALL_STATE(1600)] = 73271, - [SMALL_STATE(1601)] = 73329, - [SMALL_STATE(1602)] = 73397, - [SMALL_STATE(1603)] = 73465, - [SMALL_STATE(1604)] = 73523, - [SMALL_STATE(1605)] = 73579, - [SMALL_STATE(1606)] = 73635, - [SMALL_STATE(1607)] = 73687, - [SMALL_STATE(1608)] = 73739, - [SMALL_STATE(1609)] = 73799, - [SMALL_STATE(1610)] = 73859, - [SMALL_STATE(1611)] = 73917, - [SMALL_STATE(1612)] = 73975, - [SMALL_STATE(1613)] = 74027, - [SMALL_STATE(1614)] = 74079, - [SMALL_STATE(1615)] = 74137, - [SMALL_STATE(1616)] = 74195, - [SMALL_STATE(1617)] = 74247, - [SMALL_STATE(1618)] = 74299, - [SMALL_STATE(1619)] = 74351, - [SMALL_STATE(1620)] = 74403, - [SMALL_STATE(1621)] = 74455, - [SMALL_STATE(1622)] = 74507, - [SMALL_STATE(1623)] = 74559, - [SMALL_STATE(1624)] = 74617, - [SMALL_STATE(1625)] = 74669, - [SMALL_STATE(1626)] = 74721, - [SMALL_STATE(1627)] = 74779, - [SMALL_STATE(1628)] = 74835, - [SMALL_STATE(1629)] = 74887, - [SMALL_STATE(1630)] = 74939, - [SMALL_STATE(1631)] = 74991, - [SMALL_STATE(1632)] = 75043, - [SMALL_STATE(1633)] = 75101, - [SMALL_STATE(1634)] = 75153, - [SMALL_STATE(1635)] = 75205, - [SMALL_STATE(1636)] = 75257, - [SMALL_STATE(1637)] = 75315, - [SMALL_STATE(1638)] = 75367, - [SMALL_STATE(1639)] = 75419, - [SMALL_STATE(1640)] = 75471, - [SMALL_STATE(1641)] = 75523, - [SMALL_STATE(1642)] = 75575, - [SMALL_STATE(1643)] = 75627, - [SMALL_STATE(1644)] = 75679, - [SMALL_STATE(1645)] = 75731, - [SMALL_STATE(1646)] = 75783, - [SMALL_STATE(1647)] = 75835, - [SMALL_STATE(1648)] = 75887, - [SMALL_STATE(1649)] = 75939, - [SMALL_STATE(1650)] = 75991, - [SMALL_STATE(1651)] = 76043, - [SMALL_STATE(1652)] = 76095, - [SMALL_STATE(1653)] = 76153, - [SMALL_STATE(1654)] = 76211, - [SMALL_STATE(1655)] = 76263, - [SMALL_STATE(1656)] = 76315, - [SMALL_STATE(1657)] = 76367, - [SMALL_STATE(1658)] = 76419, - [SMALL_STATE(1659)] = 76471, - [SMALL_STATE(1660)] = 76523, - [SMALL_STATE(1661)] = 76575, - [SMALL_STATE(1662)] = 76627, - [SMALL_STATE(1663)] = 76685, - [SMALL_STATE(1664)] = 76743, - [SMALL_STATE(1665)] = 76795, - [SMALL_STATE(1666)] = 76853, - [SMALL_STATE(1667)] = 76911, - [SMALL_STATE(1668)] = 76969, - [SMALL_STATE(1669)] = 77027, - [SMALL_STATE(1670)] = 77085, - [SMALL_STATE(1671)] = 77137, - [SMALL_STATE(1672)] = 77195, - [SMALL_STATE(1673)] = 77247, - [SMALL_STATE(1674)] = 77299, - [SMALL_STATE(1675)] = 77357, - [SMALL_STATE(1676)] = 77415, - [SMALL_STATE(1677)] = 77473, - [SMALL_STATE(1678)] = 77531, - [SMALL_STATE(1679)] = 77589, - [SMALL_STATE(1680)] = 77641, - [SMALL_STATE(1681)] = 77693, - [SMALL_STATE(1682)] = 77745, - [SMALL_STATE(1683)] = 77797, - [SMALL_STATE(1684)] = 77849, - [SMALL_STATE(1685)] = 77951, - [SMALL_STATE(1686)] = 78009, - [SMALL_STATE(1687)] = 78067, - [SMALL_STATE(1688)] = 78119, - [SMALL_STATE(1689)] = 78177, - [SMALL_STATE(1690)] = 78235, - [SMALL_STATE(1691)] = 78337, - [SMALL_STATE(1692)] = 78395, - [SMALL_STATE(1693)] = 78453, - [SMALL_STATE(1694)] = 78513, - [SMALL_STATE(1695)] = 78565, - [SMALL_STATE(1696)] = 78631, - [SMALL_STATE(1697)] = 78683, - [SMALL_STATE(1698)] = 78741, - [SMALL_STATE(1699)] = 78805, - [SMALL_STATE(1700)] = 78857, - [SMALL_STATE(1701)] = 78909, - [SMALL_STATE(1702)] = 78961, - [SMALL_STATE(1703)] = 79013, - [SMALL_STATE(1704)] = 79065, - [SMALL_STATE(1705)] = 79117, - [SMALL_STATE(1706)] = 79169, - [SMALL_STATE(1707)] = 79221, - [SMALL_STATE(1708)] = 79279, - [SMALL_STATE(1709)] = 79378, - [SMALL_STATE(1710)] = 79429, - [SMALL_STATE(1711)] = 79480, - [SMALL_STATE(1712)] = 79537, - [SMALL_STATE(1713)] = 79588, - [SMALL_STATE(1714)] = 79639, - [SMALL_STATE(1715)] = 79690, - [SMALL_STATE(1716)] = 79747, - [SMALL_STATE(1717)] = 79804, - [SMALL_STATE(1718)] = 79855, - [SMALL_STATE(1719)] = 79906, - [SMALL_STATE(1720)] = 79957, - [SMALL_STATE(1721)] = 80012, - [SMALL_STATE(1722)] = 80067, - [SMALL_STATE(1723)] = 80122, - [SMALL_STATE(1724)] = 80179, - [SMALL_STATE(1725)] = 80230, - [SMALL_STATE(1726)] = 80281, - [SMALL_STATE(1727)] = 80332, - [SMALL_STATE(1728)] = 80383, - [SMALL_STATE(1729)] = 80434, - [SMALL_STATE(1730)] = 80485, - [SMALL_STATE(1731)] = 80536, - [SMALL_STATE(1732)] = 80587, - [SMALL_STATE(1733)] = 80638, - [SMALL_STATE(1734)] = 80689, - [SMALL_STATE(1735)] = 80740, - [SMALL_STATE(1736)] = 80791, - [SMALL_STATE(1737)] = 80842, - [SMALL_STATE(1738)] = 80909, - [SMALL_STATE(1739)] = 80960, - [SMALL_STATE(1740)] = 81011, - [SMALL_STATE(1741)] = 81062, - [SMALL_STATE(1742)] = 81113, - [SMALL_STATE(1743)] = 81212, - [SMALL_STATE(1744)] = 81263, - [SMALL_STATE(1745)] = 81332, - [SMALL_STATE(1746)] = 81383, - [SMALL_STATE(1747)] = 81440, - [SMALL_STATE(1748)] = 81491, - [SMALL_STATE(1749)] = 81548, - [SMALL_STATE(1750)] = 81605, - [SMALL_STATE(1751)] = 81662, - [SMALL_STATE(1752)] = 81725, - [SMALL_STATE(1753)] = 81776, - [SMALL_STATE(1754)] = 81833, - [SMALL_STATE(1755)] = 81932, - [SMALL_STATE(1756)] = 81983, - [SMALL_STATE(1757)] = 82038, - [SMALL_STATE(1758)] = 82095, - [SMALL_STATE(1759)] = 82146, - [SMALL_STATE(1760)] = 82203, - [SMALL_STATE(1761)] = 82260, - [SMALL_STATE(1762)] = 82317, - [SMALL_STATE(1763)] = 82368, - [SMALL_STATE(1764)] = 82419, - [SMALL_STATE(1765)] = 82470, - [SMALL_STATE(1766)] = 82521, - [SMALL_STATE(1767)] = 82578, - [SMALL_STATE(1768)] = 82635, - [SMALL_STATE(1769)] = 82686, - [SMALL_STATE(1770)] = 82785, - [SMALL_STATE(1771)] = 82884, - [SMALL_STATE(1772)] = 82939, - [SMALL_STATE(1773)] = 82990, - [SMALL_STATE(1774)] = 83041, - [SMALL_STATE(1775)] = 83092, - [SMALL_STATE(1776)] = 83143, - [SMALL_STATE(1777)] = 83194, - [SMALL_STATE(1778)] = 83245, - [SMALL_STATE(1779)] = 83302, - [SMALL_STATE(1780)] = 83359, - [SMALL_STATE(1781)] = 83410, - [SMALL_STATE(1782)] = 83509, - [SMALL_STATE(1783)] = 83560, - [SMALL_STATE(1784)] = 83611, - [SMALL_STATE(1785)] = 83662, - [SMALL_STATE(1786)] = 83761, - [SMALL_STATE(1787)] = 83812, - [SMALL_STATE(1788)] = 83867, - [SMALL_STATE(1789)] = 83918, - [SMALL_STATE(1790)] = 84017, - [SMALL_STATE(1791)] = 84072, - [SMALL_STATE(1792)] = 84129, - [SMALL_STATE(1793)] = 84180, - [SMALL_STATE(1794)] = 84279, - [SMALL_STATE(1795)] = 84330, - [SMALL_STATE(1796)] = 84381, - [SMALL_STATE(1797)] = 84432, - [SMALL_STATE(1798)] = 84483, - [SMALL_STATE(1799)] = 84582, - [SMALL_STATE(1800)] = 84639, - [SMALL_STATE(1801)] = 84696, - [SMALL_STATE(1802)] = 84751, - [SMALL_STATE(1803)] = 84802, - [SMALL_STATE(1804)] = 84857, - [SMALL_STATE(1805)] = 84908, - [SMALL_STATE(1806)] = 85007, - [SMALL_STATE(1807)] = 85058, - [SMALL_STATE(1808)] = 85109, - [SMALL_STATE(1809)] = 85160, - [SMALL_STATE(1810)] = 85215, - [SMALL_STATE(1811)] = 85266, - [SMALL_STATE(1812)] = 85321, - [SMALL_STATE(1813)] = 85372, - [SMALL_STATE(1814)] = 85427, - [SMALL_STATE(1815)] = 85482, - [SMALL_STATE(1816)] = 85533, - [SMALL_STATE(1817)] = 85584, - [SMALL_STATE(1818)] = 85635, - [SMALL_STATE(1819)] = 85690, - [SMALL_STATE(1820)] = 85745, - [SMALL_STATE(1821)] = 85800, - [SMALL_STATE(1822)] = 85851, - [SMALL_STATE(1823)] = 85902, - [SMALL_STATE(1824)] = 85961, - [SMALL_STATE(1825)] = 86020, - [SMALL_STATE(1826)] = 86075, - [SMALL_STATE(1827)] = 86126, - [SMALL_STATE(1828)] = 86181, - [SMALL_STATE(1829)] = 86236, - [SMALL_STATE(1830)] = 86287, - [SMALL_STATE(1831)] = 86338, - [SMALL_STATE(1832)] = 86389, - [SMALL_STATE(1833)] = 86440, - [SMALL_STATE(1834)] = 86491, - [SMALL_STATE(1835)] = 86546, - [SMALL_STATE(1836)] = 86597, - [SMALL_STATE(1837)] = 86648, - [SMALL_STATE(1838)] = 86699, - [SMALL_STATE(1839)] = 86750, - [SMALL_STATE(1840)] = 86801, - [SMALL_STATE(1841)] = 86852, - [SMALL_STATE(1842)] = 86903, - [SMALL_STATE(1843)] = 86954, - [SMALL_STATE(1844)] = 87009, - [SMALL_STATE(1845)] = 87060, - [SMALL_STATE(1846)] = 87111, - [SMALL_STATE(1847)] = 87162, - [SMALL_STATE(1848)] = 87213, - [SMALL_STATE(1849)] = 87264, - [SMALL_STATE(1850)] = 87321, - [SMALL_STATE(1851)] = 87378, - [SMALL_STATE(1852)] = 87435, - [SMALL_STATE(1853)] = 87486, - [SMALL_STATE(1854)] = 87537, - [SMALL_STATE(1855)] = 87588, - [SMALL_STATE(1856)] = 87639, - [SMALL_STATE(1857)] = 87690, - [SMALL_STATE(1858)] = 87741, - [SMALL_STATE(1859)] = 87792, - [SMALL_STATE(1860)] = 87843, - [SMALL_STATE(1861)] = 87894, - [SMALL_STATE(1862)] = 87945, - [SMALL_STATE(1863)] = 87996, - [SMALL_STATE(1864)] = 88047, - [SMALL_STATE(1865)] = 88098, - [SMALL_STATE(1866)] = 88187, - [SMALL_STATE(1867)] = 88238, - [SMALL_STATE(1868)] = 88293, - [SMALL_STATE(1869)] = 88348, - [SMALL_STATE(1870)] = 88405, - [SMALL_STATE(1871)] = 88460, - [SMALL_STATE(1872)] = 88511, - [SMALL_STATE(1873)] = 88562, - [SMALL_STATE(1874)] = 88661, - [SMALL_STATE(1875)] = 88712, - [SMALL_STATE(1876)] = 88769, - [SMALL_STATE(1877)] = 88826, - [SMALL_STATE(1878)] = 88877, - [SMALL_STATE(1879)] = 88932, - [SMALL_STATE(1880)] = 88987, - [SMALL_STATE(1881)] = 89038, - [SMALL_STATE(1882)] = 89089, - [SMALL_STATE(1883)] = 89146, - [SMALL_STATE(1884)] = 89245, - [SMALL_STATE(1885)] = 89344, - [SMALL_STATE(1886)] = 89399, - [SMALL_STATE(1887)] = 89454, - [SMALL_STATE(1888)] = 89511, - [SMALL_STATE(1889)] = 89562, - [SMALL_STATE(1890)] = 89619, - [SMALL_STATE(1891)] = 89676, - [SMALL_STATE(1892)] = 89727, - [SMALL_STATE(1893)] = 89782, - [SMALL_STATE(1894)] = 89839, - [SMALL_STATE(1895)] = 89896, - [SMALL_STATE(1896)] = 89953, - [SMALL_STATE(1897)] = 90004, - [SMALL_STATE(1898)] = 90103, - [SMALL_STATE(1899)] = 90160, - [SMALL_STATE(1900)] = 90217, - [SMALL_STATE(1901)] = 90274, - [SMALL_STATE(1902)] = 90331, - [SMALL_STATE(1903)] = 90388, - [SMALL_STATE(1904)] = 90443, - [SMALL_STATE(1905)] = 90494, - [SMALL_STATE(1906)] = 90549, - [SMALL_STATE(1907)] = 90600, - [SMALL_STATE(1908)] = 90660, - [SMALL_STATE(1909)] = 90720, - [SMALL_STATE(1910)] = 90780, - [SMALL_STATE(1911)] = 90830, - [SMALL_STATE(1912)] = 90880, - [SMALL_STATE(1913)] = 90930, - [SMALL_STATE(1914)] = 91026, - [SMALL_STATE(1915)] = 91080, - [SMALL_STATE(1916)] = 91176, - [SMALL_STATE(1917)] = 91230, - [SMALL_STATE(1918)] = 91326, - [SMALL_STATE(1919)] = 91422, - [SMALL_STATE(1920)] = 91518, - [SMALL_STATE(1921)] = 91614, - [SMALL_STATE(1922)] = 91710, - [SMALL_STATE(1923)] = 91806, - [SMALL_STATE(1924)] = 91856, - [SMALL_STATE(1925)] = 91906, - [SMALL_STATE(1926)] = 91962, - [SMALL_STATE(1927)] = 92058, - [SMALL_STATE(1928)] = 92154, - [SMALL_STATE(1929)] = 92250, - [SMALL_STATE(1930)] = 92346, - [SMALL_STATE(1931)] = 92402, - [SMALL_STATE(1932)] = 92458, - [SMALL_STATE(1933)] = 92554, - [SMALL_STATE(1934)] = 92604, - [SMALL_STATE(1935)] = 92660, - [SMALL_STATE(1936)] = 92756, - [SMALL_STATE(1937)] = 92806, - [SMALL_STATE(1938)] = 92902, - [SMALL_STATE(1939)] = 92998, - [SMALL_STATE(1940)] = 93058, - [SMALL_STATE(1941)] = 93154, - [SMALL_STATE(1942)] = 93250, - [SMALL_STATE(1943)] = 93346, - [SMALL_STATE(1944)] = 93396, - [SMALL_STATE(1945)] = 93492, - [SMALL_STATE(1946)] = 93588, - [SMALL_STATE(1947)] = 93684, - [SMALL_STATE(1948)] = 93780, - [SMALL_STATE(1949)] = 93876, - [SMALL_STATE(1950)] = 93972, - [SMALL_STATE(1951)] = 94022, - [SMALL_STATE(1952)] = 94072, - [SMALL_STATE(1953)] = 94168, - [SMALL_STATE(1954)] = 94218, - [SMALL_STATE(1955)] = 94314, - [SMALL_STATE(1956)] = 94410, - [SMALL_STATE(1957)] = 94460, - [SMALL_STATE(1958)] = 94556, - [SMALL_STATE(1959)] = 94652, - [SMALL_STATE(1960)] = 94748, - [SMALL_STATE(1961)] = 94844, - [SMALL_STATE(1962)] = 94940, - [SMALL_STATE(1963)] = 94990, - [SMALL_STATE(1964)] = 95086, - [SMALL_STATE(1965)] = 95182, - [SMALL_STATE(1966)] = 95278, - [SMALL_STATE(1967)] = 95374, - [SMALL_STATE(1968)] = 95470, - [SMALL_STATE(1969)] = 95524, - [SMALL_STATE(1970)] = 95574, - [SMALL_STATE(1971)] = 95630, - [SMALL_STATE(1972)] = 95680, - [SMALL_STATE(1973)] = 95776, - [SMALL_STATE(1974)] = 95826, - [SMALL_STATE(1975)] = 95922, - [SMALL_STATE(1976)] = 95972, - [SMALL_STATE(1977)] = 96068, - [SMALL_STATE(1978)] = 96164, - [SMALL_STATE(1979)] = 96260, - [SMALL_STATE(1980)] = 96310, - [SMALL_STATE(1981)] = 96406, - [SMALL_STATE(1982)] = 96456, - [SMALL_STATE(1983)] = 96506, - [SMALL_STATE(1984)] = 96602, - [SMALL_STATE(1985)] = 96652, - [SMALL_STATE(1986)] = 96702, - [SMALL_STATE(1987)] = 96752, - [SMALL_STATE(1988)] = 96802, - [SMALL_STATE(1989)] = 96852, - [SMALL_STATE(1990)] = 96948, - [SMALL_STATE(1991)] = 96998, - [SMALL_STATE(1992)] = 97054, - [SMALL_STATE(1993)] = 97110, - [SMALL_STATE(1994)] = 97206, - [SMALL_STATE(1995)] = 97256, - [SMALL_STATE(1996)] = 97312, - [SMALL_STATE(1997)] = 97362, - [SMALL_STATE(1998)] = 97412, - [SMALL_STATE(1999)] = 97508, - [SMALL_STATE(2000)] = 97568, - [SMALL_STATE(2001)] = 97664, - [SMALL_STATE(2002)] = 97718, - [SMALL_STATE(2003)] = 97768, - [SMALL_STATE(2004)] = 97818, - [SMALL_STATE(2005)] = 97868, - [SMALL_STATE(2006)] = 97918, - [SMALL_STATE(2007)] = 97968, - [SMALL_STATE(2008)] = 98018, - [SMALL_STATE(2009)] = 98068, - [SMALL_STATE(2010)] = 98118, - [SMALL_STATE(2011)] = 98168, - [SMALL_STATE(2012)] = 98218, - [SMALL_STATE(2013)] = 98314, - [SMALL_STATE(2014)] = 98364, - [SMALL_STATE(2015)] = 98414, - [SMALL_STATE(2016)] = 98510, - [SMALL_STATE(2017)] = 98570, - [SMALL_STATE(2018)] = 98620, - [SMALL_STATE(2019)] = 98678, - [SMALL_STATE(2020)] = 98736, - [SMALL_STATE(2021)] = 98786, - [SMALL_STATE(2022)] = 98836, - [SMALL_STATE(2023)] = 98886, - [SMALL_STATE(2024)] = 98936, - [SMALL_STATE(2025)] = 98986, - [SMALL_STATE(2026)] = 99082, - [SMALL_STATE(2027)] = 99136, - [SMALL_STATE(2028)] = 99190, - [SMALL_STATE(2029)] = 99240, - [SMALL_STATE(2030)] = 99290, - [SMALL_STATE(2031)] = 99344, - [SMALL_STATE(2032)] = 99394, - [SMALL_STATE(2033)] = 99490, - [SMALL_STATE(2034)] = 99586, - [SMALL_STATE(2035)] = 99636, - [SMALL_STATE(2036)] = 99696, - [SMALL_STATE(2037)] = 99746, - [SMALL_STATE(2038)] = 99796, - [SMALL_STATE(2039)] = 99846, - [SMALL_STATE(2040)] = 99896, - [SMALL_STATE(2041)] = 99992, - [SMALL_STATE(2042)] = 100088, - [SMALL_STATE(2043)] = 100142, - [SMALL_STATE(2044)] = 100192, - [SMALL_STATE(2045)] = 100246, - [SMALL_STATE(2046)] = 100300, - [SMALL_STATE(2047)] = 100396, - [SMALL_STATE(2048)] = 100446, - [SMALL_STATE(2049)] = 100542, - [SMALL_STATE(2050)] = 100602, - [SMALL_STATE(2051)] = 100698, - [SMALL_STATE(2052)] = 100748, - [SMALL_STATE(2053)] = 100798, - [SMALL_STATE(2054)] = 100848, - [SMALL_STATE(2055)] = 100898, - [SMALL_STATE(2056)] = 100948, - [SMALL_STATE(2057)] = 100998, - [SMALL_STATE(2058)] = 101058, - [SMALL_STATE(2059)] = 101154, - [SMALL_STATE(2060)] = 101204, - [SMALL_STATE(2061)] = 101254, - [SMALL_STATE(2062)] = 101314, - [SMALL_STATE(2063)] = 101364, - [SMALL_STATE(2064)] = 101414, - [SMALL_STATE(2065)] = 101510, - [SMALL_STATE(2066)] = 101560, - [SMALL_STATE(2067)] = 101656, - [SMALL_STATE(2068)] = 101752, - [SMALL_STATE(2069)] = 101812, - [SMALL_STATE(2070)] = 101862, - [SMALL_STATE(2071)] = 101922, - [SMALL_STATE(2072)] = 102018, - [SMALL_STATE(2073)] = 102072, - [SMALL_STATE(2074)] = 102132, - [SMALL_STATE(2075)] = 102192, - [SMALL_STATE(2076)] = 102252, - [SMALL_STATE(2077)] = 102302, - [SMALL_STATE(2078)] = 102362, - [SMALL_STATE(2079)] = 102416, - [SMALL_STATE(2080)] = 102512, - [SMALL_STATE(2081)] = 102608, - [SMALL_STATE(2082)] = 102668, - [SMALL_STATE(2083)] = 102718, - [SMALL_STATE(2084)] = 102778, - [SMALL_STATE(2085)] = 102838, - [SMALL_STATE(2086)] = 102888, - [SMALL_STATE(2087)] = 102948, - [SMALL_STATE(2088)] = 103002, - [SMALL_STATE(2089)] = 103062, - [SMALL_STATE(2090)] = 103158, - [SMALL_STATE(2091)] = 103218, - [SMALL_STATE(2092)] = 103278, - [SMALL_STATE(2093)] = 103338, - [SMALL_STATE(2094)] = 103398, - [SMALL_STATE(2095)] = 103458, - [SMALL_STATE(2096)] = 103518, - [SMALL_STATE(2097)] = 103578, - [SMALL_STATE(2098)] = 103638, - [SMALL_STATE(2099)] = 103698, - [SMALL_STATE(2100)] = 103794, - [SMALL_STATE(2101)] = 103854, - [SMALL_STATE(2102)] = 103914, - [SMALL_STATE(2103)] = 103974, - [SMALL_STATE(2104)] = 104034, - [SMALL_STATE(2105)] = 104094, - [SMALL_STATE(2106)] = 104154, - [SMALL_STATE(2107)] = 104214, - [SMALL_STATE(2108)] = 104274, - [SMALL_STATE(2109)] = 104334, - [SMALL_STATE(2110)] = 104394, - [SMALL_STATE(2111)] = 104448, - [SMALL_STATE(2112)] = 104498, - [SMALL_STATE(2113)] = 104552, - [SMALL_STATE(2114)] = 104606, - [SMALL_STATE(2115)] = 104660, - [SMALL_STATE(2116)] = 104756, - [SMALL_STATE(2117)] = 104810, - [SMALL_STATE(2118)] = 104864, - [SMALL_STATE(2119)] = 104960, - [SMALL_STATE(2120)] = 105056, - [SMALL_STATE(2121)] = 105152, - [SMALL_STATE(2122)] = 105206, - [SMALL_STATE(2123)] = 105256, - [SMALL_STATE(2124)] = 105316, - [SMALL_STATE(2125)] = 105376, - [SMALL_STATE(2126)] = 105434, - [SMALL_STATE(2127)] = 105530, - [SMALL_STATE(2128)] = 105580, - [SMALL_STATE(2129)] = 105640, - [SMALL_STATE(2130)] = 105736, - [SMALL_STATE(2131)] = 105796, - [SMALL_STATE(2132)] = 105892, - [SMALL_STATE(2133)] = 105988, - [SMALL_STATE(2134)] = 106084, - [SMALL_STATE(2135)] = 106144, - [SMALL_STATE(2136)] = 106240, - [SMALL_STATE(2137)] = 106300, - [SMALL_STATE(2138)] = 106350, - [SMALL_STATE(2139)] = 106446, - [SMALL_STATE(2140)] = 106506, - [SMALL_STATE(2141)] = 106566, - [SMALL_STATE(2142)] = 106626, - [SMALL_STATE(2143)] = 106680, - [SMALL_STATE(2144)] = 106740, - [SMALL_STATE(2145)] = 106790, - [SMALL_STATE(2146)] = 106886, - [SMALL_STATE(2147)] = 106946, - [SMALL_STATE(2148)] = 107042, - [SMALL_STATE(2149)] = 107098, - [SMALL_STATE(2150)] = 107152, - [SMALL_STATE(2151)] = 107202, - [SMALL_STATE(2152)] = 107262, - [SMALL_STATE(2153)] = 107358, - [SMALL_STATE(2154)] = 107418, - [SMALL_STATE(2155)] = 107514, - [SMALL_STATE(2156)] = 107610, - [SMALL_STATE(2157)] = 107670, - [SMALL_STATE(2158)] = 107766, - [SMALL_STATE(2159)] = 107816, - [SMALL_STATE(2160)] = 107912, - [SMALL_STATE(2161)] = 108008, - [SMALL_STATE(2162)] = 108104, - [SMALL_STATE(2163)] = 108200, - [SMALL_STATE(2164)] = 108296, - [SMALL_STATE(2165)] = 108392, - [SMALL_STATE(2166)] = 108452, - [SMALL_STATE(2167)] = 108548, - [SMALL_STATE(2168)] = 108644, - [SMALL_STATE(2169)] = 108740, - [SMALL_STATE(2170)] = 108836, - [SMALL_STATE(2171)] = 108932, - [SMALL_STATE(2172)] = 108992, - [SMALL_STATE(2173)] = 109088, - [SMALL_STATE(2174)] = 109184, - [SMALL_STATE(2175)] = 109244, - [SMALL_STATE(2176)] = 109340, - [SMALL_STATE(2177)] = 109400, - [SMALL_STATE(2178)] = 109454, - [SMALL_STATE(2179)] = 109550, - [SMALL_STATE(2180)] = 109600, - [SMALL_STATE(2181)] = 109696, - [SMALL_STATE(2182)] = 109792, - [SMALL_STATE(2183)] = 109852, - [SMALL_STATE(2184)] = 109912, - [SMALL_STATE(2185)] = 110008, - [SMALL_STATE(2186)] = 110104, - [SMALL_STATE(2187)] = 110200, - [SMALL_STATE(2188)] = 110250, - [SMALL_STATE(2189)] = 110346, - [SMALL_STATE(2190)] = 110406, - [SMALL_STATE(2191)] = 110502, - [SMALL_STATE(2192)] = 110598, - [SMALL_STATE(2193)] = 110658, - [SMALL_STATE(2194)] = 110718, - [SMALL_STATE(2195)] = 110778, - [SMALL_STATE(2196)] = 110828, - [SMALL_STATE(2197)] = 110888, - [SMALL_STATE(2198)] = 110948, - [SMALL_STATE(2199)] = 111008, - [SMALL_STATE(2200)] = 111068, - [SMALL_STATE(2201)] = 111128, - [SMALL_STATE(2202)] = 111188, - [SMALL_STATE(2203)] = 111248, - [SMALL_STATE(2204)] = 111308, - [SMALL_STATE(2205)] = 111368, - [SMALL_STATE(2206)] = 111428, - [SMALL_STATE(2207)] = 111488, - [SMALL_STATE(2208)] = 111546, - [SMALL_STATE(2209)] = 111606, - [SMALL_STATE(2210)] = 111702, - [SMALL_STATE(2211)] = 111752, - [SMALL_STATE(2212)] = 111812, - [SMALL_STATE(2213)] = 111908, - [SMALL_STATE(2214)] = 112004, - [SMALL_STATE(2215)] = 112054, - [SMALL_STATE(2216)] = 112114, - [SMALL_STATE(2217)] = 112174, - [SMALL_STATE(2218)] = 112227, - [SMALL_STATE(2219)] = 112276, - [SMALL_STATE(2220)] = 112325, - [SMALL_STATE(2221)] = 112374, - [SMALL_STATE(2222)] = 112423, - [SMALL_STATE(2223)] = 112472, - [SMALL_STATE(2224)] = 112521, - [SMALL_STATE(2225)] = 112570, - [SMALL_STATE(2226)] = 112619, - [SMALL_STATE(2227)] = 112668, - [SMALL_STATE(2228)] = 112717, - [SMALL_STATE(2229)] = 112770, - [SMALL_STATE(2230)] = 112819, - [SMALL_STATE(2231)] = 112868, - [SMALL_STATE(2232)] = 112921, - [SMALL_STATE(2233)] = 112970, - [SMALL_STATE(2234)] = 113019, - [SMALL_STATE(2235)] = 113068, - [SMALL_STATE(2236)] = 113117, - [SMALL_STATE(2237)] = 113166, - [SMALL_STATE(2238)] = 113215, - [SMALL_STATE(2239)] = 113268, - [SMALL_STATE(2240)] = 113317, - [SMALL_STATE(2241)] = 113366, - [SMALL_STATE(2242)] = 113415, - [SMALL_STATE(2243)] = 113464, - [SMALL_STATE(2244)] = 113513, - [SMALL_STATE(2245)] = 113562, - [SMALL_STATE(2246)] = 113611, - [SMALL_STATE(2247)] = 113664, - [SMALL_STATE(2248)] = 113713, - [SMALL_STATE(2249)] = 113762, - [SMALL_STATE(2250)] = 113815, - [SMALL_STATE(2251)] = 113868, - [SMALL_STATE(2252)] = 113917, - [SMALL_STATE(2253)] = 113970, - [SMALL_STATE(2254)] = 114023, - [SMALL_STATE(2255)] = 114078, - [SMALL_STATE(2256)] = 114133, - [SMALL_STATE(2257)] = 114188, - [SMALL_STATE(2258)] = 114243, - [SMALL_STATE(2259)] = 114292, - [SMALL_STATE(2260)] = 114345, - [SMALL_STATE(2261)] = 114394, - [SMALL_STATE(2262)] = 114443, - [SMALL_STATE(2263)] = 114502, - [SMALL_STATE(2264)] = 114551, - [SMALL_STATE(2265)] = 114604, - [SMALL_STATE(2266)] = 114653, - [SMALL_STATE(2267)] = 114702, - [SMALL_STATE(2268)] = 114751, - [SMALL_STATE(2269)] = 114808, - [SMALL_STATE(2270)] = 114865, - [SMALL_STATE(2271)] = 114918, - [SMALL_STATE(2272)] = 114967, - [SMALL_STATE(2273)] = 115016, - [SMALL_STATE(2274)] = 115071, - [SMALL_STATE(2275)] = 115120, - [SMALL_STATE(2276)] = 115175, - [SMALL_STATE(2277)] = 115224, - [SMALL_STATE(2278)] = 115277, - [SMALL_STATE(2279)] = 115326, - [SMALL_STATE(2280)] = 115379, - [SMALL_STATE(2281)] = 115432, - [SMALL_STATE(2282)] = 115481, - [SMALL_STATE(2283)] = 115534, - [SMALL_STATE(2284)] = 115587, - [SMALL_STATE(2285)] = 115640, - [SMALL_STATE(2286)] = 115693, - [SMALL_STATE(2287)] = 115748, - [SMALL_STATE(2288)] = 115803, - [SMALL_STATE(2289)] = 115858, - [SMALL_STATE(2290)] = 115913, - [SMALL_STATE(2291)] = 115968, - [SMALL_STATE(2292)] = 116023, - [SMALL_STATE(2293)] = 116078, - [SMALL_STATE(2294)] = 116133, - [SMALL_STATE(2295)] = 116188, - [SMALL_STATE(2296)] = 116243, - [SMALL_STATE(2297)] = 116298, - [SMALL_STATE(2298)] = 116353, - [SMALL_STATE(2299)] = 116402, - [SMALL_STATE(2300)] = 116455, - [SMALL_STATE(2301)] = 116510, - [SMALL_STATE(2302)] = 116565, - [SMALL_STATE(2303)] = 116614, - [SMALL_STATE(2304)] = 116669, - [SMALL_STATE(2305)] = 116724, - [SMALL_STATE(2306)] = 116783, - [SMALL_STATE(2307)] = 116836, - [SMALL_STATE(2308)] = 116889, - [SMALL_STATE(2309)] = 116943, - [SMALL_STATE(2310)] = 116995, - [SMALL_STATE(2311)] = 117049, - [SMALL_STATE(2312)] = 117103, - [SMALL_STATE(2313)] = 117155, - [SMALL_STATE(2314)] = 117203, - [SMALL_STATE(2315)] = 117257, - [SMALL_STATE(2316)] = 117311, - [SMALL_STATE(2317)] = 117359, - [SMALL_STATE(2318)] = 117413, - [SMALL_STATE(2319)] = 117461, - [SMALL_STATE(2320)] = 117509, - [SMALL_STATE(2321)] = 117603, - [SMALL_STATE(2322)] = 117655, - [SMALL_STATE(2323)] = 117749, - [SMALL_STATE(2324)] = 117801, - [SMALL_STATE(2325)] = 117855, - [SMALL_STATE(2326)] = 117907, - [SMALL_STATE(2327)] = 118001, - [SMALL_STATE(2328)] = 118057, - [SMALL_STATE(2329)] = 118105, - [SMALL_STATE(2330)] = 118157, - [SMALL_STATE(2331)] = 118211, - [SMALL_STATE(2332)] = 118305, - [SMALL_STATE(2333)] = 118357, - [SMALL_STATE(2334)] = 118405, - [SMALL_STATE(2335)] = 118499, - [SMALL_STATE(2336)] = 118551, - [SMALL_STATE(2337)] = 118645, - [SMALL_STATE(2338)] = 118695, - [SMALL_STATE(2339)] = 118743, - [SMALL_STATE(2340)] = 118791, - [SMALL_STATE(2341)] = 118839, - [SMALL_STATE(2342)] = 118887, - [SMALL_STATE(2343)] = 118943, - [SMALL_STATE(2344)] = 118991, - [SMALL_STATE(2345)] = 119043, - [SMALL_STATE(2346)] = 119099, - [SMALL_STATE(2347)] = 119151, - [SMALL_STATE(2348)] = 119199, - [SMALL_STATE(2349)] = 119247, - [SMALL_STATE(2350)] = 119299, - [SMALL_STATE(2351)] = 119351, - [SMALL_STATE(2352)] = 119399, - [SMALL_STATE(2353)] = 119447, - [SMALL_STATE(2354)] = 119495, - [SMALL_STATE(2355)] = 119547, - [SMALL_STATE(2356)] = 119603, - [SMALL_STATE(2357)] = 119657, - [SMALL_STATE(2358)] = 119713, - [SMALL_STATE(2359)] = 119761, - [SMALL_STATE(2360)] = 119817, - [SMALL_STATE(2361)] = 119865, - [SMALL_STATE(2362)] = 119917, - [SMALL_STATE(2363)] = 119973, - [SMALL_STATE(2364)] = 120029, - [SMALL_STATE(2365)] = 120083, - [SMALL_STATE(2366)] = 120135, - [SMALL_STATE(2367)] = 120191, - [SMALL_STATE(2368)] = 120243, - [SMALL_STATE(2369)] = 120295, - [SMALL_STATE(2370)] = 120347, - [SMALL_STATE(2371)] = 120395, - [SMALL_STATE(2372)] = 120447, - [SMALL_STATE(2373)] = 120495, - [SMALL_STATE(2374)] = 120551, - [SMALL_STATE(2375)] = 120645, - [SMALL_STATE(2376)] = 120739, - [SMALL_STATE(2377)] = 120793, - [SMALL_STATE(2378)] = 120887, - [SMALL_STATE(2379)] = 120981, - [SMALL_STATE(2380)] = 121075, - [SMALL_STATE(2381)] = 121127, - [SMALL_STATE(2382)] = 121179, - [SMALL_STATE(2383)] = 121231, - [SMALL_STATE(2384)] = 121325, - [SMALL_STATE(2385)] = 121379, - [SMALL_STATE(2386)] = 121473, - [SMALL_STATE(2387)] = 121527, - [SMALL_STATE(2388)] = 121579, - [SMALL_STATE(2389)] = 121631, - [SMALL_STATE(2390)] = 121725, - [SMALL_STATE(2391)] = 121773, - [SMALL_STATE(2392)] = 121825, - [SMALL_STATE(2393)] = 121879, - [SMALL_STATE(2394)] = 121933, - [SMALL_STATE(2395)] = 122027, - [SMALL_STATE(2396)] = 122079, - [SMALL_STATE(2397)] = 122133, - [SMALL_STATE(2398)] = 122181, - [SMALL_STATE(2399)] = 122235, - [SMALL_STATE(2400)] = 122287, - [SMALL_STATE(2401)] = 122341, - [SMALL_STATE(2402)] = 122389, - [SMALL_STATE(2403)] = 122437, - [SMALL_STATE(2404)] = 122489, - [SMALL_STATE(2405)] = 122537, - [SMALL_STATE(2406)] = 122589, - [SMALL_STATE(2407)] = 122641, - [SMALL_STATE(2408)] = 122693, - [SMALL_STATE(2409)] = 122745, - [SMALL_STATE(2410)] = 122797, - [SMALL_STATE(2411)] = 122849, - [SMALL_STATE(2412)] = 122903, - [SMALL_STATE(2413)] = 122951, - [SMALL_STATE(2414)] = 123005, - [SMALL_STATE(2415)] = 123053, - [SMALL_STATE(2416)] = 123101, - [SMALL_STATE(2417)] = 123155, - [SMALL_STATE(2418)] = 123209, - [SMALL_STATE(2419)] = 123265, - [SMALL_STATE(2420)] = 123317, - [SMALL_STATE(2421)] = 123371, - [SMALL_STATE(2422)] = 123425, - [SMALL_STATE(2423)] = 123477, - [SMALL_STATE(2424)] = 123529, - [SMALL_STATE(2425)] = 123583, - [SMALL_STATE(2426)] = 123637, - [SMALL_STATE(2427)] = 123689, - [SMALL_STATE(2428)] = 123737, - [SMALL_STATE(2429)] = 123785, - [SMALL_STATE(2430)] = 123833, - [SMALL_STATE(2431)] = 123927, - [SMALL_STATE(2432)] = 123983, - [SMALL_STATE(2433)] = 124030, - [SMALL_STATE(2434)] = 124077, - [SMALL_STATE(2435)] = 124124, - [SMALL_STATE(2436)] = 124171, - [SMALL_STATE(2437)] = 124222, - [SMALL_STATE(2438)] = 124269, - [SMALL_STATE(2439)] = 124316, - [SMALL_STATE(2440)] = 124363, - [SMALL_STATE(2441)] = 124410, - [SMALL_STATE(2442)] = 124457, - [SMALL_STATE(2443)] = 124504, - [SMALL_STATE(2444)] = 124551, - [SMALL_STATE(2445)] = 124598, - [SMALL_STATE(2446)] = 124645, - [SMALL_STATE(2447)] = 124692, - [SMALL_STATE(2448)] = 124739, - [SMALL_STATE(2449)] = 124786, - [SMALL_STATE(2450)] = 124833, - [SMALL_STATE(2451)] = 124880, - [SMALL_STATE(2452)] = 124931, - [SMALL_STATE(2453)] = 124982, - [SMALL_STATE(2454)] = 125029, - [SMALL_STATE(2455)] = 125076, - [SMALL_STATE(2456)] = 125123, - [SMALL_STATE(2457)] = 125170, - [SMALL_STATE(2458)] = 125217, - [SMALL_STATE(2459)] = 125268, - [SMALL_STATE(2460)] = 125315, - [SMALL_STATE(2461)] = 125362, - [SMALL_STATE(2462)] = 125409, - [SMALL_STATE(2463)] = 125456, - [SMALL_STATE(2464)] = 125503, - [SMALL_STATE(2465)] = 125550, - [SMALL_STATE(2466)] = 125601, - [SMALL_STATE(2467)] = 125648, - [SMALL_STATE(2468)] = 125695, - [SMALL_STATE(2469)] = 125742, - [SMALL_STATE(2470)] = 125789, - [SMALL_STATE(2471)] = 125836, - [SMALL_STATE(2472)] = 125883, - [SMALL_STATE(2473)] = 125930, - [SMALL_STATE(2474)] = 125983, - [SMALL_STATE(2475)] = 126036, - [SMALL_STATE(2476)] = 126089, - [SMALL_STATE(2477)] = 126140, - [SMALL_STATE(2478)] = 126187, - [SMALL_STATE(2479)] = 126234, - [SMALL_STATE(2480)] = 126285, - [SMALL_STATE(2481)] = 126332, - [SMALL_STATE(2482)] = 126383, - [SMALL_STATE(2483)] = 126430, - [SMALL_STATE(2484)] = 126477, - [SMALL_STATE(2485)] = 126524, - [SMALL_STATE(2486)] = 126571, - [SMALL_STATE(2487)] = 126618, - [SMALL_STATE(2488)] = 126667, - [SMALL_STATE(2489)] = 126714, - [SMALL_STATE(2490)] = 126761, - [SMALL_STATE(2491)] = 126812, - [SMALL_STATE(2492)] = 126861, - [SMALL_STATE(2493)] = 126908, - [SMALL_STATE(2494)] = 126955, - [SMALL_STATE(2495)] = 127002, - [SMALL_STATE(2496)] = 127051, - [SMALL_STATE(2497)] = 127102, - [SMALL_STATE(2498)] = 127149, - [SMALL_STATE(2499)] = 127196, - [SMALL_STATE(2500)] = 127243, - [SMALL_STATE(2501)] = 127290, - [SMALL_STATE(2502)] = 127337, - [SMALL_STATE(2503)] = 127384, - [SMALL_STATE(2504)] = 127437, - [SMALL_STATE(2505)] = 127488, - [SMALL_STATE(2506)] = 127535, - [SMALL_STATE(2507)] = 127582, - [SMALL_STATE(2508)] = 127629, - [SMALL_STATE(2509)] = 127676, - [SMALL_STATE(2510)] = 127723, - [SMALL_STATE(2511)] = 127770, - [SMALL_STATE(2512)] = 127817, - [SMALL_STATE(2513)] = 127864, - [SMALL_STATE(2514)] = 127915, - [SMALL_STATE(2515)] = 127968, - [SMALL_STATE(2516)] = 128015, - [SMALL_STATE(2517)] = 128062, - [SMALL_STATE(2518)] = 128109, - [SMALL_STATE(2519)] = 128156, - [SMALL_STATE(2520)] = 128209, - [SMALL_STATE(2521)] = 128258, - [SMALL_STATE(2522)] = 128305, - [SMALL_STATE(2523)] = 128352, - [SMALL_STATE(2524)] = 128399, - [SMALL_STATE(2525)] = 128446, - [SMALL_STATE(2526)] = 128493, - [SMALL_STATE(2527)] = 128544, - [SMALL_STATE(2528)] = 128595, - [SMALL_STATE(2529)] = 128648, - [SMALL_STATE(2530)] = 128695, - [SMALL_STATE(2531)] = 128748, - [SMALL_STATE(2532)] = 128799, - [SMALL_STATE(2533)] = 128846, - [SMALL_STATE(2534)] = 128897, - [SMALL_STATE(2535)] = 128944, - [SMALL_STATE(2536)] = 128991, - [SMALL_STATE(2537)] = 129042, - [SMALL_STATE(2538)] = 129089, - [SMALL_STATE(2539)] = 129140, - [SMALL_STATE(2540)] = 129193, - [SMALL_STATE(2541)] = 129244, - [SMALL_STATE(2542)] = 129291, - [SMALL_STATE(2543)] = 129338, - [SMALL_STATE(2544)] = 129387, - [SMALL_STATE(2545)] = 129438, - [SMALL_STATE(2546)] = 129487, - [SMALL_STATE(2547)] = 129534, - [SMALL_STATE(2548)] = 129587, - [SMALL_STATE(2549)] = 129634, - [SMALL_STATE(2550)] = 129685, - [SMALL_STATE(2551)] = 129732, - [SMALL_STATE(2552)] = 129779, - [SMALL_STATE(2553)] = 129826, - [SMALL_STATE(2554)] = 129873, - [SMALL_STATE(2555)] = 129920, - [SMALL_STATE(2556)] = 129973, - [SMALL_STATE(2557)] = 130026, - [SMALL_STATE(2558)] = 130077, - [SMALL_STATE(2559)] = 130124, - [SMALL_STATE(2560)] = 130171, - [SMALL_STATE(2561)] = 130218, - [SMALL_STATE(2562)] = 130271, - [SMALL_STATE(2563)] = 130318, - [SMALL_STATE(2564)] = 130365, - [SMALL_STATE(2565)] = 130412, - [SMALL_STATE(2566)] = 130461, - [SMALL_STATE(2567)] = 130508, - [SMALL_STATE(2568)] = 130555, - [SMALL_STATE(2569)] = 130602, - [SMALL_STATE(2570)] = 130653, - [SMALL_STATE(2571)] = 130700, - [SMALL_STATE(2572)] = 130747, - [SMALL_STATE(2573)] = 130794, - [SMALL_STATE(2574)] = 130840, - [SMALL_STATE(2575)] = 130886, - [SMALL_STATE(2576)] = 130938, - [SMALL_STATE(2577)] = 130990, - [SMALL_STATE(2578)] = 131040, - [SMALL_STATE(2579)] = 131090, - [SMALL_STATE(2580)] = 131136, - [SMALL_STATE(2581)] = 131182, - [SMALL_STATE(2582)] = 131228, - [SMALL_STATE(2583)] = 131274, - [SMALL_STATE(2584)] = 131320, - [SMALL_STATE(2585)] = 131366, - [SMALL_STATE(2586)] = 131412, - [SMALL_STATE(2587)] = 131458, - [SMALL_STATE(2588)] = 131504, - [SMALL_STATE(2589)] = 131550, - [SMALL_STATE(2590)] = 131596, - [SMALL_STATE(2591)] = 131642, - [SMALL_STATE(2592)] = 131688, - [SMALL_STATE(2593)] = 131734, - [SMALL_STATE(2594)] = 131780, - [SMALL_STATE(2595)] = 131828, - [SMALL_STATE(2596)] = 131874, - [SMALL_STATE(2597)] = 131920, - [SMALL_STATE(2598)] = 131966, - [SMALL_STATE(2599)] = 132012, - [SMALL_STATE(2600)] = 132058, - [SMALL_STATE(2601)] = 132104, - [SMALL_STATE(2602)] = 132150, - [SMALL_STATE(2603)] = 132198, - [SMALL_STATE(2604)] = 132252, - [SMALL_STATE(2605)] = 132306, - [SMALL_STATE(2606)] = 132356, - [SMALL_STATE(2607)] = 132402, - [SMALL_STATE(2608)] = 132448, - [SMALL_STATE(2609)] = 132494, - [SMALL_STATE(2610)] = 132544, - [SMALL_STATE(2611)] = 132594, - [SMALL_STATE(2612)] = 132644, - [SMALL_STATE(2613)] = 132690, - [SMALL_STATE(2614)] = 132736, - [SMALL_STATE(2615)] = 132782, - [SMALL_STATE(2616)] = 132828, - [SMALL_STATE(2617)] = 132874, - [SMALL_STATE(2618)] = 132930, - [SMALL_STATE(2619)] = 132980, - [SMALL_STATE(2620)] = 133028, - [SMALL_STATE(2621)] = 133074, - [SMALL_STATE(2622)] = 133120, - [SMALL_STATE(2623)] = 133166, - [SMALL_STATE(2624)] = 133222, - [SMALL_STATE(2625)] = 133280, - [SMALL_STATE(2626)] = 133336, - [SMALL_STATE(2627)] = 133384, - [SMALL_STATE(2628)] = 133440, - [SMALL_STATE(2629)] = 133486, - [SMALL_STATE(2630)] = 133558, - [SMALL_STATE(2631)] = 133608, - [SMALL_STATE(2632)] = 133654, - [SMALL_STATE(2633)] = 133704, - [SMALL_STATE(2634)] = 133754, - [SMALL_STATE(2635)] = 133804, - [SMALL_STATE(2636)] = 133850, - [SMALL_STATE(2637)] = 133906, - [SMALL_STATE(2638)] = 133982, - [SMALL_STATE(2639)] = 134060, - [SMALL_STATE(2640)] = 134132, - [SMALL_STATE(2641)] = 134202, - [SMALL_STATE(2642)] = 134270, - [SMALL_STATE(2643)] = 134336, - [SMALL_STATE(2644)] = 134400, - [SMALL_STATE(2645)] = 134462, - [SMALL_STATE(2646)] = 134508, - [SMALL_STATE(2647)] = 134566, - [SMALL_STATE(2648)] = 134620, - [SMALL_STATE(2649)] = 134672, - [SMALL_STATE(2650)] = 134722, - [SMALL_STATE(2651)] = 134772, - [SMALL_STATE(2652)] = 134818, - [SMALL_STATE(2653)] = 134874, - [SMALL_STATE(2654)] = 134930, - [SMALL_STATE(2655)] = 134980, - [SMALL_STATE(2656)] = 135030, - [SMALL_STATE(2657)] = 135112, - [SMALL_STATE(2658)] = 135162, - [SMALL_STATE(2659)] = 135208, - [SMALL_STATE(2660)] = 135290, - [SMALL_STATE(2661)] = 135340, - [SMALL_STATE(2662)] = 135386, - [SMALL_STATE(2663)] = 135432, - [SMALL_STATE(2664)] = 135482, - [SMALL_STATE(2665)] = 135528, - [SMALL_STATE(2666)] = 135574, - [SMALL_STATE(2667)] = 135620, - [SMALL_STATE(2668)] = 135702, - [SMALL_STATE(2669)] = 135752, - [SMALL_STATE(2670)] = 135834, - [SMALL_STATE(2671)] = 135884, - [SMALL_STATE(2672)] = 135966, - [SMALL_STATE(2673)] = 136048, - [SMALL_STATE(2674)] = 136130, - [SMALL_STATE(2675)] = 136212, - [SMALL_STATE(2676)] = 136294, - [SMALL_STATE(2677)] = 136376, - [SMALL_STATE(2678)] = 136422, - [SMALL_STATE(2679)] = 136504, - [SMALL_STATE(2680)] = 136586, - [SMALL_STATE(2681)] = 136668, - [SMALL_STATE(2682)] = 136750, - [SMALL_STATE(2683)] = 136832, - [SMALL_STATE(2684)] = 136914, - [SMALL_STATE(2685)] = 136996, - [SMALL_STATE(2686)] = 137078, - [SMALL_STATE(2687)] = 137124, - [SMALL_STATE(2688)] = 137206, - [SMALL_STATE(2689)] = 137288, - [SMALL_STATE(2690)] = 137370, - [SMALL_STATE(2691)] = 137452, - [SMALL_STATE(2692)] = 137534, - [SMALL_STATE(2693)] = 137616, - [SMALL_STATE(2694)] = 137698, - [SMALL_STATE(2695)] = 137780, - [SMALL_STATE(2696)] = 137862, - [SMALL_STATE(2697)] = 137944, - [SMALL_STATE(2698)] = 138026, - [SMALL_STATE(2699)] = 138108, - [SMALL_STATE(2700)] = 138190, - [SMALL_STATE(2701)] = 138272, - [SMALL_STATE(2702)] = 138354, - [SMALL_STATE(2703)] = 138436, - [SMALL_STATE(2704)] = 138518, - [SMALL_STATE(2705)] = 138600, - [SMALL_STATE(2706)] = 138682, - [SMALL_STATE(2707)] = 138764, - [SMALL_STATE(2708)] = 138846, - [SMALL_STATE(2709)] = 138928, - [SMALL_STATE(2710)] = 139010, - [SMALL_STATE(2711)] = 139092, - [SMALL_STATE(2712)] = 139174, - [SMALL_STATE(2713)] = 139220, - [SMALL_STATE(2714)] = 139302, - [SMALL_STATE(2715)] = 139384, - [SMALL_STATE(2716)] = 139430, - [SMALL_STATE(2717)] = 139512, - [SMALL_STATE(2718)] = 139594, - [SMALL_STATE(2719)] = 139676, - [SMALL_STATE(2720)] = 139758, - [SMALL_STATE(2721)] = 139840, - [SMALL_STATE(2722)] = 139922, - [SMALL_STATE(2723)] = 140004, - [SMALL_STATE(2724)] = 140086, - [SMALL_STATE(2725)] = 140168, - [SMALL_STATE(2726)] = 140250, - [SMALL_STATE(2727)] = 140332, - [SMALL_STATE(2728)] = 140378, - [SMALL_STATE(2729)] = 140460, - [SMALL_STATE(2730)] = 140506, - [SMALL_STATE(2731)] = 140588, - [SMALL_STATE(2732)] = 140670, - [SMALL_STATE(2733)] = 140752, - [SMALL_STATE(2734)] = 140834, - [SMALL_STATE(2735)] = 140916, - [SMALL_STATE(2736)] = 140998, - [SMALL_STATE(2737)] = 141044, - [SMALL_STATE(2738)] = 141094, - [SMALL_STATE(2739)] = 141140, - [SMALL_STATE(2740)] = 141186, - [SMALL_STATE(2741)] = 141232, - [SMALL_STATE(2742)] = 141278, - [SMALL_STATE(2743)] = 141324, - [SMALL_STATE(2744)] = 141370, - [SMALL_STATE(2745)] = 141416, - [SMALL_STATE(2746)] = 141462, - [SMALL_STATE(2747)] = 141508, - [SMALL_STATE(2748)] = 141554, - [SMALL_STATE(2749)] = 141600, - [SMALL_STATE(2750)] = 141646, - [SMALL_STATE(2751)] = 141720, - [SMALL_STATE(2752)] = 141766, - [SMALL_STATE(2753)] = 141840, - [SMALL_STATE(2754)] = 141886, - [SMALL_STATE(2755)] = 141932, - [SMALL_STATE(2756)] = 141978, - [SMALL_STATE(2757)] = 142024, - [SMALL_STATE(2758)] = 142070, - [SMALL_STATE(2759)] = 142116, - [SMALL_STATE(2760)] = 142162, - [SMALL_STATE(2761)] = 142208, - [SMALL_STATE(2762)] = 142254, - [SMALL_STATE(2763)] = 142300, - [SMALL_STATE(2764)] = 142346, - [SMALL_STATE(2765)] = 142392, - [SMALL_STATE(2766)] = 142468, - [SMALL_STATE(2767)] = 142538, - [SMALL_STATE(2768)] = 142606, - [SMALL_STATE(2769)] = 142672, - [SMALL_STATE(2770)] = 142736, - [SMALL_STATE(2771)] = 142798, - [SMALL_STATE(2772)] = 142858, - [SMALL_STATE(2773)] = 142914, - [SMALL_STATE(2774)] = 142968, - [SMALL_STATE(2775)] = 143020, - [SMALL_STATE(2776)] = 143070, - [SMALL_STATE(2777)] = 143118, - [SMALL_STATE(2778)] = 143164, - [SMALL_STATE(2779)] = 143210, - [SMALL_STATE(2780)] = 143256, - [SMALL_STATE(2781)] = 143302, - [SMALL_STATE(2782)] = 143348, - [SMALL_STATE(2783)] = 143394, - [SMALL_STATE(2784)] = 143440, - [SMALL_STATE(2785)] = 143486, - [SMALL_STATE(2786)] = 143532, - [SMALL_STATE(2787)] = 143582, - [SMALL_STATE(2788)] = 143628, - [SMALL_STATE(2789)] = 143674, - [SMALL_STATE(2790)] = 143720, - [SMALL_STATE(2791)] = 143770, - [SMALL_STATE(2792)] = 143852, - [SMALL_STATE(2793)] = 143898, - [SMALL_STATE(2794)] = 143948, - [SMALL_STATE(2795)] = 143994, - [SMALL_STATE(2796)] = 144040, - [SMALL_STATE(2797)] = 144086, - [SMALL_STATE(2798)] = 144132, - [SMALL_STATE(2799)] = 144178, - [SMALL_STATE(2800)] = 144224, - [SMALL_STATE(2801)] = 144270, - [SMALL_STATE(2802)] = 144316, - [SMALL_STATE(2803)] = 144362, - [SMALL_STATE(2804)] = 144444, - [SMALL_STATE(2805)] = 144497, - [SMALL_STATE(2806)] = 144576, - [SMALL_STATE(2807)] = 144655, - [SMALL_STATE(2808)] = 144714, - [SMALL_STATE(2809)] = 144759, - [SMALL_STATE(2810)] = 144838, - [SMALL_STATE(2811)] = 144917, - [SMALL_STATE(2812)] = 144996, - [SMALL_STATE(2813)] = 145075, - [SMALL_STATE(2814)] = 145120, - [SMALL_STATE(2815)] = 145165, - [SMALL_STATE(2816)] = 145210, - [SMALL_STATE(2817)] = 145289, - [SMALL_STATE(2818)] = 145368, - [SMALL_STATE(2819)] = 145447, - [SMALL_STATE(2820)] = 145526, - [SMALL_STATE(2821)] = 145583, - [SMALL_STATE(2822)] = 145662, - [SMALL_STATE(2823)] = 145709, - [SMALL_STATE(2824)] = 145788, - [SMALL_STATE(2825)] = 145867, - [SMALL_STATE(2826)] = 145946, - [SMALL_STATE(2827)] = 146001, - [SMALL_STATE(2828)] = 146080, - [SMALL_STATE(2829)] = 146159, - [SMALL_STATE(2830)] = 146212, - [SMALL_STATE(2831)] = 146291, - [SMALL_STATE(2832)] = 146340, - [SMALL_STATE(2833)] = 146385, - [SMALL_STATE(2834)] = 146430, - [SMALL_STATE(2835)] = 146475, - [SMALL_STATE(2836)] = 146526, - [SMALL_STATE(2837)] = 146575, - [SMALL_STATE(2838)] = 146624, - [SMALL_STATE(2839)] = 146669, - [SMALL_STATE(2840)] = 146714, - [SMALL_STATE(2841)] = 146769, - [SMALL_STATE(2842)] = 146814, - [SMALL_STATE(2843)] = 146859, - [SMALL_STATE(2844)] = 146916, - [SMALL_STATE(2845)] = 146969, - [SMALL_STATE(2846)] = 147048, - [SMALL_STATE(2847)] = 147093, - [SMALL_STATE(2848)] = 147138, - [SMALL_STATE(2849)] = 147183, - [SMALL_STATE(2850)] = 147228, - [SMALL_STATE(2851)] = 147277, - [SMALL_STATE(2852)] = 147344, - [SMALL_STATE(2853)] = 147389, - [SMALL_STATE(2854)] = 147440, - [SMALL_STATE(2855)] = 147505, - [SMALL_STATE(2856)] = 147554, - [SMALL_STATE(2857)] = 147599, - [SMALL_STATE(2858)] = 147662, - [SMALL_STATE(2859)] = 147709, - [SMALL_STATE(2860)] = 147758, - [SMALL_STATE(2861)] = 147803, - [SMALL_STATE(2862)] = 147864, - [SMALL_STATE(2863)] = 147929, - [SMALL_STATE(2864)] = 148008, - [SMALL_STATE(2865)] = 148053, - [SMALL_STATE(2866)] = 148098, - [SMALL_STATE(2867)] = 148143, - [SMALL_STATE(2868)] = 148200, - [SMALL_STATE(2869)] = 148249, - [SMALL_STATE(2870)] = 148294, - [SMALL_STATE(2871)] = 148369, - [SMALL_STATE(2872)] = 148414, - [SMALL_STATE(2873)] = 148459, - [SMALL_STATE(2874)] = 148532, - [SMALL_STATE(2875)] = 148577, - [SMALL_STATE(2876)] = 148650, - [SMALL_STATE(2877)] = 148695, - [SMALL_STATE(2878)] = 148742, - [SMALL_STATE(2879)] = 148789, - [SMALL_STATE(2880)] = 148834, - [SMALL_STATE(2881)] = 148879, - [SMALL_STATE(2882)] = 148924, - [SMALL_STATE(2883)] = 148969, - [SMALL_STATE(2884)] = 149046, - [SMALL_STATE(2885)] = 149117, - [SMALL_STATE(2886)] = 149196, - [SMALL_STATE(2887)] = 149249, - [SMALL_STATE(2888)] = 149328, - [SMALL_STATE(2889)] = 149373, - [SMALL_STATE(2890)] = 149450, - [SMALL_STATE(2891)] = 149495, - [SMALL_STATE(2892)] = 149540, - [SMALL_STATE(2893)] = 149585, - [SMALL_STATE(2894)] = 149630, - [SMALL_STATE(2895)] = 149699, - [SMALL_STATE(2896)] = 149768, - [SMALL_STATE(2897)] = 149823, - [SMALL_STATE(2898)] = 149878, - [SMALL_STATE(2899)] = 149923, - [SMALL_STATE(2900)] = 149968, - [SMALL_STATE(2901)] = 150035, - [SMALL_STATE(2902)] = 150080, - [SMALL_STATE(2903)] = 150151, - [SMALL_STATE(2904)] = 150202, - [SMALL_STATE(2905)] = 150281, - [SMALL_STATE(2906)] = 150326, - [SMALL_STATE(2907)] = 150371, - [SMALL_STATE(2908)] = 150416, - [SMALL_STATE(2909)] = 150463, - [SMALL_STATE(2910)] = 150518, - [SMALL_STATE(2911)] = 150593, - [SMALL_STATE(2912)] = 150670, - [SMALL_STATE(2913)] = 150741, - [SMALL_STATE(2914)] = 150810, - [SMALL_STATE(2915)] = 150877, - [SMALL_STATE(2916)] = 150942, - [SMALL_STATE(2917)] = 151005, - [SMALL_STATE(2918)] = 151066, - [SMALL_STATE(2919)] = 151123, - [SMALL_STATE(2920)] = 151184, - [SMALL_STATE(2921)] = 151239, - [SMALL_STATE(2922)] = 151288, - [SMALL_STATE(2923)] = 151337, - [SMALL_STATE(2924)] = 151386, - [SMALL_STATE(2925)] = 151431, - [SMALL_STATE(2926)] = 151476, - [SMALL_STATE(2927)] = 151521, - [SMALL_STATE(2928)] = 151566, - [SMALL_STATE(2929)] = 151613, - [SMALL_STATE(2930)] = 151666, - [SMALL_STATE(2931)] = 151719, - [SMALL_STATE(2932)] = 151766, - [SMALL_STATE(2933)] = 151811, - [SMALL_STATE(2934)] = 151858, - [SMALL_STATE(2935)] = 151903, - [SMALL_STATE(2936)] = 151950, - [SMALL_STATE(2937)] = 152005, - [SMALL_STATE(2938)] = 152060, - [SMALL_STATE(2939)] = 152109, - [SMALL_STATE(2940)] = 152158, - [SMALL_STATE(2941)] = 152213, - [SMALL_STATE(2942)] = 152268, - [SMALL_STATE(2943)] = 152347, - [SMALL_STATE(2944)] = 152426, - [SMALL_STATE(2945)] = 152505, - [SMALL_STATE(2946)] = 152554, - [SMALL_STATE(2947)] = 152617, - [SMALL_STATE(2948)] = 152696, - [SMALL_STATE(2949)] = 152775, - [SMALL_STATE(2950)] = 152820, - [SMALL_STATE(2951)] = 152865, - [SMALL_STATE(2952)] = 152922, - [SMALL_STATE(2953)] = 152977, - [SMALL_STATE(2954)] = 153022, - [SMALL_STATE(2955)] = 153077, - [SMALL_STATE(2956)] = 153156, - [SMALL_STATE(2957)] = 153213, - [SMALL_STATE(2958)] = 153268, - [SMALL_STATE(2959)] = 153323, - [SMALL_STATE(2960)] = 153370, - [SMALL_STATE(2961)] = 153417, - [SMALL_STATE(2962)] = 153472, - [SMALL_STATE(2963)] = 153547, - [SMALL_STATE(2964)] = 153624, - [SMALL_STATE(2965)] = 153695, - [SMALL_STATE(2966)] = 153764, - [SMALL_STATE(2967)] = 153831, - [SMALL_STATE(2968)] = 153896, - [SMALL_STATE(2969)] = 153959, - [SMALL_STATE(2970)] = 154020, - [SMALL_STATE(2971)] = 154077, - [SMALL_STATE(2972)] = 154130, - [SMALL_STATE(2973)] = 154181, - [SMALL_STATE(2974)] = 154230, - [SMALL_STATE(2975)] = 154279, - [SMALL_STATE(2976)] = 154328, - [SMALL_STATE(2977)] = 154375, - [SMALL_STATE(2978)] = 154422, - [SMALL_STATE(2979)] = 154491, - [SMALL_STATE(2980)] = 154564, - [SMALL_STATE(2981)] = 154643, - [SMALL_STATE(2982)] = 154722, - [SMALL_STATE(2983)] = 154801, - [SMALL_STATE(2984)] = 154880, - [SMALL_STATE(2985)] = 154947, - [SMALL_STATE(2986)] = 155012, - [SMALL_STATE(2987)] = 155091, - [SMALL_STATE(2988)] = 155170, - [SMALL_STATE(2989)] = 155249, - [SMALL_STATE(2990)] = 155306, - [SMALL_STATE(2991)] = 155361, - [SMALL_STATE(2992)] = 155406, - [SMALL_STATE(2993)] = 155461, - [SMALL_STATE(2994)] = 155540, - [SMALL_STATE(2995)] = 155597, - [SMALL_STATE(2996)] = 155676, - [SMALL_STATE(2997)] = 155739, - [SMALL_STATE(2998)] = 155812, - [SMALL_STATE(2999)] = 155891, - [SMALL_STATE(3000)] = 155940, - [SMALL_STATE(3001)] = 155985, - [SMALL_STATE(3002)] = 156040, - [SMALL_STATE(3003)] = 156115, - [SMALL_STATE(3004)] = 156192, - [SMALL_STATE(3005)] = 156271, - [SMALL_STATE(3006)] = 156342, - [SMALL_STATE(3007)] = 156421, - [SMALL_STATE(3008)] = 156466, - [SMALL_STATE(3009)] = 156511, - [SMALL_STATE(3010)] = 156556, - [SMALL_STATE(3011)] = 156635, - [SMALL_STATE(3012)] = 156696, - [SMALL_STATE(3013)] = 156775, - [SMALL_STATE(3014)] = 156830, - [SMALL_STATE(3015)] = 156875, - [SMALL_STATE(3016)] = 156954, - [SMALL_STATE(3017)] = 157001, - [SMALL_STATE(3018)] = 157080, - [SMALL_STATE(3019)] = 157131, - [SMALL_STATE(3020)] = 157187, - [SMALL_STATE(3021)] = 157263, - [SMALL_STATE(3022)] = 157331, - [SMALL_STATE(3023)] = 157397, - [SMALL_STATE(3024)] = 157473, - [SMALL_STATE(3025)] = 157517, - [SMALL_STATE(3026)] = 157581, - [SMALL_STATE(3027)] = 157657, - [SMALL_STATE(3028)] = 157701, - [SMALL_STATE(3029)] = 157777, - [SMALL_STATE(3030)] = 157839, - [SMALL_STATE(3031)] = 157915, - [SMALL_STATE(3032)] = 157959, - [SMALL_STATE(3033)] = 158019, - [SMALL_STATE(3034)] = 158095, - [SMALL_STATE(3035)] = 158139, - [SMALL_STATE(3036)] = 158197, - [SMALL_STATE(3037)] = 158273, - [SMALL_STATE(3038)] = 158327, - [SMALL_STATE(3039)] = 158403, - [SMALL_STATE(3040)] = 158455, - [SMALL_STATE(3041)] = 158531, - [SMALL_STATE(3042)] = 158581, - [SMALL_STATE(3043)] = 158657, - [SMALL_STATE(3044)] = 158705, - [SMALL_STATE(3045)] = 158781, - [SMALL_STATE(3046)] = 158827, - [SMALL_STATE(3047)] = 158903, - [SMALL_STATE(3048)] = 158971, - [SMALL_STATE(3049)] = 159047, - [SMALL_STATE(3050)] = 159113, - [SMALL_STATE(3051)] = 159189, - [SMALL_STATE(3052)] = 159253, - [SMALL_STATE(3053)] = 159329, - [SMALL_STATE(3054)] = 159393, - [SMALL_STATE(3055)] = 159469, - [SMALL_STATE(3056)] = 159545, - [SMALL_STATE(3057)] = 159607, - [SMALL_STATE(3058)] = 159683, - [SMALL_STATE(3059)] = 159759, - [SMALL_STATE(3060)] = 159819, - [SMALL_STATE(3061)] = 159895, - [SMALL_STATE(3062)] = 159971, - [SMALL_STATE(3063)] = 160025, - [SMALL_STATE(3064)] = 160101, - [SMALL_STATE(3065)] = 160159, - [SMALL_STATE(3066)] = 160235, - [SMALL_STATE(3067)] = 160289, - [SMALL_STATE(3068)] = 160365, - [SMALL_STATE(3069)] = 160417, - [SMALL_STATE(3070)] = 160493, - [SMALL_STATE(3071)] = 160543, - [SMALL_STATE(3072)] = 160619, - [SMALL_STATE(3073)] = 160695, - [SMALL_STATE(3074)] = 160745, - [SMALL_STATE(3075)] = 160821, - [SMALL_STATE(3076)] = 160865, - [SMALL_STATE(3077)] = 160941, - [SMALL_STATE(3078)] = 160989, - [SMALL_STATE(3079)] = 161037, - [SMALL_STATE(3080)] = 161113, - [SMALL_STATE(3081)] = 161163, - [SMALL_STATE(3082)] = 161239, - [SMALL_STATE(3083)] = 161289, - [SMALL_STATE(3084)] = 161365, - [SMALL_STATE(3085)] = 161441, - [SMALL_STATE(3086)] = 161517, - [SMALL_STATE(3087)] = 161593, - [SMALL_STATE(3088)] = 161637, - [SMALL_STATE(3089)] = 161713, - [SMALL_STATE(3090)] = 161759, - [SMALL_STATE(3091)] = 161835, - [SMALL_STATE(3092)] = 161879, - [SMALL_STATE(3093)] = 161923, - [SMALL_STATE(3094)] = 161999, - [SMALL_STATE(3095)] = 162075, - [SMALL_STATE(3096)] = 162119, - [SMALL_STATE(3097)] = 162195, - [SMALL_STATE(3098)] = 162239, - [SMALL_STATE(3099)] = 162315, - [SMALL_STATE(3100)] = 162359, - [SMALL_STATE(3101)] = 162435, - [SMALL_STATE(3102)] = 162479, - [SMALL_STATE(3103)] = 162555, - [SMALL_STATE(3104)] = 162599, - [SMALL_STATE(3105)] = 162675, - [SMALL_STATE(3106)] = 162743, - [SMALL_STATE(3107)] = 162819, - [SMALL_STATE(3108)] = 162885, - [SMALL_STATE(3109)] = 162961, - [SMALL_STATE(3110)] = 163005, - [SMALL_STATE(3111)] = 163081, - [SMALL_STATE(3112)] = 163125, - [SMALL_STATE(3113)] = 163201, - [SMALL_STATE(3114)] = 163271, - [SMALL_STATE(3115)] = 163335, - [SMALL_STATE(3116)] = 163411, - [SMALL_STATE(3117)] = 163473, - [SMALL_STATE(3118)] = 163517, - [SMALL_STATE(3119)] = 163593, - [SMALL_STATE(3120)] = 163657, - [SMALL_STATE(3121)] = 163719, - [SMALL_STATE(3122)] = 163795, - [SMALL_STATE(3123)] = 163855, - [SMALL_STATE(3124)] = 163913, - [SMALL_STATE(3125)] = 163989, - [SMALL_STATE(3126)] = 164043, - [SMALL_STATE(3127)] = 164119, - [SMALL_STATE(3128)] = 164171, - [SMALL_STATE(3129)] = 164247, - [SMALL_STATE(3130)] = 164291, - [SMALL_STATE(3131)] = 164367, - [SMALL_STATE(3132)] = 164417, - [SMALL_STATE(3133)] = 164493, - [SMALL_STATE(3134)] = 164541, - [SMALL_STATE(3135)] = 164617, - [SMALL_STATE(3136)] = 164665, - [SMALL_STATE(3137)] = 164713, - [SMALL_STATE(3138)] = 164757, - [SMALL_STATE(3139)] = 164811, - [SMALL_STATE(3140)] = 164865, - [SMALL_STATE(3141)] = 164909, - [SMALL_STATE(3142)] = 164953, - [SMALL_STATE(3143)] = 165007, - [SMALL_STATE(3144)] = 165061, - [SMALL_STATE(3145)] = 165105, - [SMALL_STATE(3146)] = 165149, - [SMALL_STATE(3147)] = 165193, - [SMALL_STATE(3148)] = 165269, - [SMALL_STATE(3149)] = 165313, - [SMALL_STATE(3150)] = 165389, - [SMALL_STATE(3151)] = 165465, - [SMALL_STATE(3152)] = 165509, - [SMALL_STATE(3153)] = 165553, - [SMALL_STATE(3154)] = 165597, - [SMALL_STATE(3155)] = 165641, - [SMALL_STATE(3156)] = 165717, - [SMALL_STATE(3157)] = 165791, - [SMALL_STATE(3158)] = 165835, - [SMALL_STATE(3159)] = 165911, - [SMALL_STATE(3160)] = 165981, - [SMALL_STATE(3161)] = 166069, - [SMALL_STATE(3162)] = 166157, - [SMALL_STATE(3163)] = 166201, - [SMALL_STATE(3164)] = 166289, - [SMALL_STATE(3165)] = 166359, - [SMALL_STATE(3166)] = 166403, - [SMALL_STATE(3167)] = 166491, - [SMALL_STATE(3168)] = 166535, - [SMALL_STATE(3169)] = 166623, - [SMALL_STATE(3170)] = 166667, - [SMALL_STATE(3171)] = 166711, - [SMALL_STATE(3172)] = 166755, - [SMALL_STATE(3173)] = 166809, - [SMALL_STATE(3174)] = 166855, - [SMALL_STATE(3175)] = 166927, - [SMALL_STATE(3176)] = 166981, - [SMALL_STATE(3177)] = 167025, - [SMALL_STATE(3178)] = 167069, - [SMALL_STATE(3179)] = 167113, - [SMALL_STATE(3180)] = 167189, - [SMALL_STATE(3181)] = 167265, - [SMALL_STATE(3182)] = 167341, - [SMALL_STATE(3183)] = 167385, - [SMALL_STATE(3184)] = 167473, - [SMALL_STATE(3185)] = 167517, - [SMALL_STATE(3186)] = 167605, - [SMALL_STATE(3187)] = 167649, - [SMALL_STATE(3188)] = 167737, - [SMALL_STATE(3189)] = 167825, - [SMALL_STATE(3190)] = 167869, - [SMALL_STATE(3191)] = 167913, - [SMALL_STATE(3192)] = 167957, - [SMALL_STATE(3193)] = 168001, - [SMALL_STATE(3194)] = 168045, - [SMALL_STATE(3195)] = 168089, - [SMALL_STATE(3196)] = 168159, - [SMALL_STATE(3197)] = 168203, - [SMALL_STATE(3198)] = 168279, - [SMALL_STATE(3199)] = 168323, - [SMALL_STATE(3200)] = 168367, - [SMALL_STATE(3201)] = 168411, - [SMALL_STATE(3202)] = 168455, - [SMALL_STATE(3203)] = 168499, - [SMALL_STATE(3204)] = 168553, - [SMALL_STATE(3205)] = 168607, - [SMALL_STATE(3206)] = 168661, - [SMALL_STATE(3207)] = 168705, - [SMALL_STATE(3208)] = 168749, - [SMALL_STATE(3209)] = 168795, - [SMALL_STATE(3210)] = 168883, - [SMALL_STATE(3211)] = 168937, - [SMALL_STATE(3212)] = 168981, - [SMALL_STATE(3213)] = 169057, - [SMALL_STATE(3214)] = 169101, - [SMALL_STATE(3215)] = 169177, - [SMALL_STATE(3216)] = 169221, - [SMALL_STATE(3217)] = 169265, - [SMALL_STATE(3218)] = 169341, - [SMALL_STATE(3219)] = 169385, - [SMALL_STATE(3220)] = 169473, - [SMALL_STATE(3221)] = 169517, - [SMALL_STATE(3222)] = 169561, - [SMALL_STATE(3223)] = 169649, - [SMALL_STATE(3224)] = 169693, - [SMALL_STATE(3225)] = 169737, - [SMALL_STATE(3226)] = 169825, - [SMALL_STATE(3227)] = 169913, - [SMALL_STATE(3228)] = 169957, - [SMALL_STATE(3229)] = 170011, - [SMALL_STATE(3230)] = 170065, - [SMALL_STATE(3231)] = 170109, - [SMALL_STATE(3232)] = 170153, - [SMALL_STATE(3233)] = 170197, - [SMALL_STATE(3234)] = 170241, - [SMALL_STATE(3235)] = 170285, - [SMALL_STATE(3236)] = 170361, - [SMALL_STATE(3237)] = 170405, - [SMALL_STATE(3238)] = 170449, - [SMALL_STATE(3239)] = 170493, - [SMALL_STATE(3240)] = 170541, - [SMALL_STATE(3241)] = 170629, - [SMALL_STATE(3242)] = 170683, - [SMALL_STATE(3243)] = 170737, - [SMALL_STATE(3244)] = 170811, - [SMALL_STATE(3245)] = 170887, - [SMALL_STATE(3246)] = 170957, - [SMALL_STATE(3247)] = 171025, - [SMALL_STATE(3248)] = 171091, - [SMALL_STATE(3249)] = 171155, - [SMALL_STATE(3250)] = 171217, - [SMALL_STATE(3251)] = 171277, - [SMALL_STATE(3252)] = 171325, - [SMALL_STATE(3253)] = 171377, - [SMALL_STATE(3254)] = 171427, - [SMALL_STATE(3255)] = 171475, - [SMALL_STATE(3256)] = 171523, - [SMALL_STATE(3257)] = 171567, - [SMALL_STATE(3258)] = 171643, - [SMALL_STATE(3259)] = 171699, - [SMALL_STATE(3260)] = 171753, - [SMALL_STATE(3261)] = 171807, - [SMALL_STATE(3262)] = 171851, - [SMALL_STATE(3263)] = 171895, - [SMALL_STATE(3264)] = 171941, - [SMALL_STATE(3265)] = 171985, - [SMALL_STATE(3266)] = 172029, - [SMALL_STATE(3267)] = 172101, - [SMALL_STATE(3268)] = 172145, - [SMALL_STATE(3269)] = 172221, - [SMALL_STATE(3270)] = 172295, - [SMALL_STATE(3271)] = 172363, - [SMALL_STATE(3272)] = 172429, - [SMALL_STATE(3273)] = 172473, - [SMALL_STATE(3274)] = 172537, - [SMALL_STATE(3275)] = 172581, - [SMALL_STATE(3276)] = 172627, - [SMALL_STATE(3277)] = 172689, - [SMALL_STATE(3278)] = 172733, - [SMALL_STATE(3279)] = 172793, - [SMALL_STATE(3280)] = 172843, - [SMALL_STATE(3281)] = 172919, - [SMALL_STATE(3282)] = 172969, - [SMALL_STATE(3283)] = 173013, - [SMALL_STATE(3284)] = 173063, - [SMALL_STATE(3285)] = 173135, - [SMALL_STATE(3286)] = 173193, - [SMALL_STATE(3287)] = 173247, - [SMALL_STATE(3288)] = 173299, - [SMALL_STATE(3289)] = 173349, - [SMALL_STATE(3290)] = 173437, - [SMALL_STATE(3291)] = 173490, - [SMALL_STATE(3292)] = 173543, - [SMALL_STATE(3293)] = 173596, - [SMALL_STATE(3294)] = 173639, - [SMALL_STATE(3295)] = 173682, - [SMALL_STATE(3296)] = 173725, - [SMALL_STATE(3297)] = 173768, - [SMALL_STATE(3298)] = 173811, - [SMALL_STATE(3299)] = 173854, - [SMALL_STATE(3300)] = 173939, - [SMALL_STATE(3301)] = 174024, - [SMALL_STATE(3302)] = 174067, - [SMALL_STATE(3303)] = 174152, - [SMALL_STATE(3304)] = 174237, - [SMALL_STATE(3305)] = 174322, - [SMALL_STATE(3306)] = 174365, - [SMALL_STATE(3307)] = 174450, - [SMALL_STATE(3308)] = 174535, - [SMALL_STATE(3309)] = 174588, - [SMALL_STATE(3310)] = 174641, - [SMALL_STATE(3311)] = 174726, - [SMALL_STATE(3312)] = 174779, - [SMALL_STATE(3313)] = 174822, - [SMALL_STATE(3314)] = 174865, - [SMALL_STATE(3315)] = 174950, - [SMALL_STATE(3316)] = 175003, - [SMALL_STATE(3317)] = 175046, - [SMALL_STATE(3318)] = 175099, - [SMALL_STATE(3319)] = 175152, - [SMALL_STATE(3320)] = 175237, - [SMALL_STATE(3321)] = 175322, - [SMALL_STATE(3322)] = 175375, - [SMALL_STATE(3323)] = 175460, - [SMALL_STATE(3324)] = 175545, - [SMALL_STATE(3325)] = 175630, - [SMALL_STATE(3326)] = 175715, - [SMALL_STATE(3327)] = 175800, - [SMALL_STATE(3328)] = 175885, - [SMALL_STATE(3329)] = 175970, - [SMALL_STATE(3330)] = 176013, - [SMALL_STATE(3331)] = 176098, - [SMALL_STATE(3332)] = 176183, - [SMALL_STATE(3333)] = 176268, - [SMALL_STATE(3334)] = 176311, - [SMALL_STATE(3335)] = 176396, - [SMALL_STATE(3336)] = 176439, - [SMALL_STATE(3337)] = 176524, - [SMALL_STATE(3338)] = 176567, - [SMALL_STATE(3339)] = 176620, - [SMALL_STATE(3340)] = 176673, - [SMALL_STATE(3341)] = 176716, - [SMALL_STATE(3342)] = 176759, - [SMALL_STATE(3343)] = 176802, - [SMALL_STATE(3344)] = 176855, - [SMALL_STATE(3345)] = 176898, - [SMALL_STATE(3346)] = 176951, - [SMALL_STATE(3347)] = 176994, - [SMALL_STATE(3348)] = 177079, - [SMALL_STATE(3349)] = 177131, - [SMALL_STATE(3350)] = 177177, - [SMALL_STATE(3351)] = 177255, - [SMALL_STATE(3352)] = 177301, - [SMALL_STATE(3353)] = 177347, - [SMALL_STATE(3354)] = 177399, - [SMALL_STATE(3355)] = 177445, - [SMALL_STATE(3356)] = 177523, - [SMALL_STATE(3357)] = 177569, - [SMALL_STATE(3358)] = 177651, - [SMALL_STATE(3359)] = 177697, - [SMALL_STATE(3360)] = 177743, - [SMALL_STATE(3361)] = 177821, - [SMALL_STATE(3362)] = 177867, - [SMALL_STATE(3363)] = 177915, - [SMALL_STATE(3364)] = 177961, - [SMALL_STATE(3365)] = 178007, - [SMALL_STATE(3366)] = 178085, - [SMALL_STATE(3367)] = 178161, - [SMALL_STATE(3368)] = 178239, - [SMALL_STATE(3369)] = 178325, - [SMALL_STATE(3370)] = 178371, - [SMALL_STATE(3371)] = 178457, - [SMALL_STATE(3372)] = 178543, - [SMALL_STATE(3373)] = 178591, - [SMALL_STATE(3374)] = 178637, - [SMALL_STATE(3375)] = 178683, - [SMALL_STATE(3376)] = 178735, - [SMALL_STATE(3377)] = 178781, - [SMALL_STATE(3378)] = 178833, - [SMALL_STATE(3379)] = 178906, - [SMALL_STATE(3380)] = 178947, - [SMALL_STATE(3381)] = 178988, - [SMALL_STATE(3382)] = 179069, - [SMALL_STATE(3383)] = 179110, - [SMALL_STATE(3384)] = 179151, - [SMALL_STATE(3385)] = 179232, - [SMALL_STATE(3386)] = 179305, - [SMALL_STATE(3387)] = 179378, - [SMALL_STATE(3388)] = 179459, - [SMALL_STATE(3389)] = 179540, - [SMALL_STATE(3390)] = 179621, - [SMALL_STATE(3391)] = 179702, - [SMALL_STATE(3392)] = 179783, - [SMALL_STATE(3393)] = 179864, - [SMALL_STATE(3394)] = 179945, - [SMALL_STATE(3395)] = 180026, - [SMALL_STATE(3396)] = 180107, - [SMALL_STATE(3397)] = 180188, - [SMALL_STATE(3398)] = 180269, - [SMALL_STATE(3399)] = 180350, - [SMALL_STATE(3400)] = 180431, - [SMALL_STATE(3401)] = 180512, - [SMALL_STATE(3402)] = 180593, - [SMALL_STATE(3403)] = 180634, - [SMALL_STATE(3404)] = 180707, - [SMALL_STATE(3405)] = 180748, - [SMALL_STATE(3406)] = 180789, - [SMALL_STATE(3407)] = 180830, - [SMALL_STATE(3408)] = 180871, - [SMALL_STATE(3409)] = 180912, - [SMALL_STATE(3410)] = 180953, - [SMALL_STATE(3411)] = 180994, - [SMALL_STATE(3412)] = 181035, - [SMALL_STATE(3413)] = 181076, - [SMALL_STATE(3414)] = 181117, - [SMALL_STATE(3415)] = 181158, - [SMALL_STATE(3416)] = 181199, - [SMALL_STATE(3417)] = 181250, - [SMALL_STATE(3418)] = 181301, - [SMALL_STATE(3419)] = 181342, - [SMALL_STATE(3420)] = 181383, - [SMALL_STATE(3421)] = 181464, - [SMALL_STATE(3422)] = 181545, - [SMALL_STATE(3423)] = 181586, - [SMALL_STATE(3424)] = 181667, - [SMALL_STATE(3425)] = 181748, - [SMALL_STATE(3426)] = 181829, - [SMALL_STATE(3427)] = 181910, - [SMALL_STATE(3428)] = 181954, - [SMALL_STATE(3429)] = 182034, - [SMALL_STATE(3430)] = 182114, - [SMALL_STATE(3431)] = 182194, - [SMALL_STATE(3432)] = 182274, - [SMALL_STATE(3433)] = 182318, - [SMALL_STATE(3434)] = 182368, - [SMALL_STATE(3435)] = 182448, - [SMALL_STATE(3436)] = 182528, - [SMALL_STATE(3437)] = 182608, - [SMALL_STATE(3438)] = 182688, - [SMALL_STATE(3439)] = 182768, - [SMALL_STATE(3440)] = 182848, - [SMALL_STATE(3441)] = 182928, - [SMALL_STATE(3442)] = 183008, - [SMALL_STATE(3443)] = 183052, - [SMALL_STATE(3444)] = 183102, - [SMALL_STATE(3445)] = 183182, - [SMALL_STATE(3446)] = 183262, - [SMALL_STATE(3447)] = 183342, - [SMALL_STATE(3448)] = 183422, - [SMALL_STATE(3449)] = 183502, - [SMALL_STATE(3450)] = 183546, - [SMALL_STATE(3451)] = 183596, - [SMALL_STATE(3452)] = 183640, - [SMALL_STATE(3453)] = 183684, - [SMALL_STATE(3454)] = 183764, - [SMALL_STATE(3455)] = 183808, - [SMALL_STATE(3456)] = 183858, - [SMALL_STATE(3457)] = 183938, - [SMALL_STATE(3458)] = 184015, - [SMALL_STATE(3459)] = 184092, - [SMALL_STATE(3460)] = 184169, - [SMALL_STATE(3461)] = 184244, - [SMALL_STATE(3462)] = 184321, - [SMALL_STATE(3463)] = 184396, - [SMALL_STATE(3464)] = 184473, - [SMALL_STATE(3465)] = 184550, - [SMALL_STATE(3466)] = 184627, - [SMALL_STATE(3467)] = 184704, - [SMALL_STATE(3468)] = 184781, - [SMALL_STATE(3469)] = 184856, - [SMALL_STATE(3470)] = 184933, - [SMALL_STATE(3471)] = 185008, - [SMALL_STATE(3472)] = 185085, - [SMALL_STATE(3473)] = 185160, - [SMALL_STATE(3474)] = 185235, - [SMALL_STATE(3475)] = 185310, - [SMALL_STATE(3476)] = 185387, - [SMALL_STATE(3477)] = 185462, - [SMALL_STATE(3478)] = 185537, - [SMALL_STATE(3479)] = 185612, - [SMALL_STATE(3480)] = 185687, - [SMALL_STATE(3481)] = 185762, - [SMALL_STATE(3482)] = 185837, - [SMALL_STATE(3483)] = 185912, - [SMALL_STATE(3484)] = 185987, - [SMALL_STATE(3485)] = 186062, - [SMALL_STATE(3486)] = 186137, - [SMALL_STATE(3487)] = 186212, - [SMALL_STATE(3488)] = 186287, - [SMALL_STATE(3489)] = 186362, - [SMALL_STATE(3490)] = 186437, - [SMALL_STATE(3491)] = 186512, - [SMALL_STATE(3492)] = 186551, - [SMALL_STATE(3493)] = 186626, - [SMALL_STATE(3494)] = 186703, - [SMALL_STATE(3495)] = 186780, - [SMALL_STATE(3496)] = 186857, - [SMALL_STATE(3497)] = 186934, - [SMALL_STATE(3498)] = 187011, - [SMALL_STATE(3499)] = 187088, - [SMALL_STATE(3500)] = 187163, - [SMALL_STATE(3501)] = 187240, - [SMALL_STATE(3502)] = 187317, - [SMALL_STATE(3503)] = 187394, - [SMALL_STATE(3504)] = 187465, - [SMALL_STATE(3505)] = 187542, - [SMALL_STATE(3506)] = 187619, - [SMALL_STATE(3507)] = 187696, - [SMALL_STATE(3508)] = 187771, - [SMALL_STATE(3509)] = 187848, - [SMALL_STATE(3510)] = 187897, - [SMALL_STATE(3511)] = 187974, - [SMALL_STATE(3512)] = 188051, - [SMALL_STATE(3513)] = 188100, - [SMALL_STATE(3514)] = 188177, - [SMALL_STATE(3515)] = 188254, - [SMALL_STATE(3516)] = 188331, - [SMALL_STATE(3517)] = 188370, - [SMALL_STATE(3518)] = 188445, - [SMALL_STATE(3519)] = 188520, - [SMALL_STATE(3520)] = 188597, - [SMALL_STATE(3521)] = 188636, - [SMALL_STATE(3522)] = 188713, - [SMALL_STATE(3523)] = 188790, - [SMALL_STATE(3524)] = 188867, - [SMALL_STATE(3525)] = 188942, - [SMALL_STATE(3526)] = 189019, - [SMALL_STATE(3527)] = 189094, - [SMALL_STATE(3528)] = 189171, - [SMALL_STATE(3529)] = 189246, - [SMALL_STATE(3530)] = 189321, - [SMALL_STATE(3531)] = 189396, - [SMALL_STATE(3532)] = 189473, - [SMALL_STATE(3533)] = 189550, - [SMALL_STATE(3534)] = 189627, - [SMALL_STATE(3535)] = 189704, - [SMALL_STATE(3536)] = 189779, - [SMALL_STATE(3537)] = 189854, - [SMALL_STATE(3538)] = 189931, - [SMALL_STATE(3539)] = 190008, - [SMALL_STATE(3540)] = 190085, - [SMALL_STATE(3541)] = 190160, - [SMALL_STATE(3542)] = 190235, - [SMALL_STATE(3543)] = 190310, - [SMALL_STATE(3544)] = 190387, - [SMALL_STATE(3545)] = 190464, - [SMALL_STATE(3546)] = 190539, - [SMALL_STATE(3547)] = 190616, - [SMALL_STATE(3548)] = 190693, - [SMALL_STATE(3549)] = 190770, - [SMALL_STATE(3550)] = 190847, - [SMALL_STATE(3551)] = 190922, - [SMALL_STATE(3552)] = 190997, - [SMALL_STATE(3553)] = 191072, - [SMALL_STATE(3554)] = 191149, - [SMALL_STATE(3555)] = 191226, - [SMALL_STATE(3556)] = 191303, - [SMALL_STATE(3557)] = 191380, - [SMALL_STATE(3558)] = 191457, - [SMALL_STATE(3559)] = 191534, - [SMALL_STATE(3560)] = 191611, - [SMALL_STATE(3561)] = 191688, - [SMALL_STATE(3562)] = 191763, - [SMALL_STATE(3563)] = 191838, - [SMALL_STATE(3564)] = 191915, - [SMALL_STATE(3565)] = 191990, - [SMALL_STATE(3566)] = 192067, - [SMALL_STATE(3567)] = 192144, - [SMALL_STATE(3568)] = 192221, - [SMALL_STATE(3569)] = 192298, - [SMALL_STATE(3570)] = 192375, - [SMALL_STATE(3571)] = 192452, - [SMALL_STATE(3572)] = 192529, - [SMALL_STATE(3573)] = 192606, - [SMALL_STATE(3574)] = 192683, - [SMALL_STATE(3575)] = 192760, - [SMALL_STATE(3576)] = 192837, - [SMALL_STATE(3577)] = 192914, - [SMALL_STATE(3578)] = 192991, - [SMALL_STATE(3579)] = 193068, - [SMALL_STATE(3580)] = 193145, - [SMALL_STATE(3581)] = 193222, - [SMALL_STATE(3582)] = 193299, - [SMALL_STATE(3583)] = 193376, - [SMALL_STATE(3584)] = 193453, - [SMALL_STATE(3585)] = 193530, - [SMALL_STATE(3586)] = 193607, - [SMALL_STATE(3587)] = 193684, - [SMALL_STATE(3588)] = 193761, - [SMALL_STATE(3589)] = 193838, - [SMALL_STATE(3590)] = 193915, - [SMALL_STATE(3591)] = 193992, - [SMALL_STATE(3592)] = 194069, - [SMALL_STATE(3593)] = 194146, - [SMALL_STATE(3594)] = 194223, - [SMALL_STATE(3595)] = 194300, - [SMALL_STATE(3596)] = 194377, - [SMALL_STATE(3597)] = 194454, - [SMALL_STATE(3598)] = 194531, - [SMALL_STATE(3599)] = 194608, - [SMALL_STATE(3600)] = 194685, - [SMALL_STATE(3601)] = 194762, - [SMALL_STATE(3602)] = 194839, - [SMALL_STATE(3603)] = 194916, - [SMALL_STATE(3604)] = 194993, - [SMALL_STATE(3605)] = 195070, - [SMALL_STATE(3606)] = 195147, - [SMALL_STATE(3607)] = 195224, - [SMALL_STATE(3608)] = 195301, - [SMALL_STATE(3609)] = 195378, - [SMALL_STATE(3610)] = 195455, - [SMALL_STATE(3611)] = 195532, - [SMALL_STATE(3612)] = 195609, - [SMALL_STATE(3613)] = 195686, - [SMALL_STATE(3614)] = 195763, - [SMALL_STATE(3615)] = 195840, - [SMALL_STATE(3616)] = 195917, - [SMALL_STATE(3617)] = 195994, - [SMALL_STATE(3618)] = 196071, - [SMALL_STATE(3619)] = 196148, - [SMALL_STATE(3620)] = 196225, - [SMALL_STATE(3621)] = 196302, - [SMALL_STATE(3622)] = 196379, - [SMALL_STATE(3623)] = 196456, - [SMALL_STATE(3624)] = 196533, - [SMALL_STATE(3625)] = 196610, - [SMALL_STATE(3626)] = 196687, - [SMALL_STATE(3627)] = 196764, - [SMALL_STATE(3628)] = 196841, - [SMALL_STATE(3629)] = 196918, - [SMALL_STATE(3630)] = 196995, - [SMALL_STATE(3631)] = 197072, - [SMALL_STATE(3632)] = 197149, - [SMALL_STATE(3633)] = 197226, - [SMALL_STATE(3634)] = 197303, - [SMALL_STATE(3635)] = 197380, - [SMALL_STATE(3636)] = 197457, - [SMALL_STATE(3637)] = 197534, - [SMALL_STATE(3638)] = 197611, - [SMALL_STATE(3639)] = 197688, - [SMALL_STATE(3640)] = 197765, - [SMALL_STATE(3641)] = 197814, - [SMALL_STATE(3642)] = 197891, - [SMALL_STATE(3643)] = 197968, - [SMALL_STATE(3644)] = 198017, - [SMALL_STATE(3645)] = 198094, - [SMALL_STATE(3646)] = 198171, - [SMALL_STATE(3647)] = 198248, - [SMALL_STATE(3648)] = 198325, - [SMALL_STATE(3649)] = 198402, - [SMALL_STATE(3650)] = 198479, - [SMALL_STATE(3651)] = 198556, - [SMALL_STATE(3652)] = 198633, - [SMALL_STATE(3653)] = 198710, - [SMALL_STATE(3654)] = 198787, - [SMALL_STATE(3655)] = 198864, - [SMALL_STATE(3656)] = 198941, - [SMALL_STATE(3657)] = 199018, - [SMALL_STATE(3658)] = 199095, - [SMALL_STATE(3659)] = 199172, - [SMALL_STATE(3660)] = 199249, - [SMALL_STATE(3661)] = 199326, - [SMALL_STATE(3662)] = 199403, - [SMALL_STATE(3663)] = 199442, - [SMALL_STATE(3664)] = 199519, - [SMALL_STATE(3665)] = 199596, - [SMALL_STATE(3666)] = 199673, - [SMALL_STATE(3667)] = 199750, - [SMALL_STATE(3668)] = 199827, - [SMALL_STATE(3669)] = 199904, - [SMALL_STATE(3670)] = 199981, - [SMALL_STATE(3671)] = 200058, - [SMALL_STATE(3672)] = 200135, - [SMALL_STATE(3673)] = 200212, - [SMALL_STATE(3674)] = 200289, - [SMALL_STATE(3675)] = 200366, - [SMALL_STATE(3676)] = 200443, - [SMALL_STATE(3677)] = 200520, - [SMALL_STATE(3678)] = 200597, - [SMALL_STATE(3679)] = 200674, - [SMALL_STATE(3680)] = 200751, - [SMALL_STATE(3681)] = 200828, - [SMALL_STATE(3682)] = 200905, - [SMALL_STATE(3683)] = 200982, - [SMALL_STATE(3684)] = 201059, - [SMALL_STATE(3685)] = 201136, - [SMALL_STATE(3686)] = 201213, - [SMALL_STATE(3687)] = 201290, - [SMALL_STATE(3688)] = 201339, - [SMALL_STATE(3689)] = 201388, - [SMALL_STATE(3690)] = 201463, - [SMALL_STATE(3691)] = 201540, - [SMALL_STATE(3692)] = 201579, - [SMALL_STATE(3693)] = 201618, - [SMALL_STATE(3694)] = 201695, - [SMALL_STATE(3695)] = 201772, - [SMALL_STATE(3696)] = 201849, - [SMALL_STATE(3697)] = 201888, - [SMALL_STATE(3698)] = 201965, - [SMALL_STATE(3699)] = 202040, - [SMALL_STATE(3700)] = 202117, - [SMALL_STATE(3701)] = 202192, - [SMALL_STATE(3702)] = 202231, - [SMALL_STATE(3703)] = 202308, - [SMALL_STATE(3704)] = 202347, - [SMALL_STATE(3705)] = 202424, - [SMALL_STATE(3706)] = 202501, - [SMALL_STATE(3707)] = 202578, - [SMALL_STATE(3708)] = 202627, - [SMALL_STATE(3709)] = 202676, - [SMALL_STATE(3710)] = 202753, - [SMALL_STATE(3711)] = 202801, - [SMALL_STATE(3712)] = 202873, - [SMALL_STATE(3713)] = 202945, - [SMALL_STATE(3714)] = 203019, - [SMALL_STATE(3715)] = 203091, - [SMALL_STATE(3716)] = 203161, - [SMALL_STATE(3717)] = 203233, - [SMALL_STATE(3718)] = 203305, - [SMALL_STATE(3719)] = 203375, - [SMALL_STATE(3720)] = 203447, - [SMALL_STATE(3721)] = 203519, - [SMALL_STATE(3722)] = 203591, - [SMALL_STATE(3723)] = 203663, - [SMALL_STATE(3724)] = 203735, - [SMALL_STATE(3725)] = 203807, - [SMALL_STATE(3726)] = 203879, - [SMALL_STATE(3727)] = 203951, - [SMALL_STATE(3728)] = 204023, - [SMALL_STATE(3729)] = 204097, - [SMALL_STATE(3730)] = 204167, - [SMALL_STATE(3731)] = 204239, - [SMALL_STATE(3732)] = 204311, - [SMALL_STATE(3733)] = 204383, - [SMALL_STATE(3734)] = 204455, - [SMALL_STATE(3735)] = 204527, - [SMALL_STATE(3736)] = 204597, - [SMALL_STATE(3737)] = 204667, - [SMALL_STATE(3738)] = 204739, - [SMALL_STATE(3739)] = 204811, - [SMALL_STATE(3740)] = 204883, - [SMALL_STATE(3741)] = 204953, - [SMALL_STATE(3742)] = 205025, - [SMALL_STATE(3743)] = 205097, - [SMALL_STATE(3744)] = 205171, - [SMALL_STATE(3745)] = 205243, - [SMALL_STATE(3746)] = 205315, - [SMALL_STATE(3747)] = 205363, - [SMALL_STATE(3748)] = 205433, - [SMALL_STATE(3749)] = 205505, - [SMALL_STATE(3750)] = 205577, - [SMALL_STATE(3751)] = 205647, - [SMALL_STATE(3752)] = 205719, - [SMALL_STATE(3753)] = 205791, - [SMALL_STATE(3754)] = 205863, - [SMALL_STATE(3755)] = 205935, - [SMALL_STATE(3756)] = 206007, - [SMALL_STATE(3757)] = 206079, - [SMALL_STATE(3758)] = 206151, - [SMALL_STATE(3759)] = 206223, - [SMALL_STATE(3760)] = 206293, - [SMALL_STATE(3761)] = 206365, - [SMALL_STATE(3762)] = 206435, - [SMALL_STATE(3763)] = 206507, - [SMALL_STATE(3764)] = 206579, - [SMALL_STATE(3765)] = 206651, - [SMALL_STATE(3766)] = 206723, - [SMALL_STATE(3767)] = 206795, - [SMALL_STATE(3768)] = 206865, - [SMALL_STATE(3769)] = 206935, - [SMALL_STATE(3770)] = 207007, - [SMALL_STATE(3771)] = 207079, - [SMALL_STATE(3772)] = 207151, - [SMALL_STATE(3773)] = 207225, - [SMALL_STATE(3774)] = 207297, - [SMALL_STATE(3775)] = 207345, - [SMALL_STATE(3776)] = 207393, - [SMALL_STATE(3777)] = 207465, - [SMALL_STATE(3778)] = 207513, - [SMALL_STATE(3779)] = 207585, - [SMALL_STATE(3780)] = 207657, - [SMALL_STATE(3781)] = 207729, - [SMALL_STATE(3782)] = 207801, - [SMALL_STATE(3783)] = 207849, - [SMALL_STATE(3784)] = 207921, - [SMALL_STATE(3785)] = 207993, - [SMALL_STATE(3786)] = 208041, - [SMALL_STATE(3787)] = 208113, - [SMALL_STATE(3788)] = 208185, - [SMALL_STATE(3789)] = 208257, - [SMALL_STATE(3790)] = 208331, - [SMALL_STATE(3791)] = 208405, - [SMALL_STATE(3792)] = 208477, - [SMALL_STATE(3793)] = 208549, - [SMALL_STATE(3794)] = 208621, - [SMALL_STATE(3795)] = 208693, - [SMALL_STATE(3796)] = 208767, - [SMALL_STATE(3797)] = 208815, - [SMALL_STATE(3798)] = 208882, - [SMALL_STATE(3799)] = 208949, - [SMALL_STATE(3800)] = 209016, - [SMALL_STATE(3801)] = 209061, - [SMALL_STATE(3802)] = 209128, - [SMALL_STATE(3803)] = 209195, - [SMALL_STATE(3804)] = 209262, - [SMALL_STATE(3805)] = 209329, - [SMALL_STATE(3806)] = 209396, - [SMALL_STATE(3807)] = 209463, - [SMALL_STATE(3808)] = 209530, - [SMALL_STATE(3809)] = 209597, - [SMALL_STATE(3810)] = 209664, - [SMALL_STATE(3811)] = 209731, - [SMALL_STATE(3812)] = 209798, - [SMALL_STATE(3813)] = 209865, - [SMALL_STATE(3814)] = 209932, - [SMALL_STATE(3815)] = 209999, - [SMALL_STATE(3816)] = 210066, - [SMALL_STATE(3817)] = 210133, - [SMALL_STATE(3818)] = 210200, - [SMALL_STATE(3819)] = 210267, - [SMALL_STATE(3820)] = 210334, - [SMALL_STATE(3821)] = 210401, - [SMALL_STATE(3822)] = 210468, - [SMALL_STATE(3823)] = 210535, - [SMALL_STATE(3824)] = 210602, - [SMALL_STATE(3825)] = 210669, - [SMALL_STATE(3826)] = 210736, - [SMALL_STATE(3827)] = 210803, - [SMALL_STATE(3828)] = 210870, - [SMALL_STATE(3829)] = 210937, - [SMALL_STATE(3830)] = 211004, - [SMALL_STATE(3831)] = 211071, - [SMALL_STATE(3832)] = 211138, - [SMALL_STATE(3833)] = 211205, - [SMALL_STATE(3834)] = 211272, - [SMALL_STATE(3835)] = 211339, - [SMALL_STATE(3836)] = 211406, - [SMALL_STATE(3837)] = 211473, - [SMALL_STATE(3838)] = 211540, - [SMALL_STATE(3839)] = 211607, - [SMALL_STATE(3840)] = 211674, - [SMALL_STATE(3841)] = 211741, - [SMALL_STATE(3842)] = 211812, - [SMALL_STATE(3843)] = 211879, - [SMALL_STATE(3844)] = 211946, - [SMALL_STATE(3845)] = 212017, - [SMALL_STATE(3846)] = 212084, - [SMALL_STATE(3847)] = 212151, - [SMALL_STATE(3848)] = 212218, - [SMALL_STATE(3849)] = 212285, - [SMALL_STATE(3850)] = 212352, - [SMALL_STATE(3851)] = 212419, - [SMALL_STATE(3852)] = 212490, - [SMALL_STATE(3853)] = 212557, - [SMALL_STATE(3854)] = 212624, - [SMALL_STATE(3855)] = 212691, - [SMALL_STATE(3856)] = 212766, - [SMALL_STATE(3857)] = 212833, - [SMALL_STATE(3858)] = 212904, - [SMALL_STATE(3859)] = 212975, - [SMALL_STATE(3860)] = 213046, - [SMALL_STATE(3861)] = 213117, - [SMALL_STATE(3862)] = 213188, - [SMALL_STATE(3863)] = 213255, - [SMALL_STATE(3864)] = 213322, - [SMALL_STATE(3865)] = 213393, - [SMALL_STATE(3866)] = 213460, - [SMALL_STATE(3867)] = 213527, - [SMALL_STATE(3868)] = 213594, - [SMALL_STATE(3869)] = 213661, - [SMALL_STATE(3870)] = 213728, - [SMALL_STATE(3871)] = 213795, - [SMALL_STATE(3872)] = 213862, - [SMALL_STATE(3873)] = 213933, - [SMALL_STATE(3874)] = 214004, - [SMALL_STATE(3875)] = 214075, - [SMALL_STATE(3876)] = 214146, - [SMALL_STATE(3877)] = 214217, - [SMALL_STATE(3878)] = 214288, - [SMALL_STATE(3879)] = 214355, - [SMALL_STATE(3880)] = 214422, - [SMALL_STATE(3881)] = 214489, - [SMALL_STATE(3882)] = 214556, - [SMALL_STATE(3883)] = 214623, - [SMALL_STATE(3884)] = 214694, - [SMALL_STATE(3885)] = 214761, - [SMALL_STATE(3886)] = 214832, - [SMALL_STATE(3887)] = 214903, - [SMALL_STATE(3888)] = 214974, - [SMALL_STATE(3889)] = 215045, - [SMALL_STATE(3890)] = 215112, - [SMALL_STATE(3891)] = 215179, - [SMALL_STATE(3892)] = 215246, - [SMALL_STATE(3893)] = 215313, - [SMALL_STATE(3894)] = 215384, - [SMALL_STATE(3895)] = 215455, - [SMALL_STATE(3896)] = 215526, - [SMALL_STATE(3897)] = 215597, - [SMALL_STATE(3898)] = 215668, - [SMALL_STATE(3899)] = 215735, - [SMALL_STATE(3900)] = 215806, - [SMALL_STATE(3901)] = 215873, - [SMALL_STATE(3902)] = 215940, - [SMALL_STATE(3903)] = 216007, - [SMALL_STATE(3904)] = 216074, - [SMALL_STATE(3905)] = 216117, - [SMALL_STATE(3906)] = 216174, - [SMALL_STATE(3907)] = 216241, - [SMALL_STATE(3908)] = 216312, - [SMALL_STATE(3909)] = 216383, - [SMALL_STATE(3910)] = 216450, - [SMALL_STATE(3911)] = 216517, - [SMALL_STATE(3912)] = 216584, - [SMALL_STATE(3913)] = 216651, - [SMALL_STATE(3914)] = 216722, - [SMALL_STATE(3915)] = 216789, - [SMALL_STATE(3916)] = 216856, - [SMALL_STATE(3917)] = 216923, - [SMALL_STATE(3918)] = 216990, - [SMALL_STATE(3919)] = 217057, - [SMALL_STATE(3920)] = 217128, - [SMALL_STATE(3921)] = 217195, - [SMALL_STATE(3922)] = 217266, - [SMALL_STATE(3923)] = 217333, - [SMALL_STATE(3924)] = 217400, - [SMALL_STATE(3925)] = 217467, - [SMALL_STATE(3926)] = 217534, - [SMALL_STATE(3927)] = 217601, - [SMALL_STATE(3928)] = 217668, - [SMALL_STATE(3929)] = 217735, - [SMALL_STATE(3930)] = 217802, - [SMALL_STATE(3931)] = 217873, - [SMALL_STATE(3932)] = 217940, - [SMALL_STATE(3933)] = 218007, - [SMALL_STATE(3934)] = 218078, - [SMALL_STATE(3935)] = 218145, - [SMALL_STATE(3936)] = 218212, - [SMALL_STATE(3937)] = 218279, - [SMALL_STATE(3938)] = 218346, - [SMALL_STATE(3939)] = 218413, - [SMALL_STATE(3940)] = 218480, - [SMALL_STATE(3941)] = 218551, - [SMALL_STATE(3942)] = 218618, - [SMALL_STATE(3943)] = 218689, - [SMALL_STATE(3944)] = 218756, - [SMALL_STATE(3945)] = 218823, - [SMALL_STATE(3946)] = 218890, - [SMALL_STATE(3947)] = 218957, - [SMALL_STATE(3948)] = 219024, - [SMALL_STATE(3949)] = 219091, - [SMALL_STATE(3950)] = 219158, - [SMALL_STATE(3951)] = 219225, - [SMALL_STATE(3952)] = 219292, - [SMALL_STATE(3953)] = 219359, - [SMALL_STATE(3954)] = 219430, - [SMALL_STATE(3955)] = 219495, - [SMALL_STATE(3956)] = 219566, - [SMALL_STATE(3957)] = 219633, - [SMALL_STATE(3958)] = 219700, - [SMALL_STATE(3959)] = 219767, - [SMALL_STATE(3960)] = 219834, - [SMALL_STATE(3961)] = 219901, - [SMALL_STATE(3962)] = 219968, - [SMALL_STATE(3963)] = 220039, - [SMALL_STATE(3964)] = 220106, - [SMALL_STATE(3965)] = 220177, - [SMALL_STATE(3966)] = 220244, - [SMALL_STATE(3967)] = 220311, - [SMALL_STATE(3968)] = 220378, - [SMALL_STATE(3969)] = 220449, - [SMALL_STATE(3970)] = 220516, - [SMALL_STATE(3971)] = 220583, - [SMALL_STATE(3972)] = 220650, - [SMALL_STATE(3973)] = 220721, - [SMALL_STATE(3974)] = 220788, - [SMALL_STATE(3975)] = 220855, - [SMALL_STATE(3976)] = 220926, - [SMALL_STATE(3977)] = 220993, - [SMALL_STATE(3978)] = 221060, - [SMALL_STATE(3979)] = 221127, - [SMALL_STATE(3980)] = 221194, - [SMALL_STATE(3981)] = 221261, - [SMALL_STATE(3982)] = 221328, - [SMALL_STATE(3983)] = 221399, - [SMALL_STATE(3984)] = 221466, - [SMALL_STATE(3985)] = 221537, - [SMALL_STATE(3986)] = 221604, - [SMALL_STATE(3987)] = 221671, - [SMALL_STATE(3988)] = 221738, - [SMALL_STATE(3989)] = 221805, - [SMALL_STATE(3990)] = 221872, - [SMALL_STATE(3991)] = 221939, - [SMALL_STATE(3992)] = 222006, - [SMALL_STATE(3993)] = 222077, - [SMALL_STATE(3994)] = 222148, - [SMALL_STATE(3995)] = 222215, - [SMALL_STATE(3996)] = 222282, - [SMALL_STATE(3997)] = 222349, - [SMALL_STATE(3998)] = 222416, - [SMALL_STATE(3999)] = 222487, - [SMALL_STATE(4000)] = 222554, - [SMALL_STATE(4001)] = 222621, - [SMALL_STATE(4002)] = 222692, - [SMALL_STATE(4003)] = 222735, - [SMALL_STATE(4004)] = 222802, - [SMALL_STATE(4005)] = 222869, - [SMALL_STATE(4006)] = 222936, - [SMALL_STATE(4007)] = 223003, - [SMALL_STATE(4008)] = 223070, - [SMALL_STATE(4009)] = 223141, - [SMALL_STATE(4010)] = 223212, - [SMALL_STATE(4011)] = 223279, - [SMALL_STATE(4012)] = 223346, - [SMALL_STATE(4013)] = 223413, - [SMALL_STATE(4014)] = 223484, - [SMALL_STATE(4015)] = 223541, - [SMALL_STATE(4016)] = 223612, - [SMALL_STATE(4017)] = 223679, - [SMALL_STATE(4018)] = 223746, - [SMALL_STATE(4019)] = 223817, - [SMALL_STATE(4020)] = 223884, - [SMALL_STATE(4021)] = 223951, - [SMALL_STATE(4022)] = 224018, - [SMALL_STATE(4023)] = 224089, - [SMALL_STATE(4024)] = 224156, - [SMALL_STATE(4025)] = 224223, - [SMALL_STATE(4026)] = 224266, - [SMALL_STATE(4027)] = 224337, - [SMALL_STATE(4028)] = 224404, - [SMALL_STATE(4029)] = 224475, - [SMALL_STATE(4030)] = 224542, - [SMALL_STATE(4031)] = 224609, - [SMALL_STATE(4032)] = 224676, - [SMALL_STATE(4033)] = 224747, - [SMALL_STATE(4034)] = 224814, - [SMALL_STATE(4035)] = 224885, - [SMALL_STATE(4036)] = 224952, - [SMALL_STATE(4037)] = 225019, - [SMALL_STATE(4038)] = 225086, - [SMALL_STATE(4039)] = 225153, - [SMALL_STATE(4040)] = 225220, - [SMALL_STATE(4041)] = 225287, - [SMALL_STATE(4042)] = 225354, - [SMALL_STATE(4043)] = 225421, - [SMALL_STATE(4044)] = 225488, - [SMALL_STATE(4045)] = 225555, - [SMALL_STATE(4046)] = 225622, - [SMALL_STATE(4047)] = 225689, - [SMALL_STATE(4048)] = 225756, - [SMALL_STATE(4049)] = 225823, - [SMALL_STATE(4050)] = 225894, - [SMALL_STATE(4051)] = 225961, - [SMALL_STATE(4052)] = 226028, - [SMALL_STATE(4053)] = 226095, - [SMALL_STATE(4054)] = 226162, - [SMALL_STATE(4055)] = 226229, - [SMALL_STATE(4056)] = 226296, - [SMALL_STATE(4057)] = 226363, - [SMALL_STATE(4058)] = 226430, - [SMALL_STATE(4059)] = 226497, - [SMALL_STATE(4060)] = 226568, - [SMALL_STATE(4061)] = 226635, - [SMALL_STATE(4062)] = 226702, - [SMALL_STATE(4063)] = 226769, - [SMALL_STATE(4064)] = 226836, - [SMALL_STATE(4065)] = 226903, - [SMALL_STATE(4066)] = 226970, - [SMALL_STATE(4067)] = 227037, - [SMALL_STATE(4068)] = 227104, - [SMALL_STATE(4069)] = 227175, - [SMALL_STATE(4070)] = 227250, - [SMALL_STATE(4071)] = 227317, - [SMALL_STATE(4072)] = 227384, - [SMALL_STATE(4073)] = 227451, - [SMALL_STATE(4074)] = 227518, - [SMALL_STATE(4075)] = 227585, - [SMALL_STATE(4076)] = 227652, - [SMALL_STATE(4077)] = 227719, - [SMALL_STATE(4078)] = 227786, - [SMALL_STATE(4079)] = 227853, - [SMALL_STATE(4080)] = 227920, - [SMALL_STATE(4081)] = 227987, - [SMALL_STATE(4082)] = 228054, - [SMALL_STATE(4083)] = 228121, - [SMALL_STATE(4084)] = 228188, - [SMALL_STATE(4085)] = 228255, - [SMALL_STATE(4086)] = 228322, - [SMALL_STATE(4087)] = 228389, - [SMALL_STATE(4088)] = 228456, - [SMALL_STATE(4089)] = 228523, - [SMALL_STATE(4090)] = 228590, - [SMALL_STATE(4091)] = 228661, - [SMALL_STATE(4092)] = 228728, - [SMALL_STATE(4093)] = 228799, - [SMALL_STATE(4094)] = 228866, - [SMALL_STATE(4095)] = 228937, - [SMALL_STATE(4096)] = 229008, - [SMALL_STATE(4097)] = 229075, - [SMALL_STATE(4098)] = 229142, - [SMALL_STATE(4099)] = 229213, - [SMALL_STATE(4100)] = 229288, - [SMALL_STATE(4101)] = 229355, - [SMALL_STATE(4102)] = 229422, - [SMALL_STATE(4103)] = 229489, - [SMALL_STATE(4104)] = 229556, - [SMALL_STATE(4105)] = 229623, - [SMALL_STATE(4106)] = 229694, - [SMALL_STATE(4107)] = 229761, - [SMALL_STATE(4108)] = 229828, - [SMALL_STATE(4109)] = 229895, - [SMALL_STATE(4110)] = 229962, - [SMALL_STATE(4111)] = 230029, - [SMALL_STATE(4112)] = 230100, - [SMALL_STATE(4113)] = 230167, - [SMALL_STATE(4114)] = 230234, - [SMALL_STATE(4115)] = 230301, - [SMALL_STATE(4116)] = 230368, - [SMALL_STATE(4117)] = 230435, - [SMALL_STATE(4118)] = 230502, - [SMALL_STATE(4119)] = 230569, - [SMALL_STATE(4120)] = 230640, - [SMALL_STATE(4121)] = 230707, - [SMALL_STATE(4122)] = 230778, - [SMALL_STATE(4123)] = 230845, - [SMALL_STATE(4124)] = 230912, - [SMALL_STATE(4125)] = 230983, - [SMALL_STATE(4126)] = 231054, - [SMALL_STATE(4127)] = 231125, - [SMALL_STATE(4128)] = 231200, - [SMALL_STATE(4129)] = 231267, - [SMALL_STATE(4130)] = 231334, - [SMALL_STATE(4131)] = 231401, - [SMALL_STATE(4132)] = 231468, - [SMALL_STATE(4133)] = 231539, - [SMALL_STATE(4134)] = 231581, - [SMALL_STATE(4135)] = 231623, - [SMALL_STATE(4136)] = 231665, - [SMALL_STATE(4137)] = 231707, - [SMALL_STATE(4138)] = 231749, - [SMALL_STATE(4139)] = 231791, - [SMALL_STATE(4140)] = 231833, - [SMALL_STATE(4141)] = 231889, - [SMALL_STATE(4142)] = 231935, - [SMALL_STATE(4143)] = 231977, - [SMALL_STATE(4144)] = 232019, - [SMALL_STATE(4145)] = 232061, - [SMALL_STATE(4146)] = 232103, - [SMALL_STATE(4147)] = 232147, - [SMALL_STATE(4148)] = 232189, - [SMALL_STATE(4149)] = 232231, - [SMALL_STATE(4150)] = 232303, - [SMALL_STATE(4151)] = 232359, - [SMALL_STATE(4152)] = 232431, - [SMALL_STATE(4153)] = 232477, - [SMALL_STATE(4154)] = 232519, - [SMALL_STATE(4155)] = 232591, - [SMALL_STATE(4156)] = 232633, - [SMALL_STATE(4157)] = 232675, - [SMALL_STATE(4158)] = 232717, - [SMALL_STATE(4159)] = 232759, - [SMALL_STATE(4160)] = 232801, - [SMALL_STATE(4161)] = 232847, - [SMALL_STATE(4162)] = 232889, - [SMALL_STATE(4163)] = 232931, - [SMALL_STATE(4164)] = 232973, - [SMALL_STATE(4165)] = 233019, - [SMALL_STATE(4166)] = 233061, - [SMALL_STATE(4167)] = 233103, - [SMALL_STATE(4168)] = 233138, - [SMALL_STATE(4169)] = 233179, - [SMALL_STATE(4170)] = 233220, - [SMALL_STATE(4171)] = 233255, - [SMALL_STATE(4172)] = 233290, - [SMALL_STATE(4173)] = 233331, - [SMALL_STATE(4174)] = 233366, - [SMALL_STATE(4175)] = 233407, - [SMALL_STATE(4176)] = 233446, - [SMALL_STATE(4177)] = 233481, - [SMALL_STATE(4178)] = 233516, - [SMALL_STATE(4179)] = 233551, - [SMALL_STATE(4180)] = 233592, - [SMALL_STATE(4181)] = 233643, - [SMALL_STATE(4182)] = 233682, - [SMALL_STATE(4183)] = 233727, - [SMALL_STATE(4184)] = 233762, - [SMALL_STATE(4185)] = 233799, - [SMALL_STATE(4186)] = 233840, - [SMALL_STATE(4187)] = 233885, - [SMALL_STATE(4188)] = 233920, - [SMALL_STATE(4189)] = 233955, - [SMALL_STATE(4190)] = 233990, - [SMALL_STATE(4191)] = 234025, - [SMALL_STATE(4192)] = 234060, - [SMALL_STATE(4193)] = 234095, - [SMALL_STATE(4194)] = 234136, - [SMALL_STATE(4195)] = 234177, - [SMALL_STATE(4196)] = 234212, - [SMALL_STATE(4197)] = 234247, - [SMALL_STATE(4198)] = 234282, - [SMALL_STATE(4199)] = 234321, - [SMALL_STATE(4200)] = 234356, - [SMALL_STATE(4201)] = 234391, - [SMALL_STATE(4202)] = 234426, - [SMALL_STATE(4203)] = 234481, - [SMALL_STATE(4204)] = 234516, - [SMALL_STATE(4205)] = 234557, - [SMALL_STATE(4206)] = 234598, - [SMALL_STATE(4207)] = 234633, - [SMALL_STATE(4208)] = 234668, - [SMALL_STATE(4209)] = 234703, - [SMALL_STATE(4210)] = 234738, - [SMALL_STATE(4211)] = 234779, - [SMALL_STATE(4212)] = 234820, - [SMALL_STATE(4213)] = 234861, - [SMALL_STATE(4214)] = 234900, - [SMALL_STATE(4215)] = 234941, - [SMALL_STATE(4216)] = 234978, - [SMALL_STATE(4217)] = 235013, - [SMALL_STATE(4218)] = 235058, - [SMALL_STATE(4219)] = 235093, - [SMALL_STATE(4220)] = 235128, - [SMALL_STATE(4221)] = 235163, - [SMALL_STATE(4222)] = 235204, - [SMALL_STATE(4223)] = 235245, - [SMALL_STATE(4224)] = 235284, - [SMALL_STATE(4225)] = 235319, - [SMALL_STATE(4226)] = 235374, - [SMALL_STATE(4227)] = 235409, - [SMALL_STATE(4228)] = 235444, - [SMALL_STATE(4229)] = 235479, - [SMALL_STATE(4230)] = 235514, - [SMALL_STATE(4231)] = 235555, - [SMALL_STATE(4232)] = 235590, - [SMALL_STATE(4233)] = 235625, - [SMALL_STATE(4234)] = 235662, - [SMALL_STATE(4235)] = 235703, - [SMALL_STATE(4236)] = 235744, - [SMALL_STATE(4237)] = 235783, - [SMALL_STATE(4238)] = 235824, - [SMALL_STATE(4239)] = 235863, - [SMALL_STATE(4240)] = 235904, - [SMALL_STATE(4241)] = 235939, - [SMALL_STATE(4242)] = 235974, - [SMALL_STATE(4243)] = 236009, - [SMALL_STATE(4244)] = 236044, - [SMALL_STATE(4245)] = 236085, - [SMALL_STATE(4246)] = 236124, - [SMALL_STATE(4247)] = 236169, - [SMALL_STATE(4248)] = 236210, - [SMALL_STATE(4249)] = 236245, - [SMALL_STATE(4250)] = 236280, - [SMALL_STATE(4251)] = 236315, - [SMALL_STATE(4252)] = 236356, - [SMALL_STATE(4253)] = 236391, - [SMALL_STATE(4254)] = 236430, - [SMALL_STATE(4255)] = 236471, - [SMALL_STATE(4256)] = 236506, - [SMALL_STATE(4257)] = 236547, - [SMALL_STATE(4258)] = 236582, - [SMALL_STATE(4259)] = 236623, - [SMALL_STATE(4260)] = 236658, - [SMALL_STATE(4261)] = 236697, - [SMALL_STATE(4262)] = 236732, - [SMALL_STATE(4263)] = 236773, - [SMALL_STATE(4264)] = 236808, - [SMALL_STATE(4265)] = 236843, - [SMALL_STATE(4266)] = 236882, - [SMALL_STATE(4267)] = 236917, - [SMALL_STATE(4268)] = 236952, - [SMALL_STATE(4269)] = 236993, - [SMALL_STATE(4270)] = 237038, - [SMALL_STATE(4271)] = 237073, - [SMALL_STATE(4272)] = 237108, - [SMALL_STATE(4273)] = 237151, - [SMALL_STATE(4274)] = 237186, - [SMALL_STATE(4275)] = 237223, - [SMALL_STATE(4276)] = 237260, - [SMALL_STATE(4277)] = 237295, - [SMALL_STATE(4278)] = 237330, - [SMALL_STATE(4279)] = 237365, - [SMALL_STATE(4280)] = 237420, - [SMALL_STATE(4281)] = 237455, - [SMALL_STATE(4282)] = 237496, - [SMALL_STATE(4283)] = 237531, - [SMALL_STATE(4284)] = 237566, - [SMALL_STATE(4285)] = 237601, - [SMALL_STATE(4286)] = 237642, - [SMALL_STATE(4287)] = 237687, - [SMALL_STATE(4288)] = 237742, - [SMALL_STATE(4289)] = 237787, - [SMALL_STATE(4290)] = 237828, - [SMALL_STATE(4291)] = 237869, - [SMALL_STATE(4292)] = 237908, - [SMALL_STATE(4293)] = 237949, - [SMALL_STATE(4294)] = 238000, - [SMALL_STATE(4295)] = 238039, - [SMALL_STATE(4296)] = 238074, - [SMALL_STATE(4297)] = 238109, - [SMALL_STATE(4298)] = 238150, - [SMALL_STATE(4299)] = 238185, - [SMALL_STATE(4300)] = 238220, - [SMALL_STATE(4301)] = 238261, - [SMALL_STATE(4302)] = 238296, - [SMALL_STATE(4303)] = 238337, - [SMALL_STATE(4304)] = 238378, - [SMALL_STATE(4305)] = 238413, - [SMALL_STATE(4306)] = 238456, - [SMALL_STATE(4307)] = 238491, - [SMALL_STATE(4308)] = 238546, - [SMALL_STATE(4309)] = 238581, - [SMALL_STATE(4310)] = 238616, - [SMALL_STATE(4311)] = 238671, - [SMALL_STATE(4312)] = 238712, - [SMALL_STATE(4313)] = 238747, - [SMALL_STATE(4314)] = 238790, - [SMALL_STATE(4315)] = 238825, - [SMALL_STATE(4316)] = 238866, - [SMALL_STATE(4317)] = 238901, - [SMALL_STATE(4318)] = 238940, - [SMALL_STATE(4319)] = 238979, - [SMALL_STATE(4320)] = 239014, - [SMALL_STATE(4321)] = 239049, - [SMALL_STATE(4322)] = 239093, - [SMALL_STATE(4323)] = 239133, - [SMALL_STATE(4324)] = 239173, - [SMALL_STATE(4325)] = 239213, - [SMALL_STATE(4326)] = 239253, - [SMALL_STATE(4327)] = 239293, - [SMALL_STATE(4328)] = 239327, - [SMALL_STATE(4329)] = 239361, - [SMALL_STATE(4330)] = 239401, - [SMALL_STATE(4331)] = 239445, - [SMALL_STATE(4332)] = 239485, - [SMALL_STATE(4333)] = 239519, - [SMALL_STATE(4334)] = 239563, - [SMALL_STATE(4335)] = 239603, - [SMALL_STATE(4336)] = 239655, - [SMALL_STATE(4337)] = 239693, - [SMALL_STATE(4338)] = 239745, - [SMALL_STATE(4339)] = 239779, - [SMALL_STATE(4340)] = 239813, - [SMALL_STATE(4341)] = 239853, - [SMALL_STATE(4342)] = 239893, - [SMALL_STATE(4343)] = 239933, - [SMALL_STATE(4344)] = 239973, - [SMALL_STATE(4345)] = 240013, - [SMALL_STATE(4346)] = 240053, - [SMALL_STATE(4347)] = 240091, - [SMALL_STATE(4348)] = 240129, - [SMALL_STATE(4349)] = 240167, - [SMALL_STATE(4350)] = 240201, - [SMALL_STATE(4351)] = 240239, - [SMALL_STATE(4352)] = 240273, - [SMALL_STATE(4353)] = 240307, - [SMALL_STATE(4354)] = 240345, - [SMALL_STATE(4355)] = 240385, - [SMALL_STATE(4356)] = 240419, - [SMALL_STATE(4357)] = 240457, - [SMALL_STATE(4358)] = 240491, - [SMALL_STATE(4359)] = 240535, - [SMALL_STATE(4360)] = 240569, - [SMALL_STATE(4361)] = 240603, - [SMALL_STATE(4362)] = 240653, - [SMALL_STATE(4363)] = 240687, - [SMALL_STATE(4364)] = 240731, - [SMALL_STATE(4365)] = 240765, - [SMALL_STATE(4366)] = 240809, - [SMALL_STATE(4367)] = 240843, - [SMALL_STATE(4368)] = 240877, - [SMALL_STATE(4369)] = 240915, - [SMALL_STATE(4370)] = 240955, - [SMALL_STATE(4371)] = 240995, - [SMALL_STATE(4372)] = 241033, - [SMALL_STATE(4373)] = 241067, - [SMALL_STATE(4374)] = 241107, - [SMALL_STATE(4375)] = 241147, - [SMALL_STATE(4376)] = 241187, - [SMALL_STATE(4377)] = 241225, - [SMALL_STATE(4378)] = 241259, - [SMALL_STATE(4379)] = 241299, - [SMALL_STATE(4380)] = 241351, - [SMALL_STATE(4381)] = 241385, - [SMALL_STATE(4382)] = 241419, - [SMALL_STATE(4383)] = 241459, - [SMALL_STATE(4384)] = 241493, - [SMALL_STATE(4385)] = 241527, - [SMALL_STATE(4386)] = 241561, - [SMALL_STATE(4387)] = 241595, - [SMALL_STATE(4388)] = 241633, - [SMALL_STATE(4389)] = 241677, - [SMALL_STATE(4390)] = 241711, - [SMALL_STATE(4391)] = 241747, - [SMALL_STATE(4392)] = 241781, - [SMALL_STATE(4393)] = 241815, - [SMALL_STATE(4394)] = 241849, - [SMALL_STATE(4395)] = 241883, - [SMALL_STATE(4396)] = 241917, - [SMALL_STATE(4397)] = 241951, - [SMALL_STATE(4398)] = 241985, - [SMALL_STATE(4399)] = 242019, - [SMALL_STATE(4400)] = 242053, - [SMALL_STATE(4401)] = 242091, - [SMALL_STATE(4402)] = 242125, - [SMALL_STATE(4403)] = 242159, - [SMALL_STATE(4404)] = 242193, - [SMALL_STATE(4405)] = 242233, - [SMALL_STATE(4406)] = 242271, - [SMALL_STATE(4407)] = 242305, - [SMALL_STATE(4408)] = 242343, - [SMALL_STATE(4409)] = 242377, - [SMALL_STATE(4410)] = 242421, - [SMALL_STATE(4411)] = 242455, - [SMALL_STATE(4412)] = 242489, - [SMALL_STATE(4413)] = 242539, - [SMALL_STATE(4414)] = 242573, - [SMALL_STATE(4415)] = 242613, - [SMALL_STATE(4416)] = 242647, - [SMALL_STATE(4417)] = 242681, - [SMALL_STATE(4418)] = 242715, - [SMALL_STATE(4419)] = 242749, - [SMALL_STATE(4420)] = 242787, - [SMALL_STATE(4421)] = 242825, - [SMALL_STATE(4422)] = 242865, - [SMALL_STATE(4423)] = 242905, - [SMALL_STATE(4424)] = 242939, - [SMALL_STATE(4425)] = 242973, - [SMALL_STATE(4426)] = 243007, - [SMALL_STATE(4427)] = 243041, - [SMALL_STATE(4428)] = 243075, - [SMALL_STATE(4429)] = 243109, - [SMALL_STATE(4430)] = 243147, - [SMALL_STATE(4431)] = 243187, - [SMALL_STATE(4432)] = 243227, - [SMALL_STATE(4433)] = 243267, - [SMALL_STATE(4434)] = 243301, - [SMALL_STATE(4435)] = 243335, - [SMALL_STATE(4436)] = 243369, - [SMALL_STATE(4437)] = 243409, - [SMALL_STATE(4438)] = 243451, - [SMALL_STATE(4439)] = 243491, - [SMALL_STATE(4440)] = 243531, - [SMALL_STATE(4441)] = 243571, - [SMALL_STATE(4442)] = 243611, - [SMALL_STATE(4443)] = 243649, - [SMALL_STATE(4444)] = 243683, - [SMALL_STATE(4445)] = 243717, - [SMALL_STATE(4446)] = 243751, - [SMALL_STATE(4447)] = 243785, - [SMALL_STATE(4448)] = 243819, - [SMALL_STATE(4449)] = 243853, - [SMALL_STATE(4450)] = 243887, - [SMALL_STATE(4451)] = 243921, - [SMALL_STATE(4452)] = 243955, - [SMALL_STATE(4453)] = 243999, - [SMALL_STATE(4454)] = 244039, - [SMALL_STATE(4455)] = 244079, - [SMALL_STATE(4456)] = 244119, - [SMALL_STATE(4457)] = 244159, - [SMALL_STATE(4458)] = 244193, - [SMALL_STATE(4459)] = 244233, - [SMALL_STATE(4460)] = 244273, - [SMALL_STATE(4461)] = 244313, - [SMALL_STATE(4462)] = 244353, - [SMALL_STATE(4463)] = 244387, - [SMALL_STATE(4464)] = 244421, - [SMALL_STATE(4465)] = 244455, - [SMALL_STATE(4466)] = 244489, - [SMALL_STATE(4467)] = 244523, - [SMALL_STATE(4468)] = 244557, - [SMALL_STATE(4469)] = 244591, - [SMALL_STATE(4470)] = 244625, - [SMALL_STATE(4471)] = 244659, - [SMALL_STATE(4472)] = 244693, - [SMALL_STATE(4473)] = 244727, - [SMALL_STATE(4474)] = 244761, - [SMALL_STATE(4475)] = 244795, - [SMALL_STATE(4476)] = 244835, - [SMALL_STATE(4477)] = 244875, - [SMALL_STATE(4478)] = 244915, - [SMALL_STATE(4479)] = 244959, - [SMALL_STATE(4480)] = 244999, - [SMALL_STATE(4481)] = 245033, - [SMALL_STATE(4482)] = 245067, - [SMALL_STATE(4483)] = 245107, - [SMALL_STATE(4484)] = 245141, - [SMALL_STATE(4485)] = 245175, - [SMALL_STATE(4486)] = 245227, - [SMALL_STATE(4487)] = 245261, - [SMALL_STATE(4488)] = 245301, - [SMALL_STATE(4489)] = 245341, - [SMALL_STATE(4490)] = 245381, - [SMALL_STATE(4491)] = 245421, - [SMALL_STATE(4492)] = 245461, - [SMALL_STATE(4493)] = 245501, - [SMALL_STATE(4494)] = 245541, - [SMALL_STATE(4495)] = 245581, - [SMALL_STATE(4496)] = 245621, - [SMALL_STATE(4497)] = 245661, - [SMALL_STATE(4498)] = 245701, - [SMALL_STATE(4499)] = 245741, - [SMALL_STATE(4500)] = 245781, - [SMALL_STATE(4501)] = 245821, - [SMALL_STATE(4502)] = 245861, - [SMALL_STATE(4503)] = 245901, - [SMALL_STATE(4504)] = 245941, - [SMALL_STATE(4505)] = 245985, - [SMALL_STATE(4506)] = 246019, - [SMALL_STATE(4507)] = 246059, - [SMALL_STATE(4508)] = 246098, - [SMALL_STATE(4509)] = 246163, - [SMALL_STATE(4510)] = 246196, - [SMALL_STATE(4511)] = 246229, - [SMALL_STATE(4512)] = 246262, - [SMALL_STATE(4513)] = 246295, - [SMALL_STATE(4514)] = 246328, - [SMALL_STATE(4515)] = 246361, - [SMALL_STATE(4516)] = 246394, - [SMALL_STATE(4517)] = 246443, - [SMALL_STATE(4518)] = 246482, - [SMALL_STATE(4519)] = 246515, - [SMALL_STATE(4520)] = 246548, - [SMALL_STATE(4521)] = 246613, - [SMALL_STATE(4522)] = 246652, - [SMALL_STATE(4523)] = 246685, - [SMALL_STATE(4524)] = 246724, - [SMALL_STATE(4525)] = 246757, - [SMALL_STATE(4526)] = 246794, - [SMALL_STATE(4527)] = 246829, - [SMALL_STATE(4528)] = 246868, - [SMALL_STATE(4529)] = 246901, - [SMALL_STATE(4530)] = 246944, - [SMALL_STATE(4531)] = 246983, - [SMALL_STATE(4532)] = 247026, - [SMALL_STATE(4533)] = 247059, - [SMALL_STATE(4534)] = 247102, - [SMALL_STATE(4535)] = 247145, - [SMALL_STATE(4536)] = 247184, - [SMALL_STATE(4537)] = 247217, - [SMALL_STATE(4538)] = 247260, - [SMALL_STATE(4539)] = 247293, - [SMALL_STATE(4540)] = 247326, - [SMALL_STATE(4541)] = 247359, - [SMALL_STATE(4542)] = 247392, - [SMALL_STATE(4543)] = 247425, - [SMALL_STATE(4544)] = 247458, - [SMALL_STATE(4545)] = 247491, - [SMALL_STATE(4546)] = 247524, - [SMALL_STATE(4547)] = 247561, - [SMALL_STATE(4548)] = 247594, - [SMALL_STATE(4549)] = 247641, - [SMALL_STATE(4550)] = 247674, - [SMALL_STATE(4551)] = 247717, - [SMALL_STATE(4552)] = 247760, - [SMALL_STATE(4553)] = 247793, - [SMALL_STATE(4554)] = 247836, - [SMALL_STATE(4555)] = 247879, - [SMALL_STATE(4556)] = 247928, - [SMALL_STATE(4557)] = 247971, - [SMALL_STATE(4558)] = 248004, - [SMALL_STATE(4559)] = 248037, - [SMALL_STATE(4560)] = 248070, - [SMALL_STATE(4561)] = 248103, - [SMALL_STATE(4562)] = 248146, - [SMALL_STATE(4563)] = 248183, - [SMALL_STATE(4564)] = 248248, - [SMALL_STATE(4565)] = 248281, - [SMALL_STATE(4566)] = 248314, - [SMALL_STATE(4567)] = 248347, - [SMALL_STATE(4568)] = 248386, - [SMALL_STATE(4569)] = 248425, - [SMALL_STATE(4570)] = 248464, - [SMALL_STATE(4571)] = 248503, - [SMALL_STATE(4572)] = 248542, - [SMALL_STATE(4573)] = 248581, - [SMALL_STATE(4574)] = 248620, - [SMALL_STATE(4575)] = 248659, - [SMALL_STATE(4576)] = 248692, - [SMALL_STATE(4577)] = 248725, - [SMALL_STATE(4578)] = 248764, - [SMALL_STATE(4579)] = 248797, - [SMALL_STATE(4580)] = 248830, - [SMALL_STATE(4581)] = 248863, - [SMALL_STATE(4582)] = 248900, - [SMALL_STATE(4583)] = 248939, - [SMALL_STATE(4584)] = 248972, - [SMALL_STATE(4585)] = 249021, - [SMALL_STATE(4586)] = 249054, - [SMALL_STATE(4587)] = 249087, - [SMALL_STATE(4588)] = 249124, - [SMALL_STATE(4589)] = 249167, - [SMALL_STATE(4590)] = 249216, - [SMALL_STATE(4591)] = 249253, - [SMALL_STATE(4592)] = 249292, - [SMALL_STATE(4593)] = 249341, - [SMALL_STATE(4594)] = 249374, - [SMALL_STATE(4595)] = 249409, - [SMALL_STATE(4596)] = 249442, - [SMALL_STATE(4597)] = 249479, - [SMALL_STATE(4598)] = 249514, - [SMALL_STATE(4599)] = 249551, - [SMALL_STATE(4600)] = 249594, - [SMALL_STATE(4601)] = 249659, - [SMALL_STATE(4602)] = 249702, - [SMALL_STATE(4603)] = 249741, - [SMALL_STATE(4604)] = 249780, - [SMALL_STATE(4605)] = 249813, - [SMALL_STATE(4606)] = 249852, - [SMALL_STATE(4607)] = 249891, - [SMALL_STATE(4608)] = 249928, - [SMALL_STATE(4609)] = 249961, - [SMALL_STATE(4610)] = 249994, - [SMALL_STATE(4611)] = 250033, - [SMALL_STATE(4612)] = 250080, - [SMALL_STATE(4613)] = 250123, - [SMALL_STATE(4614)] = 250156, - [SMALL_STATE(4615)] = 250195, - [SMALL_STATE(4616)] = 250228, - [SMALL_STATE(4617)] = 250261, - [SMALL_STATE(4618)] = 250310, - [SMALL_STATE(4619)] = 250349, - [SMALL_STATE(4620)] = 250388, - [SMALL_STATE(4621)] = 250427, - [SMALL_STATE(4622)] = 250460, - [SMALL_STATE(4623)] = 250493, - [SMALL_STATE(4624)] = 250558, - [SMALL_STATE(4625)] = 250597, - [SMALL_STATE(4626)] = 250636, - [SMALL_STATE(4627)] = 250675, - [SMALL_STATE(4628)] = 250714, - [SMALL_STATE(4629)] = 250747, - [SMALL_STATE(4630)] = 250786, - [SMALL_STATE(4631)] = 250825, - [SMALL_STATE(4632)] = 250864, - [SMALL_STATE(4633)] = 250903, - [SMALL_STATE(4634)] = 250942, - [SMALL_STATE(4635)] = 250975, - [SMALL_STATE(4636)] = 251014, - [SMALL_STATE(4637)] = 251053, - [SMALL_STATE(4638)] = 251092, - [SMALL_STATE(4639)] = 251125, - [SMALL_STATE(4640)] = 251158, - [SMALL_STATE(4641)] = 251195, - [SMALL_STATE(4642)] = 251234, - [SMALL_STATE(4643)] = 251267, - [SMALL_STATE(4644)] = 251300, - [SMALL_STATE(4645)] = 251365, - [SMALL_STATE(4646)] = 251408, - [SMALL_STATE(4647)] = 251447, - [SMALL_STATE(4648)] = 251480, - [SMALL_STATE(4649)] = 251513, - [SMALL_STATE(4650)] = 251552, - [SMALL_STATE(4651)] = 251591, - [SMALL_STATE(4652)] = 251630, - [SMALL_STATE(4653)] = 251669, - [SMALL_STATE(4654)] = 251708, - [SMALL_STATE(4655)] = 251747, - [SMALL_STATE(4656)] = 251786, - [SMALL_STATE(4657)] = 251825, - [SMALL_STATE(4658)] = 251858, - [SMALL_STATE(4659)] = 251891, - [SMALL_STATE(4660)] = 251924, - [SMALL_STATE(4661)] = 251989, - [SMALL_STATE(4662)] = 252028, - [SMALL_STATE(4663)] = 252065, - [SMALL_STATE(4664)] = 252098, - [SMALL_STATE(4665)] = 252131, - [SMALL_STATE(4666)] = 252164, - [SMALL_STATE(4667)] = 252201, - [SMALL_STATE(4668)] = 252240, - [SMALL_STATE(4669)] = 252273, - [SMALL_STATE(4670)] = 252316, - [SMALL_STATE(4671)] = 252355, - [SMALL_STATE(4672)] = 252420, - [SMALL_STATE(4673)] = 252459, - [SMALL_STATE(4674)] = 252524, - [SMALL_STATE(4675)] = 252556, - [SMALL_STATE(4676)] = 252618, - [SMALL_STATE(4677)] = 252676, - [SMALL_STATE(4678)] = 252708, - [SMALL_STATE(4679)] = 252740, - [SMALL_STATE(4680)] = 252798, - [SMALL_STATE(4681)] = 252830, - [SMALL_STATE(4682)] = 252862, - [SMALL_STATE(4683)] = 252894, - [SMALL_STATE(4684)] = 252926, - [SMALL_STATE(4685)] = 252984, - [SMALL_STATE(4686)] = 253016, - [SMALL_STATE(4687)] = 253074, - [SMALL_STATE(4688)] = 253106, - [SMALL_STATE(4689)] = 253138, - [SMALL_STATE(4690)] = 253196, - [SMALL_STATE(4691)] = 253228, - [SMALL_STATE(4692)] = 253286, - [SMALL_STATE(4693)] = 253344, - [SMALL_STATE(4694)] = 253376, - [SMALL_STATE(4695)] = 253408, - [SMALL_STATE(4696)] = 253466, - [SMALL_STATE(4697)] = 253498, - [SMALL_STATE(4698)] = 253556, - [SMALL_STATE(4699)] = 253618, - [SMALL_STATE(4700)] = 253676, - [SMALL_STATE(4701)] = 253708, - [SMALL_STATE(4702)] = 253766, - [SMALL_STATE(4703)] = 253798, - [SMALL_STATE(4704)] = 253856, - [SMALL_STATE(4705)] = 253888, - [SMALL_STATE(4706)] = 253920, - [SMALL_STATE(4707)] = 253978, - [SMALL_STATE(4708)] = 254010, - [SMALL_STATE(4709)] = 254042, - [SMALL_STATE(4710)] = 254074, - [SMALL_STATE(4711)] = 254120, - [SMALL_STATE(4712)] = 254178, - [SMALL_STATE(4713)] = 254236, - [SMALL_STATE(4714)] = 254268, - [SMALL_STATE(4715)] = 254300, - [SMALL_STATE(4716)] = 254332, - [SMALL_STATE(4717)] = 254368, - [SMALL_STATE(4718)] = 254400, - [SMALL_STATE(4719)] = 254432, - [SMALL_STATE(4720)] = 254464, - [SMALL_STATE(4721)] = 254496, - [SMALL_STATE(4722)] = 254554, - [SMALL_STATE(4723)] = 254612, - [SMALL_STATE(4724)] = 254644, - [SMALL_STATE(4725)] = 254676, - [SMALL_STATE(4726)] = 254708, - [SMALL_STATE(4727)] = 254740, - [SMALL_STATE(4728)] = 254798, - [SMALL_STATE(4729)] = 254830, - [SMALL_STATE(4730)] = 254888, - [SMALL_STATE(4731)] = 254920, - [SMALL_STATE(4732)] = 254962, - [SMALL_STATE(4733)] = 254994, - [SMALL_STATE(4734)] = 255036, - [SMALL_STATE(4735)] = 255068, - [SMALL_STATE(4736)] = 255100, - [SMALL_STATE(4737)] = 255136, - [SMALL_STATE(4738)] = 255168, - [SMALL_STATE(4739)] = 255226, - [SMALL_STATE(4740)] = 255260, - [SMALL_STATE(4741)] = 255292, - [SMALL_STATE(4742)] = 255334, - [SMALL_STATE(4743)] = 255376, - [SMALL_STATE(4744)] = 255408, - [SMALL_STATE(4745)] = 255450, - [SMALL_STATE(4746)] = 255482, - [SMALL_STATE(4747)] = 255514, - [SMALL_STATE(4748)] = 255546, - [SMALL_STATE(4749)] = 255578, - [SMALL_STATE(4750)] = 255610, - [SMALL_STATE(4751)] = 255642, - [SMALL_STATE(4752)] = 255700, - [SMALL_STATE(4753)] = 255732, - [SMALL_STATE(4754)] = 255764, - [SMALL_STATE(4755)] = 255822, - [SMALL_STATE(4756)] = 255880, - [SMALL_STATE(4757)] = 255942, - [SMALL_STATE(4758)] = 256000, - [SMALL_STATE(4759)] = 256062, - [SMALL_STATE(4760)] = 256094, - [SMALL_STATE(4761)] = 256152, - [SMALL_STATE(4762)] = 256184, - [SMALL_STATE(4763)] = 256216, - [SMALL_STATE(4764)] = 256248, - [SMALL_STATE(4765)] = 256280, - [SMALL_STATE(4766)] = 256312, - [SMALL_STATE(4767)] = 256344, - [SMALL_STATE(4768)] = 256376, - [SMALL_STATE(4769)] = 256408, - [SMALL_STATE(4770)] = 256440, - [SMALL_STATE(4771)] = 256472, - [SMALL_STATE(4772)] = 256504, - [SMALL_STATE(4773)] = 256536, - [SMALL_STATE(4774)] = 256568, - [SMALL_STATE(4775)] = 256600, - [SMALL_STATE(4776)] = 256632, - [SMALL_STATE(4777)] = 256664, - [SMALL_STATE(4778)] = 256696, - [SMALL_STATE(4779)] = 256728, - [SMALL_STATE(4780)] = 256786, - [SMALL_STATE(4781)] = 256818, - [SMALL_STATE(4782)] = 256876, - [SMALL_STATE(4783)] = 256908, - [SMALL_STATE(4784)] = 256940, - [SMALL_STATE(4785)] = 256972, - [SMALL_STATE(4786)] = 257004, - [SMALL_STATE(4787)] = 257036, - [SMALL_STATE(4788)] = 257094, - [SMALL_STATE(4789)] = 257126, - [SMALL_STATE(4790)] = 257158, - [SMALL_STATE(4791)] = 257216, - [SMALL_STATE(4792)] = 257278, - [SMALL_STATE(4793)] = 257310, - [SMALL_STATE(4794)] = 257368, - [SMALL_STATE(4795)] = 257430, - [SMALL_STATE(4796)] = 257462, - [SMALL_STATE(4797)] = 257520, - [SMALL_STATE(4798)] = 257552, - [SMALL_STATE(4799)] = 257598, - [SMALL_STATE(4800)] = 257656, - [SMALL_STATE(4801)] = 257688, - [SMALL_STATE(4802)] = 257720, - [SMALL_STATE(4803)] = 257752, - [SMALL_STATE(4804)] = 257810, - [SMALL_STATE(4805)] = 257868, - [SMALL_STATE(4806)] = 257900, - [SMALL_STATE(4807)] = 257962, - [SMALL_STATE(4808)] = 258020, - [SMALL_STATE(4809)] = 258056, - [SMALL_STATE(4810)] = 258114, - [SMALL_STATE(4811)] = 258172, - [SMALL_STATE(4812)] = 258218, - [SMALL_STATE(4813)] = 258250, - [SMALL_STATE(4814)] = 258282, - [SMALL_STATE(4815)] = 258340, - [SMALL_STATE(4816)] = 258372, - [SMALL_STATE(4817)] = 258430, - [SMALL_STATE(4818)] = 258462, - [SMALL_STATE(4819)] = 258494, - [SMALL_STATE(4820)] = 258526, - [SMALL_STATE(4821)] = 258558, - [SMALL_STATE(4822)] = 258594, - [SMALL_STATE(4823)] = 258652, - [SMALL_STATE(4824)] = 258684, - [SMALL_STATE(4825)] = 258716, - [SMALL_STATE(4826)] = 258748, - [SMALL_STATE(4827)] = 258806, - [SMALL_STATE(4828)] = 258838, - [SMALL_STATE(4829)] = 258870, - [SMALL_STATE(4830)] = 258902, - [SMALL_STATE(4831)] = 258960, - [SMALL_STATE(4832)] = 258992, - [SMALL_STATE(4833)] = 259050, - [SMALL_STATE(4834)] = 259082, - [SMALL_STATE(4835)] = 259140, - [SMALL_STATE(4836)] = 259172, - [SMALL_STATE(4837)] = 259230, - [SMALL_STATE(4838)] = 259262, - [SMALL_STATE(4839)] = 259294, - [SMALL_STATE(4840)] = 259326, - [SMALL_STATE(4841)] = 259358, - [SMALL_STATE(4842)] = 259390, - [SMALL_STATE(4843)] = 259422, - [SMALL_STATE(4844)] = 259454, - [SMALL_STATE(4845)] = 259516, - [SMALL_STATE(4846)] = 259574, - [SMALL_STATE(4847)] = 259606, - [SMALL_STATE(4848)] = 259664, - [SMALL_STATE(4849)] = 259696, - [SMALL_STATE(4850)] = 259728, - [SMALL_STATE(4851)] = 259786, - [SMALL_STATE(4852)] = 259848, - [SMALL_STATE(4853)] = 259880, - [SMALL_STATE(4854)] = 259912, - [SMALL_STATE(4855)] = 259970, - [SMALL_STATE(4856)] = 260028, - [SMALL_STATE(4857)] = 260060, - [SMALL_STATE(4858)] = 260118, - [SMALL_STATE(4859)] = 260150, - [SMALL_STATE(4860)] = 260182, - [SMALL_STATE(4861)] = 260214, - [SMALL_STATE(4862)] = 260246, - [SMALL_STATE(4863)] = 260278, - [SMALL_STATE(4864)] = 260336, - [SMALL_STATE(4865)] = 260394, - [SMALL_STATE(4866)] = 260452, - [SMALL_STATE(4867)] = 260490, - [SMALL_STATE(4868)] = 260528, - [SMALL_STATE(4869)] = 260586, - [SMALL_STATE(4870)] = 260618, - [SMALL_STATE(4871)] = 260676, - [SMALL_STATE(4872)] = 260708, - [SMALL_STATE(4873)] = 260766, - [SMALL_STATE(4874)] = 260798, - [SMALL_STATE(4875)] = 260830, - [SMALL_STATE(4876)] = 260868, - [SMALL_STATE(4877)] = 260906, - [SMALL_STATE(4878)] = 260944, - [SMALL_STATE(4879)] = 260982, - [SMALL_STATE(4880)] = 261020, - [SMALL_STATE(4881)] = 261058, - [SMALL_STATE(4882)] = 261096, - [SMALL_STATE(4883)] = 261134, - [SMALL_STATE(4884)] = 261192, - [SMALL_STATE(4885)] = 261250, - [SMALL_STATE(4886)] = 261282, - [SMALL_STATE(4887)] = 261314, - [SMALL_STATE(4888)] = 261346, - [SMALL_STATE(4889)] = 261378, - [SMALL_STATE(4890)] = 261436, - [SMALL_STATE(4891)] = 261494, - [SMALL_STATE(4892)] = 261526, - [SMALL_STATE(4893)] = 261584, - [SMALL_STATE(4894)] = 261616, - [SMALL_STATE(4895)] = 261662, - [SMALL_STATE(4896)] = 261720, - [SMALL_STATE(4897)] = 261752, - [SMALL_STATE(4898)] = 261784, - [SMALL_STATE(4899)] = 261816, - [SMALL_STATE(4900)] = 261862, - [SMALL_STATE(4901)] = 261920, - [SMALL_STATE(4902)] = 261952, - [SMALL_STATE(4903)] = 261984, - [SMALL_STATE(4904)] = 262042, - [SMALL_STATE(4905)] = 262100, - [SMALL_STATE(4906)] = 262158, - [SMALL_STATE(4907)] = 262190, - [SMALL_STATE(4908)] = 262222, - [SMALL_STATE(4909)] = 262254, - [SMALL_STATE(4910)] = 262312, - [SMALL_STATE(4911)] = 262344, - [SMALL_STATE(4912)] = 262402, - [SMALL_STATE(4913)] = 262434, - [SMALL_STATE(4914)] = 262492, - [SMALL_STATE(4915)] = 262524, - [SMALL_STATE(4916)] = 262556, - [SMALL_STATE(4917)] = 262602, - [SMALL_STATE(4918)] = 262634, - [SMALL_STATE(4919)] = 262666, - [SMALL_STATE(4920)] = 262698, - [SMALL_STATE(4921)] = 262730, - [SMALL_STATE(4922)] = 262762, - [SMALL_STATE(4923)] = 262794, - [SMALL_STATE(4924)] = 262826, - [SMALL_STATE(4925)] = 262884, - [SMALL_STATE(4926)] = 262942, - [SMALL_STATE(4927)] = 263000, - [SMALL_STATE(4928)] = 263032, - [SMALL_STATE(4929)] = 263064, - [SMALL_STATE(4930)] = 263122, - [SMALL_STATE(4931)] = 263154, - [SMALL_STATE(4932)] = 263212, - [SMALL_STATE(4933)] = 263244, - [SMALL_STATE(4934)] = 263276, - [SMALL_STATE(4935)] = 263308, - [SMALL_STATE(4936)] = 263340, - [SMALL_STATE(4937)] = 263372, - [SMALL_STATE(4938)] = 263404, - [SMALL_STATE(4939)] = 263436, - [SMALL_STATE(4940)] = 263494, - [SMALL_STATE(4941)] = 263552, - [SMALL_STATE(4942)] = 263583, - [SMALL_STATE(4943)] = 263614, - [SMALL_STATE(4944)] = 263649, - [SMALL_STATE(4945)] = 263680, - [SMALL_STATE(4946)] = 263715, - [SMALL_STATE(4947)] = 263746, - [SMALL_STATE(4948)] = 263793, - [SMALL_STATE(4949)] = 263824, - [SMALL_STATE(4950)] = 263855, - [SMALL_STATE(4951)] = 263886, - [SMALL_STATE(4952)] = 263917, - [SMALL_STATE(4953)] = 263962, - [SMALL_STATE(4954)] = 263993, - [SMALL_STATE(4955)] = 264024, - [SMALL_STATE(4956)] = 264055, - [SMALL_STATE(4957)] = 264086, - [SMALL_STATE(4958)] = 264121, - [SMALL_STATE(4959)] = 264152, - [SMALL_STATE(4960)] = 264183, - [SMALL_STATE(4961)] = 264214, - [SMALL_STATE(4962)] = 264245, - [SMALL_STATE(4963)] = 264276, - [SMALL_STATE(4964)] = 264307, - [SMALL_STATE(4965)] = 264338, - [SMALL_STATE(4966)] = 264373, - [SMALL_STATE(4967)] = 264404, - [SMALL_STATE(4968)] = 264435, - [SMALL_STATE(4969)] = 264466, - [SMALL_STATE(4970)] = 264497, - [SMALL_STATE(4971)] = 264528, - [SMALL_STATE(4972)] = 264573, - [SMALL_STATE(4973)] = 264604, - [SMALL_STATE(4974)] = 264635, - [SMALL_STATE(4975)] = 264680, - [SMALL_STATE(4976)] = 264711, - [SMALL_STATE(4977)] = 264742, - [SMALL_STATE(4978)] = 264773, - [SMALL_STATE(4979)] = 264804, - [SMALL_STATE(4980)] = 264835, - [SMALL_STATE(4981)] = 264870, - [SMALL_STATE(4982)] = 264901, - [SMALL_STATE(4983)] = 264936, - [SMALL_STATE(4984)] = 264967, - [SMALL_STATE(4985)] = 264998, - [SMALL_STATE(4986)] = 265029, - [SMALL_STATE(4987)] = 265060, - [SMALL_STATE(4988)] = 265091, - [SMALL_STATE(4989)] = 265128, - [SMALL_STATE(4990)] = 265159, - [SMALL_STATE(4991)] = 265190, - [SMALL_STATE(4992)] = 265221, - [SMALL_STATE(4993)] = 265256, - [SMALL_STATE(4994)] = 265287, - [SMALL_STATE(4995)] = 265318, - [SMALL_STATE(4996)] = 265349, - [SMALL_STATE(4997)] = 265380, - [SMALL_STATE(4998)] = 265411, - [SMALL_STATE(4999)] = 265442, - [SMALL_STATE(5000)] = 265489, - [SMALL_STATE(5001)] = 265526, - [SMALL_STATE(5002)] = 265557, - [SMALL_STATE(5003)] = 265588, - [SMALL_STATE(5004)] = 265619, - [SMALL_STATE(5005)] = 265650, - [SMALL_STATE(5006)] = 265681, - [SMALL_STATE(5007)] = 265716, - [SMALL_STATE(5008)] = 265751, - [SMALL_STATE(5009)] = 265796, - [SMALL_STATE(5010)] = 265841, - [SMALL_STATE(5011)] = 265872, - [SMALL_STATE(5012)] = 265903, - [SMALL_STATE(5013)] = 265948, - [SMALL_STATE(5014)] = 265979, - [SMALL_STATE(5015)] = 266018, - [SMALL_STATE(5016)] = 266049, - [SMALL_STATE(5017)] = 266080, - [SMALL_STATE(5018)] = 266117, - [SMALL_STATE(5019)] = 266148, - [SMALL_STATE(5020)] = 266184, - [SMALL_STATE(5021)] = 266218, - [SMALL_STATE(5022)] = 266252, - [SMALL_STATE(5023)] = 266308, - [SMALL_STATE(5024)] = 266364, - [SMALL_STATE(5025)] = 266420, - [SMALL_STATE(5026)] = 266476, - [SMALL_STATE(5027)] = 266532, - [SMALL_STATE(5028)] = 266588, - [SMALL_STATE(5029)] = 266644, - [SMALL_STATE(5030)] = 266700, - [SMALL_STATE(5031)] = 266756, - [SMALL_STATE(5032)] = 266812, - [SMALL_STATE(5033)] = 266868, - [SMALL_STATE(5034)] = 266924, - [SMALL_STATE(5035)] = 266958, - [SMALL_STATE(5036)] = 266992, - [SMALL_STATE(5037)] = 267026, - [SMALL_STATE(5038)] = 267060, - [SMALL_STATE(5039)] = 267102, - [SMALL_STATE(5040)] = 267138, - [SMALL_STATE(5041)] = 267174, - [SMALL_STATE(5042)] = 267208, - [SMALL_STATE(5043)] = 267244, - [SMALL_STATE(5044)] = 267280, - [SMALL_STATE(5045)] = 267314, - [SMALL_STATE(5046)] = 267348, - [SMALL_STATE(5047)] = 267382, - [SMALL_STATE(5048)] = 267416, - [SMALL_STATE(5049)] = 267450, - [SMALL_STATE(5050)] = 267492, - [SMALL_STATE(5051)] = 267522, - [SMALL_STATE(5052)] = 267564, - [SMALL_STATE(5053)] = 267620, - [SMALL_STATE(5054)] = 267656, - [SMALL_STATE(5055)] = 267692, - [SMALL_STATE(5056)] = 267728, - [SMALL_STATE(5057)] = 267784, - [SMALL_STATE(5058)] = 267824, - [SMALL_STATE(5059)] = 267864, - [SMALL_STATE(5060)] = 267920, - [SMALL_STATE(5061)] = 267976, - [SMALL_STATE(5062)] = 268016, - [SMALL_STATE(5063)] = 268072, - [SMALL_STATE(5064)] = 268128, - [SMALL_STATE(5065)] = 268184, - [SMALL_STATE(5066)] = 268240, - [SMALL_STATE(5067)] = 268296, - [SMALL_STATE(5068)] = 268332, - [SMALL_STATE(5069)] = 268368, - [SMALL_STATE(5070)] = 268404, - [SMALL_STATE(5071)] = 268460, - [SMALL_STATE(5072)] = 268516, - [SMALL_STATE(5073)] = 268550, - [SMALL_STATE(5074)] = 268606, - [SMALL_STATE(5075)] = 268662, - [SMALL_STATE(5076)] = 268718, - [SMALL_STATE(5077)] = 268754, - [SMALL_STATE(5078)] = 268790, - [SMALL_STATE(5079)] = 268826, - [SMALL_STATE(5080)] = 268862, - [SMALL_STATE(5081)] = 268918, - [SMALL_STATE(5082)] = 268974, - [SMALL_STATE(5083)] = 269030, - [SMALL_STATE(5084)] = 269086, - [SMALL_STATE(5085)] = 269142, - [SMALL_STATE(5086)] = 269198, - [SMALL_STATE(5087)] = 269254, - [SMALL_STATE(5088)] = 269310, - [SMALL_STATE(5089)] = 269366, - [SMALL_STATE(5090)] = 269422, - [SMALL_STATE(5091)] = 269478, - [SMALL_STATE(5092)] = 269520, - [SMALL_STATE(5093)] = 269576, - [SMALL_STATE(5094)] = 269610, - [SMALL_STATE(5095)] = 269660, - [SMALL_STATE(5096)] = 269702, - [SMALL_STATE(5097)] = 269744, - [SMALL_STATE(5098)] = 269800, - [SMALL_STATE(5099)] = 269834, - [SMALL_STATE(5100)] = 269868, - [SMALL_STATE(5101)] = 269902, - [SMALL_STATE(5102)] = 269938, - [SMALL_STATE(5103)] = 269992, - [SMALL_STATE(5104)] = 270028, - [SMALL_STATE(5105)] = 270064, - [SMALL_STATE(5106)] = 270100, - [SMALL_STATE(5107)] = 270136, - [SMALL_STATE(5108)] = 270172, - [SMALL_STATE(5109)] = 270208, - [SMALL_STATE(5110)] = 270244, - [SMALL_STATE(5111)] = 270280, - [SMALL_STATE(5112)] = 270316, - [SMALL_STATE(5113)] = 270352, - [SMALL_STATE(5114)] = 270388, - [SMALL_STATE(5115)] = 270422, - [SMALL_STATE(5116)] = 270463, - [SMALL_STATE(5117)] = 270494, - [SMALL_STATE(5118)] = 270527, - [SMALL_STATE(5119)] = 270560, - [SMALL_STATE(5120)] = 270621, - [SMALL_STATE(5121)] = 270652, - [SMALL_STATE(5122)] = 270685, - [SMALL_STATE(5123)] = 270718, - [SMALL_STATE(5124)] = 270751, - [SMALL_STATE(5125)] = 270784, - [SMALL_STATE(5126)] = 270813, - [SMALL_STATE(5127)] = 270842, - [SMALL_STATE(5128)] = 270871, - [SMALL_STATE(5129)] = 270902, - [SMALL_STATE(5130)] = 270931, - [SMALL_STATE(5131)] = 270960, - [SMALL_STATE(5132)] = 271003, - [SMALL_STATE(5133)] = 271032, - [SMALL_STATE(5134)] = 271061, - [SMALL_STATE(5135)] = 271094, - [SMALL_STATE(5136)] = 271129, - [SMALL_STATE(5137)] = 271160, - [SMALL_STATE(5138)] = 271193, - [SMALL_STATE(5139)] = 271226, - [SMALL_STATE(5140)] = 271259, - [SMALL_STATE(5141)] = 271292, - [SMALL_STATE(5142)] = 271325, - [SMALL_STATE(5143)] = 271354, - [SMALL_STATE(5144)] = 271383, - [SMALL_STATE(5145)] = 271412, - [SMALL_STATE(5146)] = 271441, - [SMALL_STATE(5147)] = 271470, - [SMALL_STATE(5148)] = 271503, - [SMALL_STATE(5149)] = 271536, - [SMALL_STATE(5150)] = 271565, - [SMALL_STATE(5151)] = 271594, - [SMALL_STATE(5152)] = 271625, - [SMALL_STATE(5153)] = 271654, - [SMALL_STATE(5154)] = 271683, - [SMALL_STATE(5155)] = 271712, - [SMALL_STATE(5156)] = 271741, - [SMALL_STATE(5157)] = 271770, - [SMALL_STATE(5158)] = 271831, - [SMALL_STATE(5159)] = 271866, - [SMALL_STATE(5160)] = 271901, - [SMALL_STATE(5161)] = 271968, - [SMALL_STATE(5162)] = 272001, - [SMALL_STATE(5163)] = 272032, - [SMALL_STATE(5164)] = 272071, - [SMALL_STATE(5165)] = 272110, - [SMALL_STATE(5166)] = 272143, - [SMALL_STATE(5167)] = 272174, - [SMALL_STATE(5168)] = 272213, - [SMALL_STATE(5169)] = 272252, - [SMALL_STATE(5170)] = 272291, - [SMALL_STATE(5171)] = 272332, - [SMALL_STATE(5172)] = 272375, - [SMALL_STATE(5173)] = 272408, - [SMALL_STATE(5174)] = 272443, - [SMALL_STATE(5175)] = 272476, - [SMALL_STATE(5176)] = 272523, - [SMALL_STATE(5177)] = 272552, - [SMALL_STATE(5178)] = 272583, - [SMALL_STATE(5179)] = 272612, - [SMALL_STATE(5180)] = 272641, - [SMALL_STATE(5181)] = 272670, - [SMALL_STATE(5182)] = 272705, - [SMALL_STATE(5183)] = 272740, - [SMALL_STATE(5184)] = 272769, - [SMALL_STATE(5185)] = 272800, - [SMALL_STATE(5186)] = 272831, - [SMALL_STATE(5187)] = 272862, - [SMALL_STATE(5188)] = 272895, - [SMALL_STATE(5189)] = 272924, - [SMALL_STATE(5190)] = 272955, - [SMALL_STATE(5191)] = 272990, - [SMALL_STATE(5192)] = 273037, - [SMALL_STATE(5193)] = 273072, - [SMALL_STATE(5194)] = 273105, - [SMALL_STATE(5195)] = 273138, - [SMALL_STATE(5196)] = 273169, - [SMALL_STATE(5197)] = 273202, - [SMALL_STATE(5198)] = 273235, - [SMALL_STATE(5199)] = 273266, - [SMALL_STATE(5200)] = 273313, - [SMALL_STATE(5201)] = 273346, - [SMALL_STATE(5202)] = 273375, - [SMALL_STATE(5203)] = 273408, - [SMALL_STATE(5204)] = 273437, - [SMALL_STATE(5205)] = 273466, - [SMALL_STATE(5206)] = 273497, - [SMALL_STATE(5207)] = 273526, - [SMALL_STATE(5208)] = 273555, - [SMALL_STATE(5209)] = 273584, - [SMALL_STATE(5210)] = 273613, - [SMALL_STATE(5211)] = 273642, - [SMALL_STATE(5212)] = 273671, - [SMALL_STATE(5213)] = 273718, - [SMALL_STATE(5214)] = 273749, - [SMALL_STATE(5215)] = 273778, - [SMALL_STATE(5216)] = 273807, - [SMALL_STATE(5217)] = 273836, - [SMALL_STATE(5218)] = 273869, - [SMALL_STATE(5219)] = 273904, - [SMALL_STATE(5220)] = 273939, - [SMALL_STATE(5221)] = 273972, - [SMALL_STATE(5222)] = 274019, - [SMALL_STATE(5223)] = 274060, - [SMALL_STATE(5224)] = 274091, - [SMALL_STATE(5225)] = 274138, - [SMALL_STATE(5226)] = 274171, - [SMALL_STATE(5227)] = 274202, - [SMALL_STATE(5228)] = 274233, - [SMALL_STATE(5229)] = 274280, - [SMALL_STATE(5230)] = 274311, - [SMALL_STATE(5231)] = 274342, - [SMALL_STATE(5232)] = 274373, - [SMALL_STATE(5233)] = 274404, - [SMALL_STATE(5234)] = 274435, - [SMALL_STATE(5235)] = 274482, - [SMALL_STATE(5236)] = 274523, - [SMALL_STATE(5237)] = 274558, - [SMALL_STATE(5238)] = 274593, - [SMALL_STATE(5239)] = 274628, - [SMALL_STATE(5240)] = 274663, - [SMALL_STATE(5241)] = 274698, - [SMALL_STATE(5242)] = 274733, - [SMALL_STATE(5243)] = 274768, - [SMALL_STATE(5244)] = 274803, - [SMALL_STATE(5245)] = 274834, - [SMALL_STATE(5246)] = 274863, - [SMALL_STATE(5247)] = 274891, - [SMALL_STATE(5248)] = 274923, - [SMALL_STATE(5249)] = 274951, - [SMALL_STATE(5250)] = 274979, - [SMALL_STATE(5251)] = 275007, - [SMALL_STATE(5252)] = 275035, - [SMALL_STATE(5253)] = 275067, - [SMALL_STATE(5254)] = 275099, - [SMALL_STATE(5255)] = 275127, - [SMALL_STATE(5256)] = 275155, - [SMALL_STATE(5257)] = 275183, - [SMALL_STATE(5258)] = 275211, - [SMALL_STATE(5259)] = 275239, - [SMALL_STATE(5260)] = 275267, - [SMALL_STATE(5261)] = 275295, - [SMALL_STATE(5262)] = 275327, - [SMALL_STATE(5263)] = 275355, - [SMALL_STATE(5264)] = 275387, - [SMALL_STATE(5265)] = 275415, - [SMALL_STATE(5266)] = 275443, - [SMALL_STATE(5267)] = 275475, - [SMALL_STATE(5268)] = 275503, - [SMALL_STATE(5269)] = 275531, - [SMALL_STATE(5270)] = 275559, - [SMALL_STATE(5271)] = 275591, - [SMALL_STATE(5272)] = 275623, - [SMALL_STATE(5273)] = 275651, - [SMALL_STATE(5274)] = 275679, - [SMALL_STATE(5275)] = 275707, - [SMALL_STATE(5276)] = 275735, - [SMALL_STATE(5277)] = 275767, - [SMALL_STATE(5278)] = 275795, - [SMALL_STATE(5279)] = 275823, - [SMALL_STATE(5280)] = 275855, - [SMALL_STATE(5281)] = 275883, - [SMALL_STATE(5282)] = 275911, - [SMALL_STATE(5283)] = 275939, - [SMALL_STATE(5284)] = 275967, - [SMALL_STATE(5285)] = 275995, - [SMALL_STATE(5286)] = 276023, - [SMALL_STATE(5287)] = 276051, - [SMALL_STATE(5288)] = 276083, - [SMALL_STATE(5289)] = 276111, - [SMALL_STATE(5290)] = 276139, - [SMALL_STATE(5291)] = 276167, - [SMALL_STATE(5292)] = 276195, - [SMALL_STATE(5293)] = 276235, - [SMALL_STATE(5294)] = 276263, - [SMALL_STATE(5295)] = 276291, - [SMALL_STATE(5296)] = 276319, - [SMALL_STATE(5297)] = 276347, - [SMALL_STATE(5298)] = 276375, - [SMALL_STATE(5299)] = 276403, - [SMALL_STATE(5300)] = 276435, - [SMALL_STATE(5301)] = 276463, - [SMALL_STATE(5302)] = 276491, - [SMALL_STATE(5303)] = 276519, - [SMALL_STATE(5304)] = 276551, - [SMALL_STATE(5305)] = 276579, - [SMALL_STATE(5306)] = 276607, - [SMALL_STATE(5307)] = 276651, - [SMALL_STATE(5308)] = 276679, - [SMALL_STATE(5309)] = 276707, - [SMALL_STATE(5310)] = 276735, - [SMALL_STATE(5311)] = 276775, - [SMALL_STATE(5312)] = 276803, - [SMALL_STATE(5313)] = 276835, - [SMALL_STATE(5314)] = 276863, - [SMALL_STATE(5315)] = 276891, - [SMALL_STATE(5316)] = 276919, - [SMALL_STATE(5317)] = 276947, - [SMALL_STATE(5318)] = 276975, - [SMALL_STATE(5319)] = 277003, - [SMALL_STATE(5320)] = 277031, - [SMALL_STATE(5321)] = 277059, - [SMALL_STATE(5322)] = 277087, - [SMALL_STATE(5323)] = 277115, - [SMALL_STATE(5324)] = 277143, - [SMALL_STATE(5325)] = 277187, - [SMALL_STATE(5326)] = 277227, - [SMALL_STATE(5327)] = 277255, - [SMALL_STATE(5328)] = 277283, - [SMALL_STATE(5329)] = 277311, - [SMALL_STATE(5330)] = 277345, - [SMALL_STATE(5331)] = 277373, - [SMALL_STATE(5332)] = 277407, - [SMALL_STATE(5333)] = 277439, - [SMALL_STATE(5334)] = 277467, - [SMALL_STATE(5335)] = 277495, - [SMALL_STATE(5336)] = 277523, - [SMALL_STATE(5337)] = 277551, - [SMALL_STATE(5338)] = 277579, - [SMALL_STATE(5339)] = 277611, - [SMALL_STATE(5340)] = 277639, - [SMALL_STATE(5341)] = 277667, - [SMALL_STATE(5342)] = 277695, - [SMALL_STATE(5343)] = 277723, - [SMALL_STATE(5344)] = 277751, - [SMALL_STATE(5345)] = 277779, - [SMALL_STATE(5346)] = 277807, - [SMALL_STATE(5347)] = 277835, - [SMALL_STATE(5348)] = 277863, - [SMALL_STATE(5349)] = 277895, - [SMALL_STATE(5350)] = 277923, - [SMALL_STATE(5351)] = 277955, - [SMALL_STATE(5352)] = 277983, - [SMALL_STATE(5353)] = 278011, - [SMALL_STATE(5354)] = 278069, - [SMALL_STATE(5355)] = 278097, - [SMALL_STATE(5356)] = 278125, - [SMALL_STATE(5357)] = 278153, - [SMALL_STATE(5358)] = 278181, - [SMALL_STATE(5359)] = 278209, - [SMALL_STATE(5360)] = 278241, - [SMALL_STATE(5361)] = 278269, - [SMALL_STATE(5362)] = 278297, - [SMALL_STATE(5363)] = 278325, - [SMALL_STATE(5364)] = 278353, - [SMALL_STATE(5365)] = 278381, - [SMALL_STATE(5366)] = 278409, - [SMALL_STATE(5367)] = 278437, - [SMALL_STATE(5368)] = 278465, - [SMALL_STATE(5369)] = 278493, - [SMALL_STATE(5370)] = 278521, - [SMALL_STATE(5371)] = 278549, - [SMALL_STATE(5372)] = 278583, - [SMALL_STATE(5373)] = 278611, - [SMALL_STATE(5374)] = 278641, - [SMALL_STATE(5375)] = 278669, - [SMALL_STATE(5376)] = 278697, - [SMALL_STATE(5377)] = 278725, - [SMALL_STATE(5378)] = 278753, - [SMALL_STATE(5379)] = 278781, - [SMALL_STATE(5380)] = 278809, - [SMALL_STATE(5381)] = 278837, - [SMALL_STATE(5382)] = 278879, - [SMALL_STATE(5383)] = 278907, - [SMALL_STATE(5384)] = 278935, - [SMALL_STATE(5385)] = 278963, - [SMALL_STATE(5386)] = 278991, - [SMALL_STATE(5387)] = 279019, - [SMALL_STATE(5388)] = 279047, - [SMALL_STATE(5389)] = 279079, - [SMALL_STATE(5390)] = 279107, - [SMALL_STATE(5391)] = 279139, - [SMALL_STATE(5392)] = 279167, - [SMALL_STATE(5393)] = 279195, - [SMALL_STATE(5394)] = 279223, - [SMALL_STATE(5395)] = 279255, - [SMALL_STATE(5396)] = 279287, - [SMALL_STATE(5397)] = 279329, - [SMALL_STATE(5398)] = 279361, - [SMALL_STATE(5399)] = 279389, - [SMALL_STATE(5400)] = 279417, - [SMALL_STATE(5401)] = 279445, - [SMALL_STATE(5402)] = 279473, - [SMALL_STATE(5403)] = 279501, - [SMALL_STATE(5404)] = 279529, - [SMALL_STATE(5405)] = 279556, - [SMALL_STATE(5406)] = 279587, - [SMALL_STATE(5407)] = 279614, - [SMALL_STATE(5408)] = 279641, - [SMALL_STATE(5409)] = 279668, - [SMALL_STATE(5410)] = 279695, - [SMALL_STATE(5411)] = 279734, - [SMALL_STATE(5412)] = 279761, - [SMALL_STATE(5413)] = 279798, - [SMALL_STATE(5414)] = 279829, - [SMALL_STATE(5415)] = 279862, - [SMALL_STATE(5416)] = 279889, - [SMALL_STATE(5417)] = 279926, - [SMALL_STATE(5418)] = 279965, - [SMALL_STATE(5419)] = 280004, - [SMALL_STATE(5420)] = 280031, - [SMALL_STATE(5421)] = 280058, - [SMALL_STATE(5422)] = 280097, - [SMALL_STATE(5423)] = 280124, - [SMALL_STATE(5424)] = 280151, - [SMALL_STATE(5425)] = 280178, - [SMALL_STATE(5426)] = 280205, - [SMALL_STATE(5427)] = 280244, - [SMALL_STATE(5428)] = 280271, - [SMALL_STATE(5429)] = 280298, - [SMALL_STATE(5430)] = 280325, - [SMALL_STATE(5431)] = 280352, - [SMALL_STATE(5432)] = 280383, - [SMALL_STATE(5433)] = 280444, - [SMALL_STATE(5434)] = 280471, - [SMALL_STATE(5435)] = 280502, - [SMALL_STATE(5436)] = 280541, - [SMALL_STATE(5437)] = 280580, - [SMALL_STATE(5438)] = 280607, - [SMALL_STATE(5439)] = 280634, - [SMALL_STATE(5440)] = 280661, - [SMALL_STATE(5441)] = 280688, - [SMALL_STATE(5442)] = 280719, - [SMALL_STATE(5443)] = 280746, - [SMALL_STATE(5444)] = 280777, - [SMALL_STATE(5445)] = 280808, - [SMALL_STATE(5446)] = 280847, - [SMALL_STATE(5447)] = 280886, - [SMALL_STATE(5448)] = 280913, - [SMALL_STATE(5449)] = 280940, - [SMALL_STATE(5450)] = 280967, - [SMALL_STATE(5451)] = 280994, - [SMALL_STATE(5452)] = 281033, - [SMALL_STATE(5453)] = 281088, - [SMALL_STATE(5454)] = 281115, - [SMALL_STATE(5455)] = 281170, - [SMALL_STATE(5456)] = 281196, - [SMALL_STATE(5457)] = 281222, - [SMALL_STATE(5458)] = 281258, - [SMALL_STATE(5459)] = 281296, - [SMALL_STATE(5460)] = 281322, - [SMALL_STATE(5461)] = 281348, - [SMALL_STATE(5462)] = 281374, - [SMALL_STATE(5463)] = 281406, - [SMALL_STATE(5464)] = 281432, - [SMALL_STATE(5465)] = 281458, - [SMALL_STATE(5466)] = 281484, - [SMALL_STATE(5467)] = 281510, - [SMALL_STATE(5468)] = 281536, - [SMALL_STATE(5469)] = 281562, - [SMALL_STATE(5470)] = 281588, - [SMALL_STATE(5471)] = 281614, - [SMALL_STATE(5472)] = 281640, - [SMALL_STATE(5473)] = 281666, - [SMALL_STATE(5474)] = 281692, - [SMALL_STATE(5475)] = 281718, - [SMALL_STATE(5476)] = 281744, - [SMALL_STATE(5477)] = 281770, - [SMALL_STATE(5478)] = 281796, - [SMALL_STATE(5479)] = 281822, - [SMALL_STATE(5480)] = 281848, - [SMALL_STATE(5481)] = 281874, - [SMALL_STATE(5482)] = 281900, - [SMALL_STATE(5483)] = 281926, - [SMALL_STATE(5484)] = 281958, - [SMALL_STATE(5485)] = 281984, - [SMALL_STATE(5486)] = 282010, - [SMALL_STATE(5487)] = 282042, - [SMALL_STATE(5488)] = 282068, - [SMALL_STATE(5489)] = 282094, - [SMALL_STATE(5490)] = 282126, - [SMALL_STATE(5491)] = 282152, - [SMALL_STATE(5492)] = 282190, - [SMALL_STATE(5493)] = 282216, - [SMALL_STATE(5494)] = 282242, - [SMALL_STATE(5495)] = 282276, - [SMALL_STATE(5496)] = 282302, - [SMALL_STATE(5497)] = 282334, - [SMALL_STATE(5498)] = 282360, - [SMALL_STATE(5499)] = 282392, - [SMALL_STATE(5500)] = 282426, - [SMALL_STATE(5501)] = 282464, - [SMALL_STATE(5502)] = 282502, - [SMALL_STATE(5503)] = 282528, - [SMALL_STATE(5504)] = 282560, - [SMALL_STATE(5505)] = 282586, - [SMALL_STATE(5506)] = 282612, - [SMALL_STATE(5507)] = 282638, - [SMALL_STATE(5508)] = 282664, - [SMALL_STATE(5509)] = 282690, - [SMALL_STATE(5510)] = 282722, - [SMALL_STATE(5511)] = 282760, - [SMALL_STATE(5512)] = 282786, - [SMALL_STATE(5513)] = 282824, - [SMALL_STATE(5514)] = 282856, - [SMALL_STATE(5515)] = 282882, - [SMALL_STATE(5516)] = 282908, - [SMALL_STATE(5517)] = 282940, - [SMALL_STATE(5518)] = 282978, - [SMALL_STATE(5519)] = 283010, - [SMALL_STATE(5520)] = 283048, - [SMALL_STATE(5521)] = 283086, - [SMALL_STATE(5522)] = 283112, - [SMALL_STATE(5523)] = 283138, - [SMALL_STATE(5524)] = 283164, - [SMALL_STATE(5525)] = 283196, - [SMALL_STATE(5526)] = 283228, - [SMALL_STATE(5527)] = 283254, - [SMALL_STATE(5528)] = 283286, - [SMALL_STATE(5529)] = 283312, - [SMALL_STATE(5530)] = 283337, - [SMALL_STATE(5531)] = 283362, - [SMALL_STATE(5532)] = 283387, - [SMALL_STATE(5533)] = 283412, - [SMALL_STATE(5534)] = 283437, - [SMALL_STATE(5535)] = 283462, - [SMALL_STATE(5536)] = 283487, - [SMALL_STATE(5537)] = 283512, - [SMALL_STATE(5538)] = 283537, - [SMALL_STATE(5539)] = 283562, - [SMALL_STATE(5540)] = 283587, - [SMALL_STATE(5541)] = 283612, - [SMALL_STATE(5542)] = 283637, - [SMALL_STATE(5543)] = 283662, - [SMALL_STATE(5544)] = 283687, - [SMALL_STATE(5545)] = 283712, - [SMALL_STATE(5546)] = 283737, - [SMALL_STATE(5547)] = 283762, - [SMALL_STATE(5548)] = 283787, - [SMALL_STATE(5549)] = 283812, - [SMALL_STATE(5550)] = 283837, - [SMALL_STATE(5551)] = 283862, - [SMALL_STATE(5552)] = 283887, - [SMALL_STATE(5553)] = 283916, - [SMALL_STATE(5554)] = 283941, - [SMALL_STATE(5555)] = 283966, - [SMALL_STATE(5556)] = 283991, - [SMALL_STATE(5557)] = 284016, - [SMALL_STATE(5558)] = 284041, - [SMALL_STATE(5559)] = 284070, - [SMALL_STATE(5560)] = 284095, - [SMALL_STATE(5561)] = 284120, - [SMALL_STATE(5562)] = 284145, - [SMALL_STATE(5563)] = 284170, - [SMALL_STATE(5564)] = 284195, - [SMALL_STATE(5565)] = 284220, - [SMALL_STATE(5566)] = 284245, - [SMALL_STATE(5567)] = 284270, - [SMALL_STATE(5568)] = 284295, - [SMALL_STATE(5569)] = 284320, - [SMALL_STATE(5570)] = 284345, - [SMALL_STATE(5571)] = 284370, - [SMALL_STATE(5572)] = 284395, - [SMALL_STATE(5573)] = 284420, - [SMALL_STATE(5574)] = 284445, - [SMALL_STATE(5575)] = 284470, - [SMALL_STATE(5576)] = 284495, - [SMALL_STATE(5577)] = 284520, - [SMALL_STATE(5578)] = 284545, - [SMALL_STATE(5579)] = 284570, - [SMALL_STATE(5580)] = 284595, - [SMALL_STATE(5581)] = 284620, - [SMALL_STATE(5582)] = 284645, - [SMALL_STATE(5583)] = 284670, - [SMALL_STATE(5584)] = 284695, - [SMALL_STATE(5585)] = 284720, - [SMALL_STATE(5586)] = 284745, - [SMALL_STATE(5587)] = 284770, - [SMALL_STATE(5588)] = 284795, - [SMALL_STATE(5589)] = 284820, - [SMALL_STATE(5590)] = 284845, - [SMALL_STATE(5591)] = 284870, - [SMALL_STATE(5592)] = 284895, - [SMALL_STATE(5593)] = 284920, - [SMALL_STATE(5594)] = 284945, - [SMALL_STATE(5595)] = 284970, - [SMALL_STATE(5596)] = 284999, - [SMALL_STATE(5597)] = 285028, - [SMALL_STATE(5598)] = 285053, - [SMALL_STATE(5599)] = 285078, - [SMALL_STATE(5600)] = 285103, - [SMALL_STATE(5601)] = 285132, - [SMALL_STATE(5602)] = 285157, - [SMALL_STATE(5603)] = 285182, - [SMALL_STATE(5604)] = 285207, - [SMALL_STATE(5605)] = 285232, - [SMALL_STATE(5606)] = 285257, - [SMALL_STATE(5607)] = 285282, - [SMALL_STATE(5608)] = 285307, - [SMALL_STATE(5609)] = 285332, - [SMALL_STATE(5610)] = 285357, - [SMALL_STATE(5611)] = 285381, - [SMALL_STATE(5612)] = 285404, - [SMALL_STATE(5613)] = 285427, - [SMALL_STATE(5614)] = 285450, - [SMALL_STATE(5615)] = 285473, - [SMALL_STATE(5616)] = 285504, - [SMALL_STATE(5617)] = 285539, - [SMALL_STATE(5618)] = 285570, - [SMALL_STATE(5619)] = 285607, - [SMALL_STATE(5620)] = 285647, - [SMALL_STATE(5621)] = 285687, - [SMALL_STATE(5622)] = 285727, - [SMALL_STATE(5623)] = 285767, - [SMALL_STATE(5624)] = 285807, - [SMALL_STATE(5625)] = 285847, - [SMALL_STATE(5626)] = 285887, - [SMALL_STATE(5627)] = 285927, - [SMALL_STATE(5628)] = 285967, - [SMALL_STATE(5629)] = 286007, - [SMALL_STATE(5630)] = 286047, - [SMALL_STATE(5631)] = 286087, - [SMALL_STATE(5632)] = 286127, - [SMALL_STATE(5633)] = 286167, - [SMALL_STATE(5634)] = 286207, - [SMALL_STATE(5635)] = 286247, - [SMALL_STATE(5636)] = 286287, - [SMALL_STATE(5637)] = 286327, - [SMALL_STATE(5638)] = 286367, - [SMALL_STATE(5639)] = 286407, - [SMALL_STATE(5640)] = 286447, - [SMALL_STATE(5641)] = 286487, - [SMALL_STATE(5642)] = 286527, - [SMALL_STATE(5643)] = 286567, - [SMALL_STATE(5644)] = 286607, - [SMALL_STATE(5645)] = 286647, - [SMALL_STATE(5646)] = 286687, - [SMALL_STATE(5647)] = 286727, - [SMALL_STATE(5648)] = 286767, - [SMALL_STATE(5649)] = 286807, - [SMALL_STATE(5650)] = 286847, - [SMALL_STATE(5651)] = 286887, - [SMALL_STATE(5652)] = 286927, - [SMALL_STATE(5653)] = 286967, - [SMALL_STATE(5654)] = 287007, - [SMALL_STATE(5655)] = 287047, - [SMALL_STATE(5656)] = 287087, - [SMALL_STATE(5657)] = 287127, - [SMALL_STATE(5658)] = 287167, - [SMALL_STATE(5659)] = 287207, - [SMALL_STATE(5660)] = 287247, - [SMALL_STATE(5661)] = 287287, - [SMALL_STATE(5662)] = 287327, - [SMALL_STATE(5663)] = 287367, - [SMALL_STATE(5664)] = 287407, - [SMALL_STATE(5665)] = 287447, - [SMALL_STATE(5666)] = 287487, - [SMALL_STATE(5667)] = 287527, - [SMALL_STATE(5668)] = 287567, - [SMALL_STATE(5669)] = 287607, - [SMALL_STATE(5670)] = 287647, - [SMALL_STATE(5671)] = 287687, - [SMALL_STATE(5672)] = 287727, - [SMALL_STATE(5673)] = 287767, - [SMALL_STATE(5674)] = 287807, - [SMALL_STATE(5675)] = 287847, - [SMALL_STATE(5676)] = 287887, - [SMALL_STATE(5677)] = 287927, - [SMALL_STATE(5678)] = 287967, - [SMALL_STATE(5679)] = 288007, - [SMALL_STATE(5680)] = 288047, - [SMALL_STATE(5681)] = 288087, - [SMALL_STATE(5682)] = 288127, - [SMALL_STATE(5683)] = 288167, - [SMALL_STATE(5684)] = 288207, - [SMALL_STATE(5685)] = 288247, - [SMALL_STATE(5686)] = 288287, - [SMALL_STATE(5687)] = 288327, - [SMALL_STATE(5688)] = 288367, - [SMALL_STATE(5689)] = 288407, - [SMALL_STATE(5690)] = 288447, - [SMALL_STATE(5691)] = 288487, - [SMALL_STATE(5692)] = 288527, - [SMALL_STATE(5693)] = 288567, - [SMALL_STATE(5694)] = 288607, - [SMALL_STATE(5695)] = 288647, - [SMALL_STATE(5696)] = 288687, - [SMALL_STATE(5697)] = 288727, - [SMALL_STATE(5698)] = 288767, - [SMALL_STATE(5699)] = 288807, - [SMALL_STATE(5700)] = 288847, - [SMALL_STATE(5701)] = 288887, - [SMALL_STATE(5702)] = 288927, - [SMALL_STATE(5703)] = 288967, - [SMALL_STATE(5704)] = 289007, - [SMALL_STATE(5705)] = 289047, - [SMALL_STATE(5706)] = 289087, - [SMALL_STATE(5707)] = 289127, - [SMALL_STATE(5708)] = 289167, - [SMALL_STATE(5709)] = 289207, - [SMALL_STATE(5710)] = 289247, - [SMALL_STATE(5711)] = 289287, - [SMALL_STATE(5712)] = 289327, - [SMALL_STATE(5713)] = 289367, - [SMALL_STATE(5714)] = 289407, - [SMALL_STATE(5715)] = 289447, - [SMALL_STATE(5716)] = 289487, - [SMALL_STATE(5717)] = 289527, - [SMALL_STATE(5718)] = 289567, - [SMALL_STATE(5719)] = 289607, - [SMALL_STATE(5720)] = 289647, - [SMALL_STATE(5721)] = 289687, - [SMALL_STATE(5722)] = 289727, - [SMALL_STATE(5723)] = 289767, - [SMALL_STATE(5724)] = 289807, - [SMALL_STATE(5725)] = 289847, - [SMALL_STATE(5726)] = 289887, - [SMALL_STATE(5727)] = 289927, - [SMALL_STATE(5728)] = 289967, - [SMALL_STATE(5729)] = 290007, - [SMALL_STATE(5730)] = 290047, - [SMALL_STATE(5731)] = 290087, - [SMALL_STATE(5732)] = 290127, - [SMALL_STATE(5733)] = 290167, - [SMALL_STATE(5734)] = 290207, - [SMALL_STATE(5735)] = 290247, - [SMALL_STATE(5736)] = 290287, - [SMALL_STATE(5737)] = 290327, - [SMALL_STATE(5738)] = 290367, - [SMALL_STATE(5739)] = 290407, - [SMALL_STATE(5740)] = 290447, - [SMALL_STATE(5741)] = 290487, - [SMALL_STATE(5742)] = 290527, - [SMALL_STATE(5743)] = 290567, - [SMALL_STATE(5744)] = 290607, - [SMALL_STATE(5745)] = 290647, - [SMALL_STATE(5746)] = 290687, - [SMALL_STATE(5747)] = 290727, - [SMALL_STATE(5748)] = 290767, - [SMALL_STATE(5749)] = 290807, - [SMALL_STATE(5750)] = 290847, - [SMALL_STATE(5751)] = 290887, - [SMALL_STATE(5752)] = 290927, - [SMALL_STATE(5753)] = 290967, - [SMALL_STATE(5754)] = 291007, - [SMALL_STATE(5755)] = 291047, - [SMALL_STATE(5756)] = 291087, - [SMALL_STATE(5757)] = 291127, - [SMALL_STATE(5758)] = 291167, - [SMALL_STATE(5759)] = 291207, - [SMALL_STATE(5760)] = 291247, - [SMALL_STATE(5761)] = 291287, - [SMALL_STATE(5762)] = 291327, - [SMALL_STATE(5763)] = 291367, - [SMALL_STATE(5764)] = 291407, - [SMALL_STATE(5765)] = 291447, - [SMALL_STATE(5766)] = 291487, - [SMALL_STATE(5767)] = 291527, - [SMALL_STATE(5768)] = 291567, - [SMALL_STATE(5769)] = 291607, - [SMALL_STATE(5770)] = 291647, - [SMALL_STATE(5771)] = 291687, - [SMALL_STATE(5772)] = 291727, - [SMALL_STATE(5773)] = 291767, - [SMALL_STATE(5774)] = 291807, - [SMALL_STATE(5775)] = 291834, - [SMALL_STATE(5776)] = 291861, - [SMALL_STATE(5777)] = 291888, - [SMALL_STATE(5778)] = 291915, - [SMALL_STATE(5779)] = 291944, - [SMALL_STATE(5780)] = 291971, - [SMALL_STATE(5781)] = 291998, - [SMALL_STATE(5782)] = 292025, - [SMALL_STATE(5783)] = 292052, - [SMALL_STATE(5784)] = 292079, - [SMALL_STATE(5785)] = 292106, - [SMALL_STATE(5786)] = 292135, - [SMALL_STATE(5787)] = 292162, - [SMALL_STATE(5788)] = 292189, - [SMALL_STATE(5789)] = 292216, - [SMALL_STATE(5790)] = 292243, - [SMALL_STATE(5791)] = 292270, - [SMALL_STATE(5792)] = 292297, - [SMALL_STATE(5793)] = 292324, - [SMALL_STATE(5794)] = 292351, - [SMALL_STATE(5795)] = 292378, - [SMALL_STATE(5796)] = 292405, - [SMALL_STATE(5797)] = 292432, - [SMALL_STATE(5798)] = 292461, - [SMALL_STATE(5799)] = 292488, - [SMALL_STATE(5800)] = 292515, - [SMALL_STATE(5801)] = 292542, - [SMALL_STATE(5802)] = 292569, - [SMALL_STATE(5803)] = 292596, - [SMALL_STATE(5804)] = 292623, - [SMALL_STATE(5805)] = 292650, - [SMALL_STATE(5806)] = 292677, - [SMALL_STATE(5807)] = 292704, - [SMALL_STATE(5808)] = 292731, - [SMALL_STATE(5809)] = 292758, - [SMALL_STATE(5810)] = 292785, - [SMALL_STATE(5811)] = 292812, - [SMALL_STATE(5812)] = 292839, - [SMALL_STATE(5813)] = 292866, - [SMALL_STATE(5814)] = 292893, - [SMALL_STATE(5815)] = 292920, - [SMALL_STATE(5816)] = 292947, - [SMALL_STATE(5817)] = 292974, - [SMALL_STATE(5818)] = 293001, - [SMALL_STATE(5819)] = 293028, - [SMALL_STATE(5820)] = 293055, - [SMALL_STATE(5821)] = 293082, - [SMALL_STATE(5822)] = 293109, - [SMALL_STATE(5823)] = 293136, - [SMALL_STATE(5824)] = 293163, - [SMALL_STATE(5825)] = 293190, - [SMALL_STATE(5826)] = 293217, - [SMALL_STATE(5827)] = 293244, - [SMALL_STATE(5828)] = 293271, - [SMALL_STATE(5829)] = 293298, - [SMALL_STATE(5830)] = 293325, - [SMALL_STATE(5831)] = 293352, - [SMALL_STATE(5832)] = 293379, - [SMALL_STATE(5833)] = 293406, - [SMALL_STATE(5834)] = 293433, - [SMALL_STATE(5835)] = 293460, - [SMALL_STATE(5836)] = 293487, - [SMALL_STATE(5837)] = 293514, - [SMALL_STATE(5838)] = 293541, - [SMALL_STATE(5839)] = 293568, - [SMALL_STATE(5840)] = 293595, - [SMALL_STATE(5841)] = 293622, - [SMALL_STATE(5842)] = 293649, - [SMALL_STATE(5843)] = 293676, - [SMALL_STATE(5844)] = 293703, - [SMALL_STATE(5845)] = 293730, - [SMALL_STATE(5846)] = 293757, - [SMALL_STATE(5847)] = 293784, - [SMALL_STATE(5848)] = 293811, - [SMALL_STATE(5849)] = 293838, - [SMALL_STATE(5850)] = 293865, - [SMALL_STATE(5851)] = 293892, - [SMALL_STATE(5852)] = 293919, - [SMALL_STATE(5853)] = 293946, - [SMALL_STATE(5854)] = 293973, - [SMALL_STATE(5855)] = 294002, - [SMALL_STATE(5856)] = 294029, - [SMALL_STATE(5857)] = 294056, - [SMALL_STATE(5858)] = 294083, - [SMALL_STATE(5859)] = 294110, - [SMALL_STATE(5860)] = 294137, - [SMALL_STATE(5861)] = 294164, - [SMALL_STATE(5862)] = 294191, - [SMALL_STATE(5863)] = 294218, - [SMALL_STATE(5864)] = 294245, - [SMALL_STATE(5865)] = 294272, - [SMALL_STATE(5866)] = 294299, - [SMALL_STATE(5867)] = 294326, - [SMALL_STATE(5868)] = 294353, - [SMALL_STATE(5869)] = 294380, - [SMALL_STATE(5870)] = 294407, - [SMALL_STATE(5871)] = 294434, - [SMALL_STATE(5872)] = 294461, - [SMALL_STATE(5873)] = 294488, - [SMALL_STATE(5874)] = 294515, - [SMALL_STATE(5875)] = 294542, - [SMALL_STATE(5876)] = 294569, - [SMALL_STATE(5877)] = 294596, - [SMALL_STATE(5878)] = 294623, - [SMALL_STATE(5879)] = 294650, - [SMALL_STATE(5880)] = 294677, - [SMALL_STATE(5881)] = 294704, - [SMALL_STATE(5882)] = 294731, - [SMALL_STATE(5883)] = 294758, - [SMALL_STATE(5884)] = 294785, - [SMALL_STATE(5885)] = 294812, - [SMALL_STATE(5886)] = 294839, - [SMALL_STATE(5887)] = 294866, - [SMALL_STATE(5888)] = 294893, - [SMALL_STATE(5889)] = 294920, - [SMALL_STATE(5890)] = 294947, - [SMALL_STATE(5891)] = 294974, - [SMALL_STATE(5892)] = 295001, - [SMALL_STATE(5893)] = 295028, - [SMALL_STATE(5894)] = 295055, - [SMALL_STATE(5895)] = 295082, - [SMALL_STATE(5896)] = 295109, - [SMALL_STATE(5897)] = 295136, - [SMALL_STATE(5898)] = 295163, - [SMALL_STATE(5899)] = 295190, - [SMALL_STATE(5900)] = 295217, - [SMALL_STATE(5901)] = 295244, - [SMALL_STATE(5902)] = 295271, - [SMALL_STATE(5903)] = 295298, - [SMALL_STATE(5904)] = 295327, - [SMALL_STATE(5905)] = 295354, - [SMALL_STATE(5906)] = 295381, - [SMALL_STATE(5907)] = 295408, - [SMALL_STATE(5908)] = 295435, - [SMALL_STATE(5909)] = 295462, - [SMALL_STATE(5910)] = 295489, - [SMALL_STATE(5911)] = 295516, - [SMALL_STATE(5912)] = 295543, - [SMALL_STATE(5913)] = 295570, - [SMALL_STATE(5914)] = 295597, - [SMALL_STATE(5915)] = 295624, - [SMALL_STATE(5916)] = 295651, - [SMALL_STATE(5917)] = 295678, - [SMALL_STATE(5918)] = 295705, - [SMALL_STATE(5919)] = 295732, - [SMALL_STATE(5920)] = 295759, - [SMALL_STATE(5921)] = 295786, - [SMALL_STATE(5922)] = 295813, - [SMALL_STATE(5923)] = 295840, - [SMALL_STATE(5924)] = 295867, - [SMALL_STATE(5925)] = 295894, - [SMALL_STATE(5926)] = 295921, - [SMALL_STATE(5927)] = 295948, - [SMALL_STATE(5928)] = 295975, - [SMALL_STATE(5929)] = 296002, - [SMALL_STATE(5930)] = 296029, - [SMALL_STATE(5931)] = 296056, - [SMALL_STATE(5932)] = 296083, - [SMALL_STATE(5933)] = 296110, - [SMALL_STATE(5934)] = 296139, - [SMALL_STATE(5935)] = 296166, - [SMALL_STATE(5936)] = 296193, - [SMALL_STATE(5937)] = 296220, - [SMALL_STATE(5938)] = 296247, - [SMALL_STATE(5939)] = 296274, - [SMALL_STATE(5940)] = 296301, - [SMALL_STATE(5941)] = 296328, - [SMALL_STATE(5942)] = 296355, - [SMALL_STATE(5943)] = 296382, - [SMALL_STATE(5944)] = 296409, - [SMALL_STATE(5945)] = 296436, - [SMALL_STATE(5946)] = 296463, - [SMALL_STATE(5947)] = 296490, - [SMALL_STATE(5948)] = 296517, - [SMALL_STATE(5949)] = 296544, - [SMALL_STATE(5950)] = 296571, - [SMALL_STATE(5951)] = 296598, - [SMALL_STATE(5952)] = 296625, - [SMALL_STATE(5953)] = 296652, - [SMALL_STATE(5954)] = 296679, - [SMALL_STATE(5955)] = 296706, - [SMALL_STATE(5956)] = 296733, - [SMALL_STATE(5957)] = 296760, - [SMALL_STATE(5958)] = 296787, - [SMALL_STATE(5959)] = 296814, - [SMALL_STATE(5960)] = 296841, - [SMALL_STATE(5961)] = 296868, - [SMALL_STATE(5962)] = 296895, - [SMALL_STATE(5963)] = 296922, - [SMALL_STATE(5964)] = 296949, - [SMALL_STATE(5965)] = 296978, - [SMALL_STATE(5966)] = 297005, - [SMALL_STATE(5967)] = 297032, - [SMALL_STATE(5968)] = 297059, - [SMALL_STATE(5969)] = 297086, - [SMALL_STATE(5970)] = 297113, - [SMALL_STATE(5971)] = 297140, - [SMALL_STATE(5972)] = 297167, - [SMALL_STATE(5973)] = 297194, - [SMALL_STATE(5974)] = 297221, - [SMALL_STATE(5975)] = 297248, - [SMALL_STATE(5976)] = 297275, - [SMALL_STATE(5977)] = 297302, - [SMALL_STATE(5978)] = 297329, - [SMALL_STATE(5979)] = 297356, - [SMALL_STATE(5980)] = 297383, - [SMALL_STATE(5981)] = 297412, - [SMALL_STATE(5982)] = 297439, - [SMALL_STATE(5983)] = 297466, - [SMALL_STATE(5984)] = 297493, - [SMALL_STATE(5985)] = 297520, - [SMALL_STATE(5986)] = 297547, - [SMALL_STATE(5987)] = 297574, - [SMALL_STATE(5988)] = 297601, - [SMALL_STATE(5989)] = 297628, - [SMALL_STATE(5990)] = 297655, - [SMALL_STATE(5991)] = 297682, - [SMALL_STATE(5992)] = 297709, - [SMALL_STATE(5993)] = 297736, - [SMALL_STATE(5994)] = 297763, - [SMALL_STATE(5995)] = 297790, - [SMALL_STATE(5996)] = 297817, - [SMALL_STATE(5997)] = 297844, - [SMALL_STATE(5998)] = 297871, - [SMALL_STATE(5999)] = 297898, - [SMALL_STATE(6000)] = 297925, - [SMALL_STATE(6001)] = 297951, - [SMALL_STATE(6002)] = 297977, - [SMALL_STATE(6003)] = 298003, - [SMALL_STATE(6004)] = 298029, - [SMALL_STATE(6005)] = 298049, - [SMALL_STATE(6006)] = 298069, - [SMALL_STATE(6007)] = 298095, - [SMALL_STATE(6008)] = 298121, - [SMALL_STATE(6009)] = 298147, - [SMALL_STATE(6010)] = 298173, - [SMALL_STATE(6011)] = 298197, - [SMALL_STATE(6012)] = 298223, - [SMALL_STATE(6013)] = 298246, - [SMALL_STATE(6014)] = 298277, - [SMALL_STATE(6015)] = 298300, - [SMALL_STATE(6016)] = 298319, - [SMALL_STATE(6017)] = 298340, - [SMALL_STATE(6018)] = 298363, - [SMALL_STATE(6019)] = 298386, - [SMALL_STATE(6020)] = 298407, - [SMALL_STATE(6021)] = 298430, - [SMALL_STATE(6022)] = 298453, - [SMALL_STATE(6023)] = 298476, - [SMALL_STATE(6024)] = 298507, - [SMALL_STATE(6025)] = 298528, - [SMALL_STATE(6026)] = 298551, - [SMALL_STATE(6027)] = 298574, - [SMALL_STATE(6028)] = 298597, - [SMALL_STATE(6029)] = 298618, - [SMALL_STATE(6030)] = 298641, - [SMALL_STATE(6031)] = 298662, - [SMALL_STATE(6032)] = 298693, - [SMALL_STATE(6033)] = 298714, - [SMALL_STATE(6034)] = 298737, - [SMALL_STATE(6035)] = 298760, - [SMALL_STATE(6036)] = 298783, - [SMALL_STATE(6037)] = 298806, - [SMALL_STATE(6038)] = 298829, - [SMALL_STATE(6039)] = 298852, - [SMALL_STATE(6040)] = 298875, - [SMALL_STATE(6041)] = 298898, - [SMALL_STATE(6042)] = 298919, - [SMALL_STATE(6043)] = 298942, - [SMALL_STATE(6044)] = 298965, - [SMALL_STATE(6045)] = 298988, - [SMALL_STATE(6046)] = 299009, - [SMALL_STATE(6047)] = 299032, - [SMALL_STATE(6048)] = 299055, - [SMALL_STATE(6049)] = 299078, - [SMALL_STATE(6050)] = 299101, - [SMALL_STATE(6051)] = 299122, - [SMALL_STATE(6052)] = 299145, - [SMALL_STATE(6053)] = 299173, - [SMALL_STATE(6054)] = 299201, - [SMALL_STATE(6055)] = 299229, - [SMALL_STATE(6056)] = 299247, - [SMALL_STATE(6057)] = 299265, - [SMALL_STATE(6058)] = 299293, - [SMALL_STATE(6059)] = 299321, - [SMALL_STATE(6060)] = 299349, - [SMALL_STATE(6061)] = 299367, - [SMALL_STATE(6062)] = 299395, - [SMALL_STATE(6063)] = 299423, - [SMALL_STATE(6064)] = 299441, - [SMALL_STATE(6065)] = 299469, - [SMALL_STATE(6066)] = 299497, - [SMALL_STATE(6067)] = 299525, - [SMALL_STATE(6068)] = 299553, - [SMALL_STATE(6069)] = 299581, - [SMALL_STATE(6070)] = 299599, - [SMALL_STATE(6071)] = 299617, - [SMALL_STATE(6072)] = 299645, - [SMALL_STATE(6073)] = 299673, - [SMALL_STATE(6074)] = 299701, - [SMALL_STATE(6075)] = 299729, - [SMALL_STATE(6076)] = 299747, - [SMALL_STATE(6077)] = 299775, - [SMALL_STATE(6078)] = 299793, - [SMALL_STATE(6079)] = 299821, - [SMALL_STATE(6080)] = 299849, - [SMALL_STATE(6081)] = 299867, - [SMALL_STATE(6082)] = 299895, - [SMALL_STATE(6083)] = 299913, - [SMALL_STATE(6084)] = 299931, - [SMALL_STATE(6085)] = 299959, - [SMALL_STATE(6086)] = 299975, - [SMALL_STATE(6087)] = 300003, - [SMALL_STATE(6088)] = 300031, - [SMALL_STATE(6089)] = 300059, - [SMALL_STATE(6090)] = 300074, - [SMALL_STATE(6091)] = 300097, - [SMALL_STATE(6092)] = 300128, - [SMALL_STATE(6093)] = 300143, - [SMALL_STATE(6094)] = 300167, - [SMALL_STATE(6095)] = 300193, - [SMALL_STATE(6096)] = 300217, - [SMALL_STATE(6097)] = 300241, - [SMALL_STATE(6098)] = 300267, - [SMALL_STATE(6099)] = 300289, - [SMALL_STATE(6100)] = 300311, - [SMALL_STATE(6101)] = 300337, - [SMALL_STATE(6102)] = 300359, - [SMALL_STATE(6103)] = 300383, - [SMALL_STATE(6104)] = 300407, - [SMALL_STATE(6105)] = 300431, - [SMALL_STATE(6106)] = 300455, - [SMALL_STATE(6107)] = 300479, - [SMALL_STATE(6108)] = 300503, - [SMALL_STATE(6109)] = 300527, - [SMALL_STATE(6110)] = 300540, - [SMALL_STATE(6111)] = 300555, - [SMALL_STATE(6112)] = 300570, - [SMALL_STATE(6113)] = 300591, - [SMALL_STATE(6114)] = 300606, - [SMALL_STATE(6115)] = 300619, - [SMALL_STATE(6116)] = 300632, - [SMALL_STATE(6117)] = 300645, - [SMALL_STATE(6118)] = 300666, - [SMALL_STATE(6119)] = 300681, - [SMALL_STATE(6120)] = 300696, - [SMALL_STATE(6121)] = 300711, - [SMALL_STATE(6122)] = 300730, - [SMALL_STATE(6123)] = 300745, - [SMALL_STATE(6124)] = 300760, - [SMALL_STATE(6125)] = 300775, - [SMALL_STATE(6126)] = 300790, - [SMALL_STATE(6127)] = 300805, - [SMALL_STATE(6128)] = 300820, - [SMALL_STATE(6129)] = 300835, - [SMALL_STATE(6130)] = 300848, - [SMALL_STATE(6131)] = 300861, - [SMALL_STATE(6132)] = 300876, - [SMALL_STATE(6133)] = 300891, - [SMALL_STATE(6134)] = 300912, - [SMALL_STATE(6135)] = 300927, - [SMALL_STATE(6136)] = 300944, - [SMALL_STATE(6137)] = 300965, - [SMALL_STATE(6138)] = 300980, - [SMALL_STATE(6139)] = 300995, - [SMALL_STATE(6140)] = 301008, - [SMALL_STATE(6141)] = 301021, - [SMALL_STATE(6142)] = 301036, - [SMALL_STATE(6143)] = 301051, - [SMALL_STATE(6144)] = 301066, - [SMALL_STATE(6145)] = 301081, - [SMALL_STATE(6146)] = 301096, - [SMALL_STATE(6147)] = 301111, - [SMALL_STATE(6148)] = 301128, - [SMALL_STATE(6149)] = 301143, - [SMALL_STATE(6150)] = 301158, - [SMALL_STATE(6151)] = 301173, - [SMALL_STATE(6152)] = 301186, - [SMALL_STATE(6153)] = 301206, - [SMALL_STATE(6154)] = 301226, - [SMALL_STATE(6155)] = 301246, - [SMALL_STATE(6156)] = 301266, - [SMALL_STATE(6157)] = 301286, - [SMALL_STATE(6158)] = 301300, - [SMALL_STATE(6159)] = 301320, - [SMALL_STATE(6160)] = 301334, - [SMALL_STATE(6161)] = 301354, - [SMALL_STATE(6162)] = 301368, - [SMALL_STATE(6163)] = 301388, - [SMALL_STATE(6164)] = 301408, - [SMALL_STATE(6165)] = 301428, - [SMALL_STATE(6166)] = 301442, - [SMALL_STATE(6167)] = 301462, - [SMALL_STATE(6168)] = 301482, - [SMALL_STATE(6169)] = 301502, - [SMALL_STATE(6170)] = 301522, - [SMALL_STATE(6171)] = 301542, - [SMALL_STATE(6172)] = 301556, - [SMALL_STATE(6173)] = 301576, - [SMALL_STATE(6174)] = 301590, - [SMALL_STATE(6175)] = 301604, - [SMALL_STATE(6176)] = 301618, - [SMALL_STATE(6177)] = 301640, - [SMALL_STATE(6178)] = 301660, - [SMALL_STATE(6179)] = 301680, - [SMALL_STATE(6180)] = 301700, - [SMALL_STATE(6181)] = 301720, - [SMALL_STATE(6182)] = 301740, - [SMALL_STATE(6183)] = 301760, - [SMALL_STATE(6184)] = 301780, - [SMALL_STATE(6185)] = 301800, - [SMALL_STATE(6186)] = 301820, - [SMALL_STATE(6187)] = 301840, - [SMALL_STATE(6188)] = 301860, - [SMALL_STATE(6189)] = 301880, - [SMALL_STATE(6190)] = 301900, - [SMALL_STATE(6191)] = 301920, - [SMALL_STATE(6192)] = 301934, - [SMALL_STATE(6193)] = 301954, - [SMALL_STATE(6194)] = 301974, - [SMALL_STATE(6195)] = 301996, - [SMALL_STATE(6196)] = 302016, - [SMALL_STATE(6197)] = 302036, - [SMALL_STATE(6198)] = 302056, - [SMALL_STATE(6199)] = 302072, - [SMALL_STATE(6200)] = 302092, - [SMALL_STATE(6201)] = 302112, - [SMALL_STATE(6202)] = 302132, - [SMALL_STATE(6203)] = 302152, - [SMALL_STATE(6204)] = 302172, - [SMALL_STATE(6205)] = 302192, - [SMALL_STATE(6206)] = 302206, - [SMALL_STATE(6207)] = 302226, - [SMALL_STATE(6208)] = 302246, - [SMALL_STATE(6209)] = 302260, - [SMALL_STATE(6210)] = 302280, - [SMALL_STATE(6211)] = 302300, - [SMALL_STATE(6212)] = 302320, - [SMALL_STATE(6213)] = 302340, - [SMALL_STATE(6214)] = 302360, - [SMALL_STATE(6215)] = 302380, - [SMALL_STATE(6216)] = 302400, - [SMALL_STATE(6217)] = 302414, - [SMALL_STATE(6218)] = 302434, - [SMALL_STATE(6219)] = 302456, - [SMALL_STATE(6220)] = 302476, - [SMALL_STATE(6221)] = 302496, - [SMALL_STATE(6222)] = 302516, - [SMALL_STATE(6223)] = 302536, - [SMALL_STATE(6224)] = 302556, - [SMALL_STATE(6225)] = 302576, - [SMALL_STATE(6226)] = 302590, - [SMALL_STATE(6227)] = 302610, - [SMALL_STATE(6228)] = 302630, - [SMALL_STATE(6229)] = 302650, - [SMALL_STATE(6230)] = 302670, - [SMALL_STATE(6231)] = 302690, - [SMALL_STATE(6232)] = 302710, - [SMALL_STATE(6233)] = 302730, - [SMALL_STATE(6234)] = 302744, - [SMALL_STATE(6235)] = 302764, - [SMALL_STATE(6236)] = 302784, - [SMALL_STATE(6237)] = 302804, - [SMALL_STATE(6238)] = 302824, - [SMALL_STATE(6239)] = 302844, - [SMALL_STATE(6240)] = 302858, - [SMALL_STATE(6241)] = 302878, - [SMALL_STATE(6242)] = 302898, - [SMALL_STATE(6243)] = 302918, - [SMALL_STATE(6244)] = 302938, - [SMALL_STATE(6245)] = 302958, - [SMALL_STATE(6246)] = 302972, - [SMALL_STATE(6247)] = 302992, - [SMALL_STATE(6248)] = 303012, - [SMALL_STATE(6249)] = 303032, - [SMALL_STATE(6250)] = 303046, - [SMALL_STATE(6251)] = 303066, - [SMALL_STATE(6252)] = 303086, - [SMALL_STATE(6253)] = 303106, - [SMALL_STATE(6254)] = 303120, - [SMALL_STATE(6255)] = 303140, - [SMALL_STATE(6256)] = 303160, - [SMALL_STATE(6257)] = 303174, - [SMALL_STATE(6258)] = 303194, - [SMALL_STATE(6259)] = 303214, - [SMALL_STATE(6260)] = 303234, - [SMALL_STATE(6261)] = 303254, - [SMALL_STATE(6262)] = 303276, - [SMALL_STATE(6263)] = 303296, - [SMALL_STATE(6264)] = 303316, - [SMALL_STATE(6265)] = 303336, - [SMALL_STATE(6266)] = 303350, - [SMALL_STATE(6267)] = 303370, - [SMALL_STATE(6268)] = 303390, - [SMALL_STATE(6269)] = 303410, - [SMALL_STATE(6270)] = 303430, - [SMALL_STATE(6271)] = 303450, - [SMALL_STATE(6272)] = 303470, - [SMALL_STATE(6273)] = 303484, - [SMALL_STATE(6274)] = 303504, - [SMALL_STATE(6275)] = 303524, - [SMALL_STATE(6276)] = 303541, - [SMALL_STATE(6277)] = 303554, - [SMALL_STATE(6278)] = 303569, - [SMALL_STATE(6279)] = 303588, - [SMALL_STATE(6280)] = 303605, - [SMALL_STATE(6281)] = 303622, - [SMALL_STATE(6282)] = 303639, - [SMALL_STATE(6283)] = 303658, - [SMALL_STATE(6284)] = 303677, - [SMALL_STATE(6285)] = 303694, - [SMALL_STATE(6286)] = 303711, - [SMALL_STATE(6287)] = 303730, - [SMALL_STATE(6288)] = 303749, - [SMALL_STATE(6289)] = 303766, - [SMALL_STATE(6290)] = 303785, - [SMALL_STATE(6291)] = 303804, - [SMALL_STATE(6292)] = 303823, - [SMALL_STATE(6293)] = 303840, - [SMALL_STATE(6294)] = 303857, - [SMALL_STATE(6295)] = 303872, - [SMALL_STATE(6296)] = 303887, - [SMALL_STATE(6297)] = 303902, - [SMALL_STATE(6298)] = 303919, - [SMALL_STATE(6299)] = 303938, - [SMALL_STATE(6300)] = 303957, - [SMALL_STATE(6301)] = 303976, - [SMALL_STATE(6302)] = 303991, - [SMALL_STATE(6303)] = 304008, - [SMALL_STATE(6304)] = 304025, - [SMALL_STATE(6305)] = 304036, - [SMALL_STATE(6306)] = 304051, - [SMALL_STATE(6307)] = 304064, - [SMALL_STATE(6308)] = 304083, - [SMALL_STATE(6309)] = 304102, - [SMALL_STATE(6310)] = 304117, - [SMALL_STATE(6311)] = 304134, - [SMALL_STATE(6312)] = 304149, - [SMALL_STATE(6313)] = 304166, - [SMALL_STATE(6314)] = 304181, - [SMALL_STATE(6315)] = 304196, - [SMALL_STATE(6316)] = 304213, - [SMALL_STATE(6317)] = 304224, - [SMALL_STATE(6318)] = 304239, - [SMALL_STATE(6319)] = 304254, - [SMALL_STATE(6320)] = 304271, - [SMALL_STATE(6321)] = 304286, - [SMALL_STATE(6322)] = 304303, - [SMALL_STATE(6323)] = 304320, - [SMALL_STATE(6324)] = 304333, - [SMALL_STATE(6325)] = 304348, - [SMALL_STATE(6326)] = 304359, - [SMALL_STATE(6327)] = 304378, - [SMALL_STATE(6328)] = 304393, - [SMALL_STATE(6329)] = 304410, - [SMALL_STATE(6330)] = 304429, - [SMALL_STATE(6331)] = 304446, - [SMALL_STATE(6332)] = 304461, - [SMALL_STATE(6333)] = 304480, - [SMALL_STATE(6334)] = 304499, - [SMALL_STATE(6335)] = 304512, - [SMALL_STATE(6336)] = 304527, - [SMALL_STATE(6337)] = 304544, - [SMALL_STATE(6338)] = 304561, - [SMALL_STATE(6339)] = 304580, - [SMALL_STATE(6340)] = 304599, - [SMALL_STATE(6341)] = 304616, - [SMALL_STATE(6342)] = 304631, - [SMALL_STATE(6343)] = 304650, - [SMALL_STATE(6344)] = 304669, - [SMALL_STATE(6345)] = 304688, - [SMALL_STATE(6346)] = 304703, - [SMALL_STATE(6347)] = 304722, - [SMALL_STATE(6348)] = 304741, - [SMALL_STATE(6349)] = 304758, - [SMALL_STATE(6350)] = 304773, - [SMALL_STATE(6351)] = 304790, - [SMALL_STATE(6352)] = 304807, - [SMALL_STATE(6353)] = 304824, - [SMALL_STATE(6354)] = 304843, - [SMALL_STATE(6355)] = 304862, - [SMALL_STATE(6356)] = 304879, - [SMALL_STATE(6357)] = 304898, - [SMALL_STATE(6358)] = 304915, - [SMALL_STATE(6359)] = 304934, - [SMALL_STATE(6360)] = 304949, - [SMALL_STATE(6361)] = 304968, - [SMALL_STATE(6362)] = 304985, - [SMALL_STATE(6363)] = 305002, - [SMALL_STATE(6364)] = 305019, - [SMALL_STATE(6365)] = 305034, - [SMALL_STATE(6366)] = 305053, - [SMALL_STATE(6367)] = 305072, - [SMALL_STATE(6368)] = 305089, - [SMALL_STATE(6369)] = 305108, - [SMALL_STATE(6370)] = 305127, - [SMALL_STATE(6371)] = 305146, - [SMALL_STATE(6372)] = 305163, - [SMALL_STATE(6373)] = 305182, - [SMALL_STATE(6374)] = 305197, - [SMALL_STATE(6375)] = 305210, - [SMALL_STATE(6376)] = 305225, - [SMALL_STATE(6377)] = 305244, - [SMALL_STATE(6378)] = 305259, - [SMALL_STATE(6379)] = 305276, - [SMALL_STATE(6380)] = 305291, - [SMALL_STATE(6381)] = 305308, - [SMALL_STATE(6382)] = 305327, - [SMALL_STATE(6383)] = 305342, - [SMALL_STATE(6384)] = 305359, - [SMALL_STATE(6385)] = 305378, - [SMALL_STATE(6386)] = 305395, - [SMALL_STATE(6387)] = 305412, - [SMALL_STATE(6388)] = 305422, - [SMALL_STATE(6389)] = 305432, - [SMALL_STATE(6390)] = 305442, - [SMALL_STATE(6391)] = 305452, - [SMALL_STATE(6392)] = 305462, - [SMALL_STATE(6393)] = 305472, - [SMALL_STATE(6394)] = 305482, - [SMALL_STATE(6395)] = 305496, - [SMALL_STATE(6396)] = 305508, - [SMALL_STATE(6397)] = 305518, - [SMALL_STATE(6398)] = 305534, - [SMALL_STATE(6399)] = 305550, - [SMALL_STATE(6400)] = 305560, - [SMALL_STATE(6401)] = 305570, - [SMALL_STATE(6402)] = 305580, - [SMALL_STATE(6403)] = 305590, - [SMALL_STATE(6404)] = 305600, - [SMALL_STATE(6405)] = 305610, - [SMALL_STATE(6406)] = 305620, - [SMALL_STATE(6407)] = 305630, - [SMALL_STATE(6408)] = 305640, - [SMALL_STATE(6409)] = 305650, - [SMALL_STATE(6410)] = 305666, - [SMALL_STATE(6411)] = 305676, - [SMALL_STATE(6412)] = 305686, - [SMALL_STATE(6413)] = 305696, - [SMALL_STATE(6414)] = 305710, - [SMALL_STATE(6415)] = 305724, - [SMALL_STATE(6416)] = 305734, - [SMALL_STATE(6417)] = 305748, - [SMALL_STATE(6418)] = 305764, - [SMALL_STATE(6419)] = 305774, - [SMALL_STATE(6420)] = 305788, - [SMALL_STATE(6421)] = 305804, - [SMALL_STATE(6422)] = 305814, - [SMALL_STATE(6423)] = 305824, - [SMALL_STATE(6424)] = 305840, - [SMALL_STATE(6425)] = 305850, - [SMALL_STATE(6426)] = 305860, - [SMALL_STATE(6427)] = 305870, - [SMALL_STATE(6428)] = 305880, - [SMALL_STATE(6429)] = 305890, - [SMALL_STATE(6430)] = 305902, - [SMALL_STATE(6431)] = 305912, - [SMALL_STATE(6432)] = 305922, - [SMALL_STATE(6433)] = 305932, - [SMALL_STATE(6434)] = 305948, - [SMALL_STATE(6435)] = 305958, - [SMALL_STATE(6436)] = 305968, - [SMALL_STATE(6437)] = 305978, - [SMALL_STATE(6438)] = 305992, - [SMALL_STATE(6439)] = 306002, - [SMALL_STATE(6440)] = 306014, - [SMALL_STATE(6441)] = 306030, - [SMALL_STATE(6442)] = 306044, - [SMALL_STATE(6443)] = 306058, - [SMALL_STATE(6444)] = 306074, - [SMALL_STATE(6445)] = 306090, - [SMALL_STATE(6446)] = 306100, - [SMALL_STATE(6447)] = 306110, - [SMALL_STATE(6448)] = 306120, - [SMALL_STATE(6449)] = 306136, - [SMALL_STATE(6450)] = 306146, - [SMALL_STATE(6451)] = 306159, - [SMALL_STATE(6452)] = 306172, - [SMALL_STATE(6453)] = 306185, - [SMALL_STATE(6454)] = 306198, - [SMALL_STATE(6455)] = 306211, - [SMALL_STATE(6456)] = 306224, - [SMALL_STATE(6457)] = 306237, - [SMALL_STATE(6458)] = 306248, - [SMALL_STATE(6459)] = 306261, - [SMALL_STATE(6460)] = 306274, - [SMALL_STATE(6461)] = 306285, - [SMALL_STATE(6462)] = 306298, - [SMALL_STATE(6463)] = 306311, - [SMALL_STATE(6464)] = 306322, - [SMALL_STATE(6465)] = 306335, - [SMALL_STATE(6466)] = 306346, - [SMALL_STATE(6467)] = 306359, - [SMALL_STATE(6468)] = 306372, - [SMALL_STATE(6469)] = 306385, - [SMALL_STATE(6470)] = 306396, - [SMALL_STATE(6471)] = 306407, - [SMALL_STATE(6472)] = 306420, - [SMALL_STATE(6473)] = 306433, - [SMALL_STATE(6474)] = 306444, - [SMALL_STATE(6475)] = 306455, - [SMALL_STATE(6476)] = 306468, - [SMALL_STATE(6477)] = 306479, - [SMALL_STATE(6478)] = 306492, - [SMALL_STATE(6479)] = 306505, - [SMALL_STATE(6480)] = 306514, - [SMALL_STATE(6481)] = 306525, - [SMALL_STATE(6482)] = 306536, - [SMALL_STATE(6483)] = 306549, - [SMALL_STATE(6484)] = 306562, - [SMALL_STATE(6485)] = 306571, - [SMALL_STATE(6486)] = 306580, - [SMALL_STATE(6487)] = 306591, - [SMALL_STATE(6488)] = 306604, - [SMALL_STATE(6489)] = 306617, - [SMALL_STATE(6490)] = 306628, - [SMALL_STATE(6491)] = 306641, - [SMALL_STATE(6492)] = 306652, - [SMALL_STATE(6493)] = 306663, - [SMALL_STATE(6494)] = 306676, - [SMALL_STATE(6495)] = 306689, - [SMALL_STATE(6496)] = 306700, - [SMALL_STATE(6497)] = 306711, - [SMALL_STATE(6498)] = 306724, - [SMALL_STATE(6499)] = 306737, - [SMALL_STATE(6500)] = 306750, - [SMALL_STATE(6501)] = 306763, - [SMALL_STATE(6502)] = 306776, - [SMALL_STATE(6503)] = 306789, - [SMALL_STATE(6504)] = 306802, - [SMALL_STATE(6505)] = 306815, - [SMALL_STATE(6506)] = 306828, - [SMALL_STATE(6507)] = 306841, - [SMALL_STATE(6508)] = 306854, - [SMALL_STATE(6509)] = 306867, - [SMALL_STATE(6510)] = 306880, - [SMALL_STATE(6511)] = 306893, - [SMALL_STATE(6512)] = 306906, - [SMALL_STATE(6513)] = 306919, - [SMALL_STATE(6514)] = 306932, - [SMALL_STATE(6515)] = 306945, - [SMALL_STATE(6516)] = 306958, - [SMALL_STATE(6517)] = 306971, - [SMALL_STATE(6518)] = 306984, - [SMALL_STATE(6519)] = 306997, - [SMALL_STATE(6520)] = 307010, - [SMALL_STATE(6521)] = 307023, - [SMALL_STATE(6522)] = 307036, - [SMALL_STATE(6523)] = 307049, - [SMALL_STATE(6524)] = 307062, - [SMALL_STATE(6525)] = 307073, - [SMALL_STATE(6526)] = 307084, - [SMALL_STATE(6527)] = 307097, - [SMALL_STATE(6528)] = 307110, - [SMALL_STATE(6529)] = 307119, - [SMALL_STATE(6530)] = 307132, - [SMALL_STATE(6531)] = 307145, - [SMALL_STATE(6532)] = 307158, - [SMALL_STATE(6533)] = 307171, - [SMALL_STATE(6534)] = 307180, - [SMALL_STATE(6535)] = 307193, - [SMALL_STATE(6536)] = 307202, - [SMALL_STATE(6537)] = 307215, - [SMALL_STATE(6538)] = 307228, - [SMALL_STATE(6539)] = 307239, - [SMALL_STATE(6540)] = 307252, - [SMALL_STATE(6541)] = 307265, - [SMALL_STATE(6542)] = 307278, - [SMALL_STATE(6543)] = 307291, - [SMALL_STATE(6544)] = 307304, - [SMALL_STATE(6545)] = 307317, - [SMALL_STATE(6546)] = 307330, - [SMALL_STATE(6547)] = 307343, - [SMALL_STATE(6548)] = 307356, - [SMALL_STATE(6549)] = 307369, - [SMALL_STATE(6550)] = 307382, - [SMALL_STATE(6551)] = 307395, - [SMALL_STATE(6552)] = 307408, - [SMALL_STATE(6553)] = 307421, - [SMALL_STATE(6554)] = 307434, - [SMALL_STATE(6555)] = 307447, - [SMALL_STATE(6556)] = 307460, - [SMALL_STATE(6557)] = 307471, - [SMALL_STATE(6558)] = 307484, - [SMALL_STATE(6559)] = 307497, - [SMALL_STATE(6560)] = 307508, - [SMALL_STATE(6561)] = 307521, - [SMALL_STATE(6562)] = 307532, - [SMALL_STATE(6563)] = 307545, - [SMALL_STATE(6564)] = 307558, - [SMALL_STATE(6565)] = 307571, - [SMALL_STATE(6566)] = 307584, - [SMALL_STATE(6567)] = 307597, - [SMALL_STATE(6568)] = 307608, - [SMALL_STATE(6569)] = 307621, - [SMALL_STATE(6570)] = 307630, - [SMALL_STATE(6571)] = 307639, - [SMALL_STATE(6572)] = 307652, - [SMALL_STATE(6573)] = 307665, - [SMALL_STATE(6574)] = 307678, - [SMALL_STATE(6575)] = 307687, - [SMALL_STATE(6576)] = 307700, - [SMALL_STATE(6577)] = 307709, - [SMALL_STATE(6578)] = 307718, - [SMALL_STATE(6579)] = 307731, - [SMALL_STATE(6580)] = 307744, - [SMALL_STATE(6581)] = 307757, - [SMALL_STATE(6582)] = 307770, - [SMALL_STATE(6583)] = 307783, - [SMALL_STATE(6584)] = 307796, - [SMALL_STATE(6585)] = 307809, - [SMALL_STATE(6586)] = 307822, - [SMALL_STATE(6587)] = 307835, - [SMALL_STATE(6588)] = 307846, - [SMALL_STATE(6589)] = 307857, - [SMALL_STATE(6590)] = 307870, - [SMALL_STATE(6591)] = 307881, - [SMALL_STATE(6592)] = 307890, - [SMALL_STATE(6593)] = 307903, - [SMALL_STATE(6594)] = 307912, - [SMALL_STATE(6595)] = 307921, - [SMALL_STATE(6596)] = 307932, - [SMALL_STATE(6597)] = 307945, - [SMALL_STATE(6598)] = 307958, - [SMALL_STATE(6599)] = 307971, - [SMALL_STATE(6600)] = 307984, - [SMALL_STATE(6601)] = 307997, - [SMALL_STATE(6602)] = 308010, - [SMALL_STATE(6603)] = 308023, - [SMALL_STATE(6604)] = 308036, - [SMALL_STATE(6605)] = 308049, - [SMALL_STATE(6606)] = 308062, - [SMALL_STATE(6607)] = 308075, - [SMALL_STATE(6608)] = 308086, - [SMALL_STATE(6609)] = 308097, - [SMALL_STATE(6610)] = 308110, - [SMALL_STATE(6611)] = 308121, - [SMALL_STATE(6612)] = 308134, - [SMALL_STATE(6613)] = 308147, - [SMALL_STATE(6614)] = 308160, - [SMALL_STATE(6615)] = 308173, - [SMALL_STATE(6616)] = 308186, - [SMALL_STATE(6617)] = 308199, - [SMALL_STATE(6618)] = 308212, - [SMALL_STATE(6619)] = 308225, - [SMALL_STATE(6620)] = 308236, - [SMALL_STATE(6621)] = 308249, - [SMALL_STATE(6622)] = 308262, - [SMALL_STATE(6623)] = 308275, - [SMALL_STATE(6624)] = 308286, - [SMALL_STATE(6625)] = 308297, - [SMALL_STATE(6626)] = 308310, - [SMALL_STATE(6627)] = 308323, - [SMALL_STATE(6628)] = 308336, - [SMALL_STATE(6629)] = 308344, - [SMALL_STATE(6630)] = 308354, - [SMALL_STATE(6631)] = 308364, - [SMALL_STATE(6632)] = 308372, - [SMALL_STATE(6633)] = 308382, - [SMALL_STATE(6634)] = 308390, - [SMALL_STATE(6635)] = 308398, - [SMALL_STATE(6636)] = 308406, - [SMALL_STATE(6637)] = 308414, - [SMALL_STATE(6638)] = 308422, - [SMALL_STATE(6639)] = 308432, - [SMALL_STATE(6640)] = 308442, - [SMALL_STATE(6641)] = 308452, - [SMALL_STATE(6642)] = 308460, - [SMALL_STATE(6643)] = 308468, - [SMALL_STATE(6644)] = 308476, - [SMALL_STATE(6645)] = 308486, - [SMALL_STATE(6646)] = 308496, - [SMALL_STATE(6647)] = 308504, - [SMALL_STATE(6648)] = 308512, - [SMALL_STATE(6649)] = 308520, - [SMALL_STATE(6650)] = 308528, - [SMALL_STATE(6651)] = 308536, - [SMALL_STATE(6652)] = 308544, - [SMALL_STATE(6653)] = 308552, - [SMALL_STATE(6654)] = 308562, - [SMALL_STATE(6655)] = 308572, - [SMALL_STATE(6656)] = 308580, - [SMALL_STATE(6657)] = 308588, - [SMALL_STATE(6658)] = 308596, - [SMALL_STATE(6659)] = 308606, - [SMALL_STATE(6660)] = 308614, - [SMALL_STATE(6661)] = 308622, - [SMALL_STATE(6662)] = 308632, - [SMALL_STATE(6663)] = 308640, - [SMALL_STATE(6664)] = 308650, - [SMALL_STATE(6665)] = 308658, - [SMALL_STATE(6666)] = 308668, - [SMALL_STATE(6667)] = 308678, - [SMALL_STATE(6668)] = 308688, - [SMALL_STATE(6669)] = 308698, - [SMALL_STATE(6670)] = 308706, - [SMALL_STATE(6671)] = 308716, - [SMALL_STATE(6672)] = 308724, - [SMALL_STATE(6673)] = 308732, - [SMALL_STATE(6674)] = 308740, - [SMALL_STATE(6675)] = 308748, - [SMALL_STATE(6676)] = 308756, - [SMALL_STATE(6677)] = 308766, - [SMALL_STATE(6678)] = 308776, - [SMALL_STATE(6679)] = 308784, - [SMALL_STATE(6680)] = 308792, - [SMALL_STATE(6681)] = 308802, - [SMALL_STATE(6682)] = 308810, - [SMALL_STATE(6683)] = 308820, - [SMALL_STATE(6684)] = 308830, - [SMALL_STATE(6685)] = 308840, - [SMALL_STATE(6686)] = 308848, - [SMALL_STATE(6687)] = 308856, - [SMALL_STATE(6688)] = 308866, - [SMALL_STATE(6689)] = 308874, - [SMALL_STATE(6690)] = 308884, - [SMALL_STATE(6691)] = 308894, - [SMALL_STATE(6692)] = 308902, - [SMALL_STATE(6693)] = 308910, - [SMALL_STATE(6694)] = 308918, - [SMALL_STATE(6695)] = 308928, - [SMALL_STATE(6696)] = 308936, - [SMALL_STATE(6697)] = 308946, - [SMALL_STATE(6698)] = 308954, - [SMALL_STATE(6699)] = 308964, - [SMALL_STATE(6700)] = 308972, - [SMALL_STATE(6701)] = 308982, - [SMALL_STATE(6702)] = 308990, - [SMALL_STATE(6703)] = 308998, - [SMALL_STATE(6704)] = 309006, - [SMALL_STATE(6705)] = 309013, - [SMALL_STATE(6706)] = 309020, - [SMALL_STATE(6707)] = 309027, - [SMALL_STATE(6708)] = 309034, - [SMALL_STATE(6709)] = 309041, - [SMALL_STATE(6710)] = 309048, - [SMALL_STATE(6711)] = 309055, - [SMALL_STATE(6712)] = 309062, - [SMALL_STATE(6713)] = 309069, - [SMALL_STATE(6714)] = 309076, - [SMALL_STATE(6715)] = 309083, - [SMALL_STATE(6716)] = 309090, - [SMALL_STATE(6717)] = 309097, - [SMALL_STATE(6718)] = 309104, - [SMALL_STATE(6719)] = 309111, - [SMALL_STATE(6720)] = 309118, - [SMALL_STATE(6721)] = 309125, - [SMALL_STATE(6722)] = 309132, - [SMALL_STATE(6723)] = 309139, - [SMALL_STATE(6724)] = 309146, - [SMALL_STATE(6725)] = 309153, - [SMALL_STATE(6726)] = 309160, - [SMALL_STATE(6727)] = 309167, - [SMALL_STATE(6728)] = 309174, - [SMALL_STATE(6729)] = 309181, - [SMALL_STATE(6730)] = 309188, - [SMALL_STATE(6731)] = 309195, - [SMALL_STATE(6732)] = 309202, - [SMALL_STATE(6733)] = 309209, - [SMALL_STATE(6734)] = 309216, - [SMALL_STATE(6735)] = 309223, - [SMALL_STATE(6736)] = 309230, - [SMALL_STATE(6737)] = 309237, - [SMALL_STATE(6738)] = 309244, - [SMALL_STATE(6739)] = 309251, - [SMALL_STATE(6740)] = 309258, - [SMALL_STATE(6741)] = 309265, - [SMALL_STATE(6742)] = 309272, - [SMALL_STATE(6743)] = 309279, - [SMALL_STATE(6744)] = 309286, - [SMALL_STATE(6745)] = 309293, - [SMALL_STATE(6746)] = 309300, - [SMALL_STATE(6747)] = 309307, - [SMALL_STATE(6748)] = 309314, - [SMALL_STATE(6749)] = 309321, - [SMALL_STATE(6750)] = 309328, - [SMALL_STATE(6751)] = 309335, - [SMALL_STATE(6752)] = 309342, - [SMALL_STATE(6753)] = 309349, - [SMALL_STATE(6754)] = 309356, - [SMALL_STATE(6755)] = 309363, - [SMALL_STATE(6756)] = 309370, - [SMALL_STATE(6757)] = 309377, - [SMALL_STATE(6758)] = 309384, - [SMALL_STATE(6759)] = 309391, - [SMALL_STATE(6760)] = 309398, - [SMALL_STATE(6761)] = 309405, - [SMALL_STATE(6762)] = 309412, - [SMALL_STATE(6763)] = 309419, - [SMALL_STATE(6764)] = 309426, - [SMALL_STATE(6765)] = 309433, - [SMALL_STATE(6766)] = 309440, - [SMALL_STATE(6767)] = 309447, - [SMALL_STATE(6768)] = 309454, - [SMALL_STATE(6769)] = 309461, - [SMALL_STATE(6770)] = 309468, - [SMALL_STATE(6771)] = 309475, - [SMALL_STATE(6772)] = 309482, - [SMALL_STATE(6773)] = 309489, - [SMALL_STATE(6774)] = 309496, - [SMALL_STATE(6775)] = 309503, - [SMALL_STATE(6776)] = 309510, - [SMALL_STATE(6777)] = 309517, - [SMALL_STATE(6778)] = 309524, - [SMALL_STATE(6779)] = 309531, - [SMALL_STATE(6780)] = 309538, - [SMALL_STATE(6781)] = 309545, - [SMALL_STATE(6782)] = 309552, - [SMALL_STATE(6783)] = 309559, - [SMALL_STATE(6784)] = 309566, - [SMALL_STATE(6785)] = 309573, - [SMALL_STATE(6786)] = 309580, - [SMALL_STATE(6787)] = 309587, - [SMALL_STATE(6788)] = 309594, - [SMALL_STATE(6789)] = 309601, - [SMALL_STATE(6790)] = 309608, - [SMALL_STATE(6791)] = 309615, - [SMALL_STATE(6792)] = 309622, - [SMALL_STATE(6793)] = 309629, - [SMALL_STATE(6794)] = 309636, - [SMALL_STATE(6795)] = 309643, - [SMALL_STATE(6796)] = 309650, - [SMALL_STATE(6797)] = 309657, - [SMALL_STATE(6798)] = 309664, - [SMALL_STATE(6799)] = 309671, - [SMALL_STATE(6800)] = 309678, - [SMALL_STATE(6801)] = 309685, - [SMALL_STATE(6802)] = 309692, - [SMALL_STATE(6803)] = 309699, - [SMALL_STATE(6804)] = 309706, - [SMALL_STATE(6805)] = 309713, - [SMALL_STATE(6806)] = 309720, - [SMALL_STATE(6807)] = 309727, - [SMALL_STATE(6808)] = 309734, - [SMALL_STATE(6809)] = 309741, - [SMALL_STATE(6810)] = 309748, - [SMALL_STATE(6811)] = 309755, - [SMALL_STATE(6812)] = 309762, - [SMALL_STATE(6813)] = 309769, - [SMALL_STATE(6814)] = 309776, - [SMALL_STATE(6815)] = 309783, - [SMALL_STATE(6816)] = 309790, - [SMALL_STATE(6817)] = 309797, - [SMALL_STATE(6818)] = 309804, - [SMALL_STATE(6819)] = 309811, - [SMALL_STATE(6820)] = 309818, - [SMALL_STATE(6821)] = 309825, - [SMALL_STATE(6822)] = 309832, - [SMALL_STATE(6823)] = 309839, - [SMALL_STATE(6824)] = 309846, - [SMALL_STATE(6825)] = 309853, - [SMALL_STATE(6826)] = 309860, - [SMALL_STATE(6827)] = 309867, - [SMALL_STATE(6828)] = 309874, - [SMALL_STATE(6829)] = 309881, - [SMALL_STATE(6830)] = 309888, - [SMALL_STATE(6831)] = 309895, - [SMALL_STATE(6832)] = 309902, - [SMALL_STATE(6833)] = 309909, - [SMALL_STATE(6834)] = 309916, - [SMALL_STATE(6835)] = 309923, - [SMALL_STATE(6836)] = 309930, - [SMALL_STATE(6837)] = 309937, - [SMALL_STATE(6838)] = 309944, - [SMALL_STATE(6839)] = 309951, - [SMALL_STATE(6840)] = 309958, - [SMALL_STATE(6841)] = 309965, - [SMALL_STATE(6842)] = 309972, - [SMALL_STATE(6843)] = 309979, - [SMALL_STATE(6844)] = 309986, - [SMALL_STATE(6845)] = 309993, - [SMALL_STATE(6846)] = 310000, - [SMALL_STATE(6847)] = 310007, - [SMALL_STATE(6848)] = 310014, - [SMALL_STATE(6849)] = 310021, - [SMALL_STATE(6850)] = 310028, - [SMALL_STATE(6851)] = 310035, - [SMALL_STATE(6852)] = 310042, - [SMALL_STATE(6853)] = 310049, - [SMALL_STATE(6854)] = 310056, - [SMALL_STATE(6855)] = 310063, - [SMALL_STATE(6856)] = 310070, - [SMALL_STATE(6857)] = 310077, - [SMALL_STATE(6858)] = 310084, - [SMALL_STATE(6859)] = 310091, - [SMALL_STATE(6860)] = 310098, - [SMALL_STATE(6861)] = 310105, - [SMALL_STATE(6862)] = 310112, - [SMALL_STATE(6863)] = 310119, - [SMALL_STATE(6864)] = 310126, - [SMALL_STATE(6865)] = 310133, - [SMALL_STATE(6866)] = 310140, - [SMALL_STATE(6867)] = 310147, - [SMALL_STATE(6868)] = 310154, - [SMALL_STATE(6869)] = 310161, - [SMALL_STATE(6870)] = 310168, - [SMALL_STATE(6871)] = 310175, - [SMALL_STATE(6872)] = 310182, - [SMALL_STATE(6873)] = 310189, - [SMALL_STATE(6874)] = 310196, - [SMALL_STATE(6875)] = 310203, - [SMALL_STATE(6876)] = 310210, - [SMALL_STATE(6877)] = 310217, - [SMALL_STATE(6878)] = 310224, - [SMALL_STATE(6879)] = 310231, - [SMALL_STATE(6880)] = 310238, - [SMALL_STATE(6881)] = 310245, - [SMALL_STATE(6882)] = 310252, - [SMALL_STATE(6883)] = 310259, - [SMALL_STATE(6884)] = 310266, - [SMALL_STATE(6885)] = 310273, - [SMALL_STATE(6886)] = 310280, - [SMALL_STATE(6887)] = 310287, - [SMALL_STATE(6888)] = 310294, - [SMALL_STATE(6889)] = 310301, - [SMALL_STATE(6890)] = 310308, - [SMALL_STATE(6891)] = 310315, - [SMALL_STATE(6892)] = 310322, - [SMALL_STATE(6893)] = 310329, - [SMALL_STATE(6894)] = 310336, - [SMALL_STATE(6895)] = 310343, - [SMALL_STATE(6896)] = 310350, - [SMALL_STATE(6897)] = 310357, - [SMALL_STATE(6898)] = 310364, - [SMALL_STATE(6899)] = 310371, - [SMALL_STATE(6900)] = 310378, - [SMALL_STATE(6901)] = 310385, - [SMALL_STATE(6902)] = 310392, - [SMALL_STATE(6903)] = 310399, - [SMALL_STATE(6904)] = 310406, - [SMALL_STATE(6905)] = 310413, - [SMALL_STATE(6906)] = 310420, - [SMALL_STATE(6907)] = 310427, - [SMALL_STATE(6908)] = 310434, - [SMALL_STATE(6909)] = 310441, - [SMALL_STATE(6910)] = 310448, - [SMALL_STATE(6911)] = 310455, - [SMALL_STATE(6912)] = 310462, - [SMALL_STATE(6913)] = 310469, - [SMALL_STATE(6914)] = 310476, - [SMALL_STATE(6915)] = 310483, - [SMALL_STATE(6916)] = 310490, - [SMALL_STATE(6917)] = 310497, - [SMALL_STATE(6918)] = 310504, - [SMALL_STATE(6919)] = 310511, - [SMALL_STATE(6920)] = 310518, - [SMALL_STATE(6921)] = 310525, - [SMALL_STATE(6922)] = 310532, - [SMALL_STATE(6923)] = 310539, - [SMALL_STATE(6924)] = 310546, - [SMALL_STATE(6925)] = 310553, - [SMALL_STATE(6926)] = 310560, - [SMALL_STATE(6927)] = 310567, - [SMALL_STATE(6928)] = 310574, - [SMALL_STATE(6929)] = 310581, - [SMALL_STATE(6930)] = 310588, - [SMALL_STATE(6931)] = 310595, - [SMALL_STATE(6932)] = 310602, - [SMALL_STATE(6933)] = 310609, - [SMALL_STATE(6934)] = 310616, - [SMALL_STATE(6935)] = 310623, - [SMALL_STATE(6936)] = 310630, - [SMALL_STATE(6937)] = 310637, - [SMALL_STATE(6938)] = 310644, - [SMALL_STATE(6939)] = 310651, - [SMALL_STATE(6940)] = 310658, - [SMALL_STATE(6941)] = 310665, - [SMALL_STATE(6942)] = 310672, - [SMALL_STATE(6943)] = 310679, - [SMALL_STATE(6944)] = 310686, - [SMALL_STATE(6945)] = 310693, - [SMALL_STATE(6946)] = 310700, - [SMALL_STATE(6947)] = 310707, - [SMALL_STATE(6948)] = 310714, - [SMALL_STATE(6949)] = 310721, - [SMALL_STATE(6950)] = 310728, - [SMALL_STATE(6951)] = 310735, - [SMALL_STATE(6952)] = 310742, - [SMALL_STATE(6953)] = 310749, - [SMALL_STATE(6954)] = 310756, - [SMALL_STATE(6955)] = 310763, - [SMALL_STATE(6956)] = 310770, - [SMALL_STATE(6957)] = 310777, - [SMALL_STATE(6958)] = 310784, - [SMALL_STATE(6959)] = 310791, - [SMALL_STATE(6960)] = 310798, - [SMALL_STATE(6961)] = 310805, - [SMALL_STATE(6962)] = 310812, - [SMALL_STATE(6963)] = 310819, - [SMALL_STATE(6964)] = 310826, - [SMALL_STATE(6965)] = 310833, - [SMALL_STATE(6966)] = 310840, - [SMALL_STATE(6967)] = 310847, - [SMALL_STATE(6968)] = 310854, - [SMALL_STATE(6969)] = 310861, - [SMALL_STATE(6970)] = 310868, - [SMALL_STATE(6971)] = 310875, - [SMALL_STATE(6972)] = 310882, - [SMALL_STATE(6973)] = 310889, - [SMALL_STATE(6974)] = 310896, - [SMALL_STATE(6975)] = 310903, - [SMALL_STATE(6976)] = 310910, - [SMALL_STATE(6977)] = 310917, - [SMALL_STATE(6978)] = 310924, - [SMALL_STATE(6979)] = 310931, - [SMALL_STATE(6980)] = 310938, - [SMALL_STATE(6981)] = 310945, - [SMALL_STATE(6982)] = 310952, - [SMALL_STATE(6983)] = 310959, - [SMALL_STATE(6984)] = 310966, - [SMALL_STATE(6985)] = 310973, - [SMALL_STATE(6986)] = 310980, - [SMALL_STATE(6987)] = 310987, - [SMALL_STATE(6988)] = 310994, - [SMALL_STATE(6989)] = 311001, - [SMALL_STATE(6990)] = 311008, - [SMALL_STATE(6991)] = 311015, - [SMALL_STATE(6992)] = 311022, - [SMALL_STATE(6993)] = 311029, - [SMALL_STATE(6994)] = 311036, - [SMALL_STATE(6995)] = 311043, - [SMALL_STATE(6996)] = 311050, - [SMALL_STATE(6997)] = 311057, - [SMALL_STATE(6998)] = 311064, - [SMALL_STATE(6999)] = 311071, - [SMALL_STATE(7000)] = 311078, - [SMALL_STATE(7001)] = 311085, - [SMALL_STATE(7002)] = 311092, - [SMALL_STATE(7003)] = 311099, - [SMALL_STATE(7004)] = 311106, - [SMALL_STATE(7005)] = 311113, - [SMALL_STATE(7006)] = 311120, - [SMALL_STATE(7007)] = 311127, - [SMALL_STATE(7008)] = 311134, - [SMALL_STATE(7009)] = 311141, - [SMALL_STATE(7010)] = 311148, - [SMALL_STATE(7011)] = 311155, - [SMALL_STATE(7012)] = 311162, - [SMALL_STATE(7013)] = 311169, - [SMALL_STATE(7014)] = 311176, - [SMALL_STATE(7015)] = 311183, - [SMALL_STATE(7016)] = 311190, - [SMALL_STATE(7017)] = 311197, - [SMALL_STATE(7018)] = 311204, - [SMALL_STATE(7019)] = 311211, - [SMALL_STATE(7020)] = 311218, - [SMALL_STATE(7021)] = 311225, - [SMALL_STATE(7022)] = 311232, - [SMALL_STATE(7023)] = 311239, - [SMALL_STATE(7024)] = 311246, - [SMALL_STATE(7025)] = 311253, - [SMALL_STATE(7026)] = 311260, - [SMALL_STATE(7027)] = 311267, - [SMALL_STATE(7028)] = 311274, - [SMALL_STATE(7029)] = 311281, - [SMALL_STATE(7030)] = 311288, - [SMALL_STATE(7031)] = 311295, - [SMALL_STATE(7032)] = 311302, - [SMALL_STATE(7033)] = 311309, - [SMALL_STATE(7034)] = 311316, - [SMALL_STATE(7035)] = 311323, - [SMALL_STATE(7036)] = 311330, - [SMALL_STATE(7037)] = 311337, - [SMALL_STATE(7038)] = 311344, - [SMALL_STATE(7039)] = 311351, - [SMALL_STATE(7040)] = 311358, - [SMALL_STATE(7041)] = 311365, - [SMALL_STATE(7042)] = 311372, - [SMALL_STATE(7043)] = 311379, - [SMALL_STATE(7044)] = 311386, - [SMALL_STATE(7045)] = 311393, - [SMALL_STATE(7046)] = 311400, - [SMALL_STATE(7047)] = 311407, - [SMALL_STATE(7048)] = 311414, - [SMALL_STATE(7049)] = 311421, - [SMALL_STATE(7050)] = 311428, - [SMALL_STATE(7051)] = 311435, - [SMALL_STATE(7052)] = 311442, - [SMALL_STATE(7053)] = 311449, - [SMALL_STATE(7054)] = 311456, - [SMALL_STATE(7055)] = 311463, - [SMALL_STATE(7056)] = 311470, - [SMALL_STATE(7057)] = 311477, - [SMALL_STATE(7058)] = 311484, - [SMALL_STATE(7059)] = 311491, - [SMALL_STATE(7060)] = 311498, - [SMALL_STATE(7061)] = 311505, - [SMALL_STATE(7062)] = 311512, - [SMALL_STATE(7063)] = 311519, - [SMALL_STATE(7064)] = 311526, - [SMALL_STATE(7065)] = 311533, - [SMALL_STATE(7066)] = 311540, - [SMALL_STATE(7067)] = 311547, - [SMALL_STATE(7068)] = 311554, - [SMALL_STATE(7069)] = 311561, - [SMALL_STATE(7070)] = 311568, - [SMALL_STATE(7071)] = 311575, - [SMALL_STATE(7072)] = 311582, - [SMALL_STATE(7073)] = 311589, - [SMALL_STATE(7074)] = 311596, - [SMALL_STATE(7075)] = 311603, - [SMALL_STATE(7076)] = 311610, - [SMALL_STATE(7077)] = 311617, - [SMALL_STATE(7078)] = 311624, - [SMALL_STATE(7079)] = 311631, - [SMALL_STATE(7080)] = 311638, - [SMALL_STATE(7081)] = 311645, - [SMALL_STATE(7082)] = 311652, - [SMALL_STATE(7083)] = 311659, - [SMALL_STATE(7084)] = 311666, - [SMALL_STATE(7085)] = 311673, - [SMALL_STATE(7086)] = 311680, - [SMALL_STATE(7087)] = 311687, - [SMALL_STATE(7088)] = 311694, - [SMALL_STATE(7089)] = 311701, - [SMALL_STATE(7090)] = 311708, - [SMALL_STATE(7091)] = 311715, - [SMALL_STATE(7092)] = 311722, - [SMALL_STATE(7093)] = 311729, - [SMALL_STATE(7094)] = 311736, - [SMALL_STATE(7095)] = 311743, - [SMALL_STATE(7096)] = 311750, - [SMALL_STATE(7097)] = 311757, - [SMALL_STATE(7098)] = 311764, - [SMALL_STATE(7099)] = 311771, - [SMALL_STATE(7100)] = 311778, - [SMALL_STATE(7101)] = 311785, - [SMALL_STATE(7102)] = 311792, - [SMALL_STATE(7103)] = 311799, - [SMALL_STATE(7104)] = 311806, - [SMALL_STATE(7105)] = 311813, - [SMALL_STATE(7106)] = 311820, - [SMALL_STATE(7107)] = 311827, - [SMALL_STATE(7108)] = 311834, - [SMALL_STATE(7109)] = 311841, - [SMALL_STATE(7110)] = 311848, - [SMALL_STATE(7111)] = 311855, - [SMALL_STATE(7112)] = 311862, - [SMALL_STATE(7113)] = 311869, - [SMALL_STATE(7114)] = 311876, - [SMALL_STATE(7115)] = 311883, - [SMALL_STATE(7116)] = 311890, - [SMALL_STATE(7117)] = 311897, - [SMALL_STATE(7118)] = 311904, - [SMALL_STATE(7119)] = 311911, - [SMALL_STATE(7120)] = 311918, - [SMALL_STATE(7121)] = 311925, - [SMALL_STATE(7122)] = 311932, - [SMALL_STATE(7123)] = 311939, - [SMALL_STATE(7124)] = 311946, - [SMALL_STATE(7125)] = 311953, - [SMALL_STATE(7126)] = 311960, - [SMALL_STATE(7127)] = 311967, - [SMALL_STATE(7128)] = 311974, - [SMALL_STATE(7129)] = 311981, - [SMALL_STATE(7130)] = 311988, - [SMALL_STATE(7131)] = 311995, - [SMALL_STATE(7132)] = 312002, - [SMALL_STATE(7133)] = 312009, - [SMALL_STATE(7134)] = 312016, - [SMALL_STATE(7135)] = 312023, - [SMALL_STATE(7136)] = 312030, - [SMALL_STATE(7137)] = 312037, - [SMALL_STATE(7138)] = 312044, - [SMALL_STATE(7139)] = 312051, - [SMALL_STATE(7140)] = 312058, - [SMALL_STATE(7141)] = 312065, - [SMALL_STATE(7142)] = 312072, - [SMALL_STATE(7143)] = 312079, - [SMALL_STATE(7144)] = 312086, - [SMALL_STATE(7145)] = 312093, - [SMALL_STATE(7146)] = 312100, - [SMALL_STATE(7147)] = 312107, - [SMALL_STATE(7148)] = 312114, - [SMALL_STATE(7149)] = 312121, - [SMALL_STATE(7150)] = 312128, - [SMALL_STATE(7151)] = 312135, - [SMALL_STATE(7152)] = 312142, - [SMALL_STATE(7153)] = 312149, - [SMALL_STATE(7154)] = 312156, - [SMALL_STATE(7155)] = 312163, - [SMALL_STATE(7156)] = 312170, - [SMALL_STATE(7157)] = 312177, - [SMALL_STATE(7158)] = 312184, - [SMALL_STATE(7159)] = 312191, - [SMALL_STATE(7160)] = 312198, - [SMALL_STATE(7161)] = 312205, - [SMALL_STATE(7162)] = 312212, - [SMALL_STATE(7163)] = 312219, - [SMALL_STATE(7164)] = 312226, - [SMALL_STATE(7165)] = 312233, - [SMALL_STATE(7166)] = 312240, - [SMALL_STATE(7167)] = 312247, - [SMALL_STATE(7168)] = 312254, - [SMALL_STATE(7169)] = 312261, - [SMALL_STATE(7170)] = 312268, - [SMALL_STATE(7171)] = 312275, - [SMALL_STATE(7172)] = 312282, - [SMALL_STATE(7173)] = 312289, - [SMALL_STATE(7174)] = 312296, - [SMALL_STATE(7175)] = 312303, - [SMALL_STATE(7176)] = 312310, - [SMALL_STATE(7177)] = 312317, - [SMALL_STATE(7178)] = 312324, - [SMALL_STATE(7179)] = 312331, - [SMALL_STATE(7180)] = 312338, - [SMALL_STATE(7181)] = 312345, - [SMALL_STATE(7182)] = 312352, - [SMALL_STATE(7183)] = 312359, - [SMALL_STATE(7184)] = 312366, - [SMALL_STATE(7185)] = 312373, - [SMALL_STATE(7186)] = 312380, - [SMALL_STATE(7187)] = 312387, - [SMALL_STATE(7188)] = 312394, - [SMALL_STATE(7189)] = 312401, - [SMALL_STATE(7190)] = 312408, - [SMALL_STATE(7191)] = 312415, - [SMALL_STATE(7192)] = 312422, - [SMALL_STATE(7193)] = 312429, - [SMALL_STATE(7194)] = 312436, - [SMALL_STATE(7195)] = 312443, - [SMALL_STATE(7196)] = 312450, - [SMALL_STATE(7197)] = 312457, - [SMALL_STATE(7198)] = 312464, - [SMALL_STATE(7199)] = 312471, - [SMALL_STATE(7200)] = 312478, - [SMALL_STATE(7201)] = 312485, - [SMALL_STATE(7202)] = 312492, - [SMALL_STATE(7203)] = 312499, - [SMALL_STATE(7204)] = 312506, - [SMALL_STATE(7205)] = 312513, - [SMALL_STATE(7206)] = 312520, - [SMALL_STATE(7207)] = 312527, - [SMALL_STATE(7208)] = 312534, - [SMALL_STATE(7209)] = 312541, - [SMALL_STATE(7210)] = 312548, - [SMALL_STATE(7211)] = 312555, - [SMALL_STATE(7212)] = 312562, - [SMALL_STATE(7213)] = 312569, - [SMALL_STATE(7214)] = 312576, - [SMALL_STATE(7215)] = 312583, - [SMALL_STATE(7216)] = 312590, - [SMALL_STATE(7217)] = 312597, - [SMALL_STATE(7218)] = 312604, - [SMALL_STATE(7219)] = 312611, - [SMALL_STATE(7220)] = 312618, - [SMALL_STATE(7221)] = 312625, - [SMALL_STATE(7222)] = 312632, - [SMALL_STATE(7223)] = 312639, - [SMALL_STATE(7224)] = 312646, - [SMALL_STATE(7225)] = 312653, - [SMALL_STATE(7226)] = 312660, - [SMALL_STATE(7227)] = 312667, - [SMALL_STATE(7228)] = 312674, - [SMALL_STATE(7229)] = 312681, - [SMALL_STATE(7230)] = 312688, - [SMALL_STATE(7231)] = 312695, - [SMALL_STATE(7232)] = 312702, - [SMALL_STATE(7233)] = 312709, - [SMALL_STATE(7234)] = 312716, - [SMALL_STATE(7235)] = 312723, - [SMALL_STATE(7236)] = 312730, - [SMALL_STATE(7237)] = 312737, - [SMALL_STATE(7238)] = 312744, - [SMALL_STATE(7239)] = 312751, - [SMALL_STATE(7240)] = 312758, - [SMALL_STATE(7241)] = 312765, - [SMALL_STATE(7242)] = 312772, - [SMALL_STATE(7243)] = 312779, - [SMALL_STATE(7244)] = 312786, - [SMALL_STATE(7245)] = 312793, - [SMALL_STATE(7246)] = 312800, - [SMALL_STATE(7247)] = 312807, - [SMALL_STATE(7248)] = 312814, - [SMALL_STATE(7249)] = 312821, - [SMALL_STATE(7250)] = 312828, - [SMALL_STATE(7251)] = 312835, - [SMALL_STATE(7252)] = 312842, - [SMALL_STATE(7253)] = 312849, - [SMALL_STATE(7254)] = 312856, - [SMALL_STATE(7255)] = 312863, - [SMALL_STATE(7256)] = 312870, - [SMALL_STATE(7257)] = 312877, - [SMALL_STATE(7258)] = 312884, - [SMALL_STATE(7259)] = 312891, - [SMALL_STATE(7260)] = 312898, - [SMALL_STATE(7261)] = 312905, - [SMALL_STATE(7262)] = 312912, - [SMALL_STATE(7263)] = 312919, - [SMALL_STATE(7264)] = 312926, - [SMALL_STATE(7265)] = 312933, - [SMALL_STATE(7266)] = 312940, - [SMALL_STATE(7267)] = 312947, - [SMALL_STATE(7268)] = 312954, - [SMALL_STATE(7269)] = 312961, - [SMALL_STATE(7270)] = 312968, - [SMALL_STATE(7271)] = 312975, - [SMALL_STATE(7272)] = 312982, - [SMALL_STATE(7273)] = 312989, - [SMALL_STATE(7274)] = 312996, - [SMALL_STATE(7275)] = 313003, - [SMALL_STATE(7276)] = 313010, - [SMALL_STATE(7277)] = 313017, - [SMALL_STATE(7278)] = 313024, - [SMALL_STATE(7279)] = 313031, - [SMALL_STATE(7280)] = 313038, - [SMALL_STATE(7281)] = 313045, - [SMALL_STATE(7282)] = 313052, - [SMALL_STATE(7283)] = 313059, - [SMALL_STATE(7284)] = 313066, - [SMALL_STATE(7285)] = 313073, - [SMALL_STATE(7286)] = 313080, - [SMALL_STATE(7287)] = 313087, - [SMALL_STATE(7288)] = 313094, - [SMALL_STATE(7289)] = 313101, - [SMALL_STATE(7290)] = 313108, - [SMALL_STATE(7291)] = 313115, - [SMALL_STATE(7292)] = 313122, - [SMALL_STATE(7293)] = 313129, - [SMALL_STATE(7294)] = 313136, - [SMALL_STATE(7295)] = 313143, - [SMALL_STATE(7296)] = 313150, - [SMALL_STATE(7297)] = 313157, - [SMALL_STATE(7298)] = 313164, - [SMALL_STATE(7299)] = 313171, - [SMALL_STATE(7300)] = 313178, - [SMALL_STATE(7301)] = 313185, - [SMALL_STATE(7302)] = 313192, - [SMALL_STATE(7303)] = 313199, - [SMALL_STATE(7304)] = 313206, - [SMALL_STATE(7305)] = 313213, - [SMALL_STATE(7306)] = 313220, - [SMALL_STATE(7307)] = 313227, - [SMALL_STATE(7308)] = 313234, - [SMALL_STATE(7309)] = 313241, - [SMALL_STATE(7310)] = 313248, - [SMALL_STATE(7311)] = 313255, - [SMALL_STATE(7312)] = 313262, - [SMALL_STATE(7313)] = 313269, - [SMALL_STATE(7314)] = 313276, - [SMALL_STATE(7315)] = 313283, - [SMALL_STATE(7316)] = 313290, - [SMALL_STATE(7317)] = 313297, - [SMALL_STATE(7318)] = 313304, - [SMALL_STATE(7319)] = 313311, - [SMALL_STATE(7320)] = 313318, - [SMALL_STATE(7321)] = 313325, - [SMALL_STATE(7322)] = 313332, - [SMALL_STATE(7323)] = 313339, - [SMALL_STATE(7324)] = 313346, - [SMALL_STATE(7325)] = 313353, - [SMALL_STATE(7326)] = 313360, - [SMALL_STATE(7327)] = 313367, - [SMALL_STATE(7328)] = 313374, - [SMALL_STATE(7329)] = 313381, - [SMALL_STATE(7330)] = 313388, - [SMALL_STATE(7331)] = 313395, - [SMALL_STATE(7332)] = 313402, - [SMALL_STATE(7333)] = 313409, - [SMALL_STATE(7334)] = 313416, - [SMALL_STATE(7335)] = 313423, - [SMALL_STATE(7336)] = 313430, - [SMALL_STATE(7337)] = 313437, - [SMALL_STATE(7338)] = 313444, - [SMALL_STATE(7339)] = 313451, - [SMALL_STATE(7340)] = 313458, - [SMALL_STATE(7341)] = 313465, - [SMALL_STATE(7342)] = 313472, - [SMALL_STATE(7343)] = 313479, - [SMALL_STATE(7344)] = 313486, - [SMALL_STATE(7345)] = 313493, - [SMALL_STATE(7346)] = 313500, - [SMALL_STATE(7347)] = 313507, - [SMALL_STATE(7348)] = 313514, - [SMALL_STATE(7349)] = 313521, - [SMALL_STATE(7350)] = 313528, - [SMALL_STATE(7351)] = 313535, - [SMALL_STATE(7352)] = 313542, - [SMALL_STATE(7353)] = 313549, - [SMALL_STATE(7354)] = 313556, - [SMALL_STATE(7355)] = 313563, - [SMALL_STATE(7356)] = 313570, - [SMALL_STATE(7357)] = 313577, - [SMALL_STATE(7358)] = 313584, - [SMALL_STATE(7359)] = 313591, - [SMALL_STATE(7360)] = 313598, - [SMALL_STATE(7361)] = 313605, - [SMALL_STATE(7362)] = 313612, - [SMALL_STATE(7363)] = 313619, - [SMALL_STATE(7364)] = 313626, - [SMALL_STATE(7365)] = 313633, - [SMALL_STATE(7366)] = 313640, - [SMALL_STATE(7367)] = 313647, - [SMALL_STATE(7368)] = 313654, - [SMALL_STATE(7369)] = 313661, - [SMALL_STATE(7370)] = 313668, - [SMALL_STATE(7371)] = 313675, - [SMALL_STATE(7372)] = 313682, - [SMALL_STATE(7373)] = 313689, - [SMALL_STATE(7374)] = 313696, - [SMALL_STATE(7375)] = 313703, - [SMALL_STATE(7376)] = 313710, - [SMALL_STATE(7377)] = 313717, - [SMALL_STATE(7378)] = 313724, - [SMALL_STATE(7379)] = 313731, - [SMALL_STATE(7380)] = 313738, - [SMALL_STATE(7381)] = 313745, - [SMALL_STATE(7382)] = 313752, - [SMALL_STATE(7383)] = 313759, - [SMALL_STATE(7384)] = 313766, - [SMALL_STATE(7385)] = 313773, - [SMALL_STATE(7386)] = 313780, - [SMALL_STATE(7387)] = 313787, - [SMALL_STATE(7388)] = 313794, - [SMALL_STATE(7389)] = 313801, - [SMALL_STATE(7390)] = 313808, - [SMALL_STATE(7391)] = 313815, - [SMALL_STATE(7392)] = 313822, - [SMALL_STATE(7393)] = 313829, - [SMALL_STATE(7394)] = 313836, - [SMALL_STATE(7395)] = 313843, - [SMALL_STATE(7396)] = 313850, - [SMALL_STATE(7397)] = 313857, - [SMALL_STATE(7398)] = 313864, - [SMALL_STATE(7399)] = 313871, - [SMALL_STATE(7400)] = 313878, - [SMALL_STATE(7401)] = 313885, - [SMALL_STATE(7402)] = 313892, - [SMALL_STATE(7403)] = 313899, - [SMALL_STATE(7404)] = 313906, - [SMALL_STATE(7405)] = 313913, - [SMALL_STATE(7406)] = 313920, - [SMALL_STATE(7407)] = 313927, - [SMALL_STATE(7408)] = 313934, - [SMALL_STATE(7409)] = 313941, - [SMALL_STATE(7410)] = 313948, - [SMALL_STATE(7411)] = 313955, - [SMALL_STATE(7412)] = 313962, - [SMALL_STATE(7413)] = 313969, - [SMALL_STATE(7414)] = 313976, - [SMALL_STATE(7415)] = 313983, - [SMALL_STATE(7416)] = 313990, - [SMALL_STATE(7417)] = 313997, - [SMALL_STATE(7418)] = 314004, - [SMALL_STATE(7419)] = 314011, - [SMALL_STATE(7420)] = 314018, - [SMALL_STATE(7421)] = 314025, - [SMALL_STATE(7422)] = 314032, - [SMALL_STATE(7423)] = 314039, - [SMALL_STATE(7424)] = 314046, - [SMALL_STATE(7425)] = 314053, - [SMALL_STATE(7426)] = 314060, - [SMALL_STATE(7427)] = 314067, - [SMALL_STATE(7428)] = 314074, - [SMALL_STATE(7429)] = 314081, - [SMALL_STATE(7430)] = 314088, - [SMALL_STATE(7431)] = 314095, - [SMALL_STATE(7432)] = 314102, - [SMALL_STATE(7433)] = 314109, - [SMALL_STATE(7434)] = 314116, - [SMALL_STATE(7435)] = 314123, - [SMALL_STATE(7436)] = 314130, - [SMALL_STATE(7437)] = 314137, - [SMALL_STATE(7438)] = 314144, - [SMALL_STATE(7439)] = 314151, - [SMALL_STATE(7440)] = 314158, - [SMALL_STATE(7441)] = 314165, - [SMALL_STATE(7442)] = 314172, - [SMALL_STATE(7443)] = 314179, - [SMALL_STATE(7444)] = 314186, - [SMALL_STATE(7445)] = 314193, - [SMALL_STATE(7446)] = 314200, - [SMALL_STATE(7447)] = 314207, - [SMALL_STATE(7448)] = 314214, - [SMALL_STATE(7449)] = 314221, - [SMALL_STATE(7450)] = 314228, - [SMALL_STATE(7451)] = 314235, - [SMALL_STATE(7452)] = 314242, - [SMALL_STATE(7453)] = 314249, - [SMALL_STATE(7454)] = 314256, - [SMALL_STATE(7455)] = 314263, - [SMALL_STATE(7456)] = 314270, - [SMALL_STATE(7457)] = 314277, - [SMALL_STATE(7458)] = 314284, - [SMALL_STATE(7459)] = 314291, - [SMALL_STATE(7460)] = 314298, - [SMALL_STATE(7461)] = 314305, - [SMALL_STATE(7462)] = 314312, - [SMALL_STATE(7463)] = 314319, - [SMALL_STATE(7464)] = 314326, - [SMALL_STATE(7465)] = 314333, - [SMALL_STATE(7466)] = 314340, - [SMALL_STATE(7467)] = 314347, - [SMALL_STATE(7468)] = 314354, - [SMALL_STATE(7469)] = 314361, - [SMALL_STATE(7470)] = 314368, - [SMALL_STATE(7471)] = 314375, - [SMALL_STATE(7472)] = 314382, - [SMALL_STATE(7473)] = 314389, - [SMALL_STATE(7474)] = 314396, - [SMALL_STATE(7475)] = 314403, - [SMALL_STATE(7476)] = 314410, - [SMALL_STATE(7477)] = 314417, - [SMALL_STATE(7478)] = 314424, - [SMALL_STATE(7479)] = 314431, - [SMALL_STATE(7480)] = 314438, - [SMALL_STATE(7481)] = 314445, - [SMALL_STATE(7482)] = 314452, - [SMALL_STATE(7483)] = 314459, - [SMALL_STATE(7484)] = 314466, - [SMALL_STATE(7485)] = 314473, - [SMALL_STATE(7486)] = 314480, - [SMALL_STATE(7487)] = 314487, - [SMALL_STATE(7488)] = 314494, - [SMALL_STATE(7489)] = 314501, - [SMALL_STATE(7490)] = 314508, - [SMALL_STATE(7491)] = 314515, - [SMALL_STATE(7492)] = 314522, - [SMALL_STATE(7493)] = 314529, - [SMALL_STATE(7494)] = 314536, - [SMALL_STATE(7495)] = 314543, - [SMALL_STATE(7496)] = 314550, - [SMALL_STATE(7497)] = 314557, - [SMALL_STATE(7498)] = 314564, - [SMALL_STATE(7499)] = 314571, - [SMALL_STATE(7500)] = 314578, - [SMALL_STATE(7501)] = 314585, - [SMALL_STATE(7502)] = 314592, - [SMALL_STATE(7503)] = 314599, - [SMALL_STATE(7504)] = 314606, - [SMALL_STATE(7505)] = 314613, - [SMALL_STATE(7506)] = 314620, - [SMALL_STATE(7507)] = 314627, - [SMALL_STATE(7508)] = 314634, - [SMALL_STATE(7509)] = 314641, - [SMALL_STATE(7510)] = 314648, - [SMALL_STATE(7511)] = 314655, - [SMALL_STATE(7512)] = 314662, - [SMALL_STATE(7513)] = 314669, - [SMALL_STATE(7514)] = 314676, - [SMALL_STATE(7515)] = 314683, - [SMALL_STATE(7516)] = 314690, - [SMALL_STATE(7517)] = 314697, - [SMALL_STATE(7518)] = 314704, - [SMALL_STATE(7519)] = 314711, - [SMALL_STATE(7520)] = 314718, - [SMALL_STATE(7521)] = 314725, - [SMALL_STATE(7522)] = 314732, - [SMALL_STATE(7523)] = 314739, - [SMALL_STATE(7524)] = 314746, - [SMALL_STATE(7525)] = 314753, - [SMALL_STATE(7526)] = 314760, - [SMALL_STATE(7527)] = 314767, - [SMALL_STATE(7528)] = 314774, - [SMALL_STATE(7529)] = 314781, - [SMALL_STATE(7530)] = 314788, - [SMALL_STATE(7531)] = 314795, - [SMALL_STATE(7532)] = 314802, - [SMALL_STATE(7533)] = 314809, - [SMALL_STATE(7534)] = 314816, - [SMALL_STATE(7535)] = 314823, - [SMALL_STATE(7536)] = 314830, - [SMALL_STATE(7537)] = 314837, - [SMALL_STATE(7538)] = 314844, - [SMALL_STATE(7539)] = 314851, - [SMALL_STATE(7540)] = 314858, - [SMALL_STATE(7541)] = 314865, - [SMALL_STATE(7542)] = 314872, - [SMALL_STATE(7543)] = 314879, - [SMALL_STATE(7544)] = 314886, - [SMALL_STATE(7545)] = 314893, - [SMALL_STATE(7546)] = 314900, - [SMALL_STATE(7547)] = 314907, - [SMALL_STATE(7548)] = 314914, - [SMALL_STATE(7549)] = 314921, - [SMALL_STATE(7550)] = 314928, - [SMALL_STATE(7551)] = 314935, - [SMALL_STATE(7552)] = 314942, - [SMALL_STATE(7553)] = 314949, - [SMALL_STATE(7554)] = 314956, - [SMALL_STATE(7555)] = 314963, - [SMALL_STATE(7556)] = 314970, - [SMALL_STATE(7557)] = 314977, - [SMALL_STATE(7558)] = 314984, - [SMALL_STATE(7559)] = 314991, - [SMALL_STATE(7560)] = 314998, - [SMALL_STATE(7561)] = 315005, - [SMALL_STATE(7562)] = 315012, - [SMALL_STATE(7563)] = 315019, - [SMALL_STATE(7564)] = 315026, - [SMALL_STATE(7565)] = 315033, - [SMALL_STATE(7566)] = 315040, - [SMALL_STATE(7567)] = 315047, - [SMALL_STATE(7568)] = 315054, - [SMALL_STATE(7569)] = 315061, - [SMALL_STATE(7570)] = 315068, + [SMALL_STATE(560)] = 3948, + [SMALL_STATE(561)] = 4022, + [SMALL_STATE(562)] = 4128, + [SMALL_STATE(563)] = 4234, + [SMALL_STATE(564)] = 4342, + [SMALL_STATE(565)] = 4442, + [SMALL_STATE(566)] = 4512, + [SMALL_STATE(567)] = 4618, + [SMALL_STATE(568)] = 4688, + [SMALL_STATE(569)] = 4788, + [SMALL_STATE(570)] = 4894, + [SMALL_STATE(571)] = 4968, + [SMALL_STATE(572)] = 5042, + [SMALL_STATE(573)] = 5106, + [SMALL_STATE(574)] = 5212, + [SMALL_STATE(575)] = 5286, + [SMALL_STATE(576)] = 5360, + [SMALL_STATE(577)] = 5470, + [SMALL_STATE(578)] = 5582, + [SMALL_STATE(579)] = 5692, + [SMALL_STATE(580)] = 5766, + [SMALL_STATE(581)] = 5874, + [SMALL_STATE(582)] = 5980, + [SMALL_STATE(583)] = 6047, + [SMALL_STATE(584)] = 6148, + [SMALL_STATE(585)] = 6277, + [SMALL_STATE(586)] = 6344, + [SMALL_STATE(587)] = 6417, + [SMALL_STATE(588)] = 6490, + [SMALL_STATE(589)] = 6563, + [SMALL_STATE(590)] = 6636, + [SMALL_STATE(591)] = 6737, + [SMALL_STATE(592)] = 6836, + [SMALL_STATE(593)] = 6905, + [SMALL_STATE(594)] = 7004, + [SMALL_STATE(595)] = 7073, + [SMALL_STATE(596)] = 7202, + [SMALL_STATE(597)] = 7275, + [SMALL_STATE(598)] = 7374, + [SMALL_STATE(599)] = 7479, + [SMALL_STATE(600)] = 7546, + [SMALL_STATE(601)] = 7619, + [SMALL_STATE(602)] = 7718, + [SMALL_STATE(603)] = 7817, + [SMALL_STATE(604)] = 7916, + [SMALL_STATE(605)] = 7985, + [SMALL_STATE(606)] = 8054, + [SMALL_STATE(607)] = 8153, + [SMALL_STATE(608)] = 8282, + [SMALL_STATE(609)] = 8411, + [SMALL_STATE(610)] = 8540, + [SMALL_STATE(611)] = 8669, + [SMALL_STATE(612)] = 8772, + [SMALL_STATE(613)] = 8901, + [SMALL_STATE(614)] = 9006, + [SMALL_STATE(615)] = 9109, + [SMALL_STATE(616)] = 9176, + [SMALL_STATE(617)] = 9281, + [SMALL_STATE(618)] = 9410, + [SMALL_STATE(619)] = 9523, + [SMALL_STATE(620)] = 9636, + [SMALL_STATE(621)] = 9737, + [SMALL_STATE(622)] = 9836, + [SMALL_STATE(623)] = 9904, + [SMALL_STATE(624)] = 10002, + [SMALL_STATE(625)] = 10070, + [SMALL_STATE(626)] = 10168, + [SMALL_STATE(627)] = 10240, + [SMALL_STATE(628)] = 10312, + [SMALL_STATE(629)] = 10410, + [SMALL_STATE(630)] = 10508, + [SMALL_STATE(631)] = 10606, + [SMALL_STATE(632)] = 10704, + [SMALL_STATE(633)] = 10802, + [SMALL_STATE(634)] = 10870, + [SMALL_STATE(635)] = 10968, + [SMALL_STATE(636)] = 11036, + [SMALL_STATE(637)] = 11134, + [SMALL_STATE(638)] = 11206, + [SMALL_STATE(639)] = 11274, + [SMALL_STATE(640)] = 11388, + [SMALL_STATE(641)] = 11488, + [SMALL_STATE(642)] = 11602, + [SMALL_STATE(643)] = 11700, + [SMALL_STATE(644)] = 11772, + [SMALL_STATE(645)] = 11870, + [SMALL_STATE(646)] = 11968, + [SMALL_STATE(647)] = 12040, + [SMALL_STATE(648)] = 12138, + [SMALL_STATE(649)] = 12238, + [SMALL_STATE(650)] = 12336, + [SMALL_STATE(651)] = 12408, + [SMALL_STATE(652)] = 12506, + [SMALL_STATE(653)] = 12574, + [SMALL_STATE(654)] = 12672, + [SMALL_STATE(655)] = 12772, + [SMALL_STATE(656)] = 12870, + [SMALL_STATE(657)] = 12968, + [SMALL_STATE(658)] = 13077, + [SMALL_STATE(659)] = 13148, + [SMALL_STATE(660)] = 13263, + [SMALL_STATE(661)] = 13360, + [SMALL_STATE(662)] = 13459, + [SMALL_STATE(663)] = 13556, + [SMALL_STATE(664)] = 13671, + [SMALL_STATE(665)] = 13768, + [SMALL_STATE(666)] = 13865, + [SMALL_STATE(667)] = 13964, + [SMALL_STATE(668)] = 14035, + [SMALL_STATE(669)] = 14132, + [SMALL_STATE(670)] = 14229, + [SMALL_STATE(671)] = 14326, + [SMALL_STATE(672)] = 14441, + [SMALL_STATE(673)] = 14538, + [SMALL_STATE(674)] = 14635, + [SMALL_STATE(675)] = 14732, + [SMALL_STATE(676)] = 14829, + [SMALL_STATE(677)] = 14944, + [SMALL_STATE(678)] = 15015, + [SMALL_STATE(679)] = 15114, + [SMALL_STATE(680)] = 15211, + [SMALL_STATE(681)] = 15278, + [SMALL_STATE(682)] = 15393, + [SMALL_STATE(683)] = 15490, + [SMALL_STATE(684)] = 15561, + [SMALL_STATE(685)] = 15632, + [SMALL_STATE(686)] = 15703, + [SMALL_STATE(687)] = 15818, + [SMALL_STATE(688)] = 15889, + [SMALL_STATE(689)] = 15956, + [SMALL_STATE(690)] = 16071, + [SMALL_STATE(691)] = 16168, + [SMALL_STATE(692)] = 16267, + [SMALL_STATE(693)] = 16364, + [SMALL_STATE(694)] = 16431, + [SMALL_STATE(695)] = 16498, + [SMALL_STATE(696)] = 16595, + [SMALL_STATE(697)] = 16666, + [SMALL_STATE(698)] = 16733, + [SMALL_STATE(699)] = 16830, + [SMALL_STATE(700)] = 16927, + [SMALL_STATE(701)] = 16998, + [SMALL_STATE(702)] = 17095, + [SMALL_STATE(703)] = 17194, + [SMALL_STATE(704)] = 17309, + [SMALL_STATE(705)] = 17416, + [SMALL_STATE(706)] = 17513, + [SMALL_STATE(707)] = 17628, + [SMALL_STATE(708)] = 17735, + [SMALL_STATE(709)] = 17802, + [SMALL_STATE(710)] = 17899, + [SMALL_STATE(711)] = 18014, + [SMALL_STATE(712)] = 18113, + [SMALL_STATE(713)] = 18210, + [SMALL_STATE(714)] = 18281, + [SMALL_STATE(715)] = 18377, + [SMALL_STATE(716)] = 18447, + [SMALL_STATE(717)] = 18543, + [SMALL_STATE(718)] = 18613, + [SMALL_STATE(719)] = 18683, + [SMALL_STATE(720)] = 18791, + [SMALL_STATE(721)] = 18887, + [SMALL_STATE(722)] = 18983, + [SMALL_STATE(723)] = 19079, + [SMALL_STATE(724)] = 19175, + [SMALL_STATE(725)] = 19235, + [SMALL_STATE(726)] = 19331, + [SMALL_STATE(727)] = 19427, + [SMALL_STATE(728)] = 19537, + [SMALL_STATE(729)] = 19633, + [SMALL_STATE(730)] = 19741, + [SMALL_STATE(731)] = 19835, + [SMALL_STATE(732)] = 19929, + [SMALL_STATE(733)] = 19999, + [SMALL_STATE(734)] = 20069, + [SMALL_STATE(735)] = 20165, + [SMALL_STATE(736)] = 20261, + [SMALL_STATE(737)] = 20331, + [SMALL_STATE(738)] = 20401, + [SMALL_STATE(739)] = 20497, + [SMALL_STATE(740)] = 20567, + [SMALL_STATE(741)] = 20663, + [SMALL_STATE(742)] = 20759, + [SMALL_STATE(743)] = 20855, + [SMALL_STATE(744)] = 20951, + [SMALL_STATE(745)] = 21021, + [SMALL_STATE(746)] = 21091, + [SMALL_STATE(747)] = 21187, + [SMALL_STATE(748)] = 21283, + [SMALL_STATE(749)] = 21379, + [SMALL_STATE(750)] = 21475, + [SMALL_STATE(751)] = 21545, + [SMALL_STATE(752)] = 21615, + [SMALL_STATE(753)] = 21711, + [SMALL_STATE(754)] = 21781, + [SMALL_STATE(755)] = 21877, + [SMALL_STATE(756)] = 21939, + [SMALL_STATE(757)] = 22037, + [SMALL_STATE(758)] = 22135, + [SMALL_STATE(759)] = 22197, + [SMALL_STATE(760)] = 22293, + [SMALL_STATE(761)] = 22395, + [SMALL_STATE(762)] = 22491, + [SMALL_STATE(763)] = 22551, + [SMALL_STATE(764)] = 22653, + [SMALL_STATE(765)] = 22723, + [SMALL_STATE(766)] = 22793, + [SMALL_STATE(767)] = 22891, + [SMALL_STATE(768)] = 22957, + [SMALL_STATE(769)] = 23027, + [SMALL_STATE(770)] = 23093, + [SMALL_STATE(771)] = 23195, + [SMALL_STATE(772)] = 23291, + [SMALL_STATE(773)] = 23360, + [SMALL_STATE(774)] = 23429, + [SMALL_STATE(775)] = 23524, + [SMALL_STATE(776)] = 23593, + [SMALL_STATE(777)] = 23688, + [SMALL_STATE(778)] = 23781, + [SMALL_STATE(779)] = 23874, + [SMALL_STATE(780)] = 23967, + [SMALL_STATE(781)] = 24036, + [SMALL_STATE(782)] = 24129, + [SMALL_STATE(783)] = 24190, + [SMALL_STATE(784)] = 24285, + [SMALL_STATE(785)] = 24354, + [SMALL_STATE(786)] = 24449, + [SMALL_STATE(787)] = 24552, + [SMALL_STATE(788)] = 24621, + [SMALL_STATE(789)] = 24690, + [SMALL_STATE(790)] = 24759, + [SMALL_STATE(791)] = 24828, + [SMALL_STATE(792)] = 24931, + [SMALL_STATE(793)] = 25000, + [SMALL_STATE(794)] = 25069, + [SMALL_STATE(795)] = 25138, + [SMALL_STATE(796)] = 25207, + [SMALL_STATE(797)] = 25276, + [SMALL_STATE(798)] = 25371, + [SMALL_STATE(799)] = 25450, + [SMALL_STATE(800)] = 25511, + [SMALL_STATE(801)] = 25580, + [SMALL_STATE(802)] = 25675, + [SMALL_STATE(803)] = 25770, + [SMALL_STATE(804)] = 25839, + [SMALL_STATE(805)] = 25898, + [SMALL_STATE(806)] = 25977, + [SMALL_STATE(807)] = 26048, + [SMALL_STATE(808)] = 26117, + [SMALL_STATE(809)] = 26212, + [SMALL_STATE(810)] = 26307, + [SMALL_STATE(811)] = 26402, + [SMALL_STATE(812)] = 26475, + [SMALL_STATE(813)] = 26570, + [SMALL_STATE(814)] = 26665, + [SMALL_STATE(815)] = 26760, + [SMALL_STATE(816)] = 26863, + [SMALL_STATE(817)] = 26932, + [SMALL_STATE(818)] = 27001, + [SMALL_STATE(819)] = 27070, + [SMALL_STATE(820)] = 27138, + [SMALL_STATE(821)] = 27206, + [SMALL_STATE(822)] = 27274, + [SMALL_STATE(823)] = 27366, + [SMALL_STATE(824)] = 27458, + [SMALL_STATE(825)] = 27536, + [SMALL_STATE(826)] = 27604, + [SMALL_STATE(827)] = 27672, + [SMALL_STATE(828)] = 27736, + [SMALL_STATE(829)] = 27802, + [SMALL_STATE(830)] = 27870, + [SMALL_STATE(831)] = 27966, + [SMALL_STATE(832)] = 28044, + [SMALL_STATE(833)] = 28108, + [SMALL_STATE(834)] = 28176, + [SMALL_STATE(835)] = 28244, + [SMALL_STATE(836)] = 28308, + [SMALL_STATE(837)] = 28372, + [SMALL_STATE(838)] = 28436, + [SMALL_STATE(839)] = 28500, + [SMALL_STATE(840)] = 28596, + [SMALL_STATE(841)] = 28668, + [SMALL_STATE(842)] = 28762, + [SMALL_STATE(843)] = 28856, + [SMALL_STATE(844)] = 28920, + [SMALL_STATE(845)] = 29016, + [SMALL_STATE(846)] = 29080, + [SMALL_STATE(847)] = 29144, + [SMALL_STATE(848)] = 29238, + [SMALL_STATE(849)] = 29308, + [SMALL_STATE(850)] = 29402, + [SMALL_STATE(851)] = 29466, + [SMALL_STATE(852)] = 29560, + [SMALL_STATE(853)] = 29617, + [SMALL_STATE(854)] = 29712, + [SMALL_STATE(855)] = 29789, + [SMALL_STATE(856)] = 29846, + [SMALL_STATE(857)] = 29923, + [SMALL_STATE(858)] = 29980, + [SMALL_STATE(859)] = 30075, + [SMALL_STATE(860)] = 30144, + [SMALL_STATE(861)] = 30201, + [SMALL_STATE(862)] = 30258, + [SMALL_STATE(863)] = 30315, + [SMALL_STATE(864)] = 30384, + [SMALL_STATE(865)] = 30441, + [SMALL_STATE(866)] = 30498, + [SMALL_STATE(867)] = 30555, + [SMALL_STATE(868)] = 30618, + [SMALL_STATE(869)] = 30675, + [SMALL_STATE(870)] = 30732, + [SMALL_STATE(871)] = 30789, + [SMALL_STATE(872)] = 30884, + [SMALL_STATE(873)] = 30941, + [SMALL_STATE(874)] = 31004, + [SMALL_STATE(875)] = 31115, + [SMALL_STATE(876)] = 31226, + [SMALL_STATE(877)] = 31289, + [SMALL_STATE(878)] = 31352, + [SMALL_STATE(879)] = 31415, + [SMALL_STATE(880)] = 31480, + [SMALL_STATE(881)] = 31557, + [SMALL_STATE(882)] = 31614, + [SMALL_STATE(883)] = 31677, + [SMALL_STATE(884)] = 31788, + [SMALL_STATE(885)] = 31845, + [SMALL_STATE(886)] = 31940, + [SMALL_STATE(887)] = 32035, + [SMALL_STATE(888)] = 32092, + [SMALL_STATE(889)] = 32187, + [SMALL_STATE(890)] = 32250, + [SMALL_STATE(891)] = 32313, + [SMALL_STATE(892)] = 32406, + [SMALL_STATE(893)] = 32463, + [SMALL_STATE(894)] = 32520, + [SMALL_STATE(895)] = 32583, + [SMALL_STATE(896)] = 32660, + [SMALL_STATE(897)] = 32771, + [SMALL_STATE(898)] = 32834, + [SMALL_STATE(899)] = 32905, + [SMALL_STATE(900)] = 33000, + [SMALL_STATE(901)] = 33063, + [SMALL_STATE(902)] = 33126, + [SMALL_STATE(903)] = 33189, + [SMALL_STATE(904)] = 33300, + [SMALL_STATE(905)] = 33393, + [SMALL_STATE(906)] = 33486, + [SMALL_STATE(907)] = 33549, + [SMALL_STATE(908)] = 33644, + [SMALL_STATE(909)] = 33755, + [SMALL_STATE(910)] = 33818, + [SMALL_STATE(911)] = 33889, + [SMALL_STATE(912)] = 33952, + [SMALL_STATE(913)] = 34015, + [SMALL_STATE(914)] = 34078, + [SMALL_STATE(915)] = 34141, + [SMALL_STATE(916)] = 34204, + [SMALL_STATE(917)] = 34267, + [SMALL_STATE(918)] = 34362, + [SMALL_STATE(919)] = 34455, + [SMALL_STATE(920)] = 34550, + [SMALL_STATE(921)] = 34661, + [SMALL_STATE(922)] = 34772, + [SMALL_STATE(923)] = 34867, + [SMALL_STATE(924)] = 34930, + [SMALL_STATE(925)] = 34993, + [SMALL_STATE(926)] = 35050, + [SMALL_STATE(927)] = 35113, + [SMALL_STATE(928)] = 35206, + [SMALL_STATE(929)] = 35268, + [SMALL_STATE(930)] = 35330, + [SMALL_STATE(931)] = 35404, + [SMALL_STATE(932)] = 35472, + [SMALL_STATE(933)] = 35532, + [SMALL_STATE(934)] = 35588, + [SMALL_STATE(935)] = 35644, + [SMALL_STATE(936)] = 35700, + [SMALL_STATE(937)] = 35756, + [SMALL_STATE(938)] = 35812, + [SMALL_STATE(939)] = 35868, + [SMALL_STATE(940)] = 35924, + [SMALL_STATE(941)] = 35986, + [SMALL_STATE(942)] = 36048, + [SMALL_STATE(943)] = 36104, + [SMALL_STATE(944)] = 36160, + [SMALL_STATE(945)] = 36216, + [SMALL_STATE(946)] = 36272, + [SMALL_STATE(947)] = 36338, + [SMALL_STATE(948)] = 36404, + [SMALL_STATE(949)] = 36460, + [SMALL_STATE(950)] = 36516, + [SMALL_STATE(951)] = 36572, + [SMALL_STATE(952)] = 36628, + [SMALL_STATE(953)] = 36684, + [SMALL_STATE(954)] = 36746, + [SMALL_STATE(955)] = 36802, + [SMALL_STATE(956)] = 36858, + [SMALL_STATE(957)] = 36920, + [SMALL_STATE(958)] = 36982, + [SMALL_STATE(959)] = 37044, + [SMALL_STATE(960)] = 37100, + [SMALL_STATE(961)] = 37156, + [SMALL_STATE(962)] = 37212, + [SMALL_STATE(963)] = 37268, + [SMALL_STATE(964)] = 37324, + [SMALL_STATE(965)] = 37380, + [SMALL_STATE(966)] = 37436, + [SMALL_STATE(967)] = 37498, + [SMALL_STATE(968)] = 37554, + [SMALL_STATE(969)] = 37610, + [SMALL_STATE(970)] = 37666, + [SMALL_STATE(971)] = 37722, + [SMALL_STATE(972)] = 37778, + [SMALL_STATE(973)] = 37844, + [SMALL_STATE(974)] = 37910, + [SMALL_STATE(975)] = 37966, + [SMALL_STATE(976)] = 38022, + [SMALL_STATE(977)] = 38078, + [SMALL_STATE(978)] = 38134, + [SMALL_STATE(979)] = 38190, + [SMALL_STATE(980)] = 38252, + [SMALL_STATE(981)] = 38308, + [SMALL_STATE(982)] = 38364, + [SMALL_STATE(983)] = 38420, + [SMALL_STATE(984)] = 38482, + [SMALL_STATE(985)] = 38556, + [SMALL_STATE(986)] = 38630, + [SMALL_STATE(987)] = 38692, + [SMALL_STATE(988)] = 38788, + [SMALL_STATE(989)] = 38850, + [SMALL_STATE(990)] = 38916, + [SMALL_STATE(991)] = 38982, + [SMALL_STATE(992)] = 39056, + [SMALL_STATE(993)] = 39132, + [SMALL_STATE(994)] = 39194, + [SMALL_STATE(995)] = 39290, + [SMALL_STATE(996)] = 39352, + [SMALL_STATE(997)] = 39416, + [SMALL_STATE(998)] = 39486, + [SMALL_STATE(999)] = 39580, + [SMALL_STATE(1000)] = 39672, + [SMALL_STATE(1001)] = 39764, + [SMALL_STATE(1002)] = 39856, + [SMALL_STATE(1003)] = 39948, + [SMALL_STATE(1004)] = 40042, + [SMALL_STATE(1005)] = 40134, + [SMALL_STATE(1006)] = 40228, + [SMALL_STATE(1007)] = 40322, + [SMALL_STATE(1008)] = 40398, + [SMALL_STATE(1009)] = 40492, + [SMALL_STATE(1010)] = 40586, + [SMALL_STATE(1011)] = 40648, + [SMALL_STATE(1012)] = 40710, + [SMALL_STATE(1013)] = 40806, + [SMALL_STATE(1014)] = 40900, + [SMALL_STATE(1015)] = 40966, + [SMALL_STATE(1016)] = 41032, + [SMALL_STATE(1017)] = 41094, + [SMALL_STATE(1018)] = 41156, + [SMALL_STATE(1019)] = 41250, + [SMALL_STATE(1020)] = 41344, + [SMALL_STATE(1021)] = 41438, + [SMALL_STATE(1022)] = 41532, + [SMALL_STATE(1023)] = 41626, + [SMALL_STATE(1024)] = 41688, + [SMALL_STATE(1025)] = 41750, + [SMALL_STATE(1026)] = 41812, + [SMALL_STATE(1027)] = 41872, + [SMALL_STATE(1028)] = 41934, + [SMALL_STATE(1029)] = 41998, + [SMALL_STATE(1030)] = 42068, + [SMALL_STATE(1031)] = 42134, + [SMALL_STATE(1032)] = 42200, + [SMALL_STATE(1033)] = 42268, + [SMALL_STATE(1034)] = 42360, + [SMALL_STATE(1035)] = 42452, + [SMALL_STATE(1036)] = 42514, + [SMALL_STATE(1037)] = 42576, + [SMALL_STATE(1038)] = 42638, + [SMALL_STATE(1039)] = 42699, + [SMALL_STATE(1040)] = 42754, + [SMALL_STATE(1041)] = 42809, + [SMALL_STATE(1042)] = 42864, + [SMALL_STATE(1043)] = 42919, + [SMALL_STATE(1044)] = 42980, + [SMALL_STATE(1045)] = 43041, + [SMALL_STATE(1046)] = 43106, + [SMALL_STATE(1047)] = 43161, + [SMALL_STATE(1048)] = 43222, + [SMALL_STATE(1049)] = 43277, + [SMALL_STATE(1050)] = 43338, + [SMALL_STATE(1051)] = 43399, + [SMALL_STATE(1052)] = 43454, + [SMALL_STATE(1053)] = 43509, + [SMALL_STATE(1054)] = 43570, + [SMALL_STATE(1055)] = 43635, + [SMALL_STATE(1056)] = 43700, + [SMALL_STATE(1057)] = 43759, + [SMALL_STATE(1058)] = 43824, + [SMALL_STATE(1059)] = 43885, + [SMALL_STATE(1060)] = 43940, + [SMALL_STATE(1061)] = 43995, + [SMALL_STATE(1062)] = 44056, + [SMALL_STATE(1063)] = 44121, + [SMALL_STATE(1064)] = 44186, + [SMALL_STATE(1065)] = 44241, + [SMALL_STATE(1066)] = 44296, + [SMALL_STATE(1067)] = 44357, + [SMALL_STATE(1068)] = 44418, + [SMALL_STATE(1069)] = 44483, + [SMALL_STATE(1070)] = 44544, + [SMALL_STATE(1071)] = 44605, + [SMALL_STATE(1072)] = 44666, + [SMALL_STATE(1073)] = 44727, + [SMALL_STATE(1074)] = 44788, + [SMALL_STATE(1075)] = 44843, + [SMALL_STATE(1076)] = 44936, + [SMALL_STATE(1077)] = 44997, + [SMALL_STATE(1078)] = 45052, + [SMALL_STATE(1079)] = 45113, + [SMALL_STATE(1080)] = 45174, + [SMALL_STATE(1081)] = 45235, + [SMALL_STATE(1082)] = 45296, + [SMALL_STATE(1083)] = 45389, + [SMALL_STATE(1084)] = 45450, + [SMALL_STATE(1085)] = 45515, + [SMALL_STATE(1086)] = 45580, + [SMALL_STATE(1087)] = 45641, + [SMALL_STATE(1088)] = 45702, + [SMALL_STATE(1089)] = 45763, + [SMALL_STATE(1090)] = 45818, + [SMALL_STATE(1091)] = 45879, + [SMALL_STATE(1092)] = 45934, + [SMALL_STATE(1093)] = 45989, + [SMALL_STATE(1094)] = 46050, + [SMALL_STATE(1095)] = 46111, + [SMALL_STATE(1096)] = 46166, + [SMALL_STATE(1097)] = 46221, + [SMALL_STATE(1098)] = 46282, + [SMALL_STATE(1099)] = 46343, + [SMALL_STATE(1100)] = 46404, + [SMALL_STATE(1101)] = 46465, + [SMALL_STATE(1102)] = 46530, + [SMALL_STATE(1103)] = 46595, + [SMALL_STATE(1104)] = 46660, + [SMALL_STATE(1105)] = 46715, + [SMALL_STATE(1106)] = 46770, + [SMALL_STATE(1107)] = 46863, + [SMALL_STATE(1108)] = 46922, + [SMALL_STATE(1109)] = 47015, + [SMALL_STATE(1110)] = 47080, + [SMALL_STATE(1111)] = 47141, + [SMALL_STATE(1112)] = 47202, + [SMALL_STATE(1113)] = 47267, + [SMALL_STATE(1114)] = 47328, + [SMALL_STATE(1115)] = 47383, + [SMALL_STATE(1116)] = 47444, + [SMALL_STATE(1117)] = 47505, + [SMALL_STATE(1118)] = 47570, + [SMALL_STATE(1119)] = 47631, + [SMALL_STATE(1120)] = 47686, + [SMALL_STATE(1121)] = 47779, + [SMALL_STATE(1122)] = 47872, + [SMALL_STATE(1123)] = 47965, + [SMALL_STATE(1124)] = 48020, + [SMALL_STATE(1125)] = 48113, + [SMALL_STATE(1126)] = 48168, + [SMALL_STATE(1127)] = 48261, + [SMALL_STATE(1128)] = 48316, + [SMALL_STATE(1129)] = 48377, + [SMALL_STATE(1130)] = 48438, + [SMALL_STATE(1131)] = 48503, + [SMALL_STATE(1132)] = 48564, + [SMALL_STATE(1133)] = 48625, + [SMALL_STATE(1134)] = 48690, + [SMALL_STATE(1135)] = 48745, + [SMALL_STATE(1136)] = 48810, + [SMALL_STATE(1137)] = 48865, + [SMALL_STATE(1138)] = 48920, + [SMALL_STATE(1139)] = 48975, + [SMALL_STATE(1140)] = 49036, + [SMALL_STATE(1141)] = 49097, + [SMALL_STATE(1142)] = 49152, + [SMALL_STATE(1143)] = 49207, + [SMALL_STATE(1144)] = 49262, + [SMALL_STATE(1145)] = 49317, + [SMALL_STATE(1146)] = 49378, + [SMALL_STATE(1147)] = 49439, + [SMALL_STATE(1148)] = 49494, + [SMALL_STATE(1149)] = 49549, + [SMALL_STATE(1150)] = 49608, + [SMALL_STATE(1151)] = 49663, + [SMALL_STATE(1152)] = 49718, + [SMALL_STATE(1153)] = 49773, + [SMALL_STATE(1154)] = 49832, + [SMALL_STATE(1155)] = 49887, + [SMALL_STATE(1156)] = 49942, + [SMALL_STATE(1157)] = 50001, + [SMALL_STATE(1158)] = 50066, + [SMALL_STATE(1159)] = 50131, + [SMALL_STATE(1160)] = 50186, + [SMALL_STATE(1161)] = 50247, + [SMALL_STATE(1162)] = 50308, + [SMALL_STATE(1163)] = 50371, + [SMALL_STATE(1164)] = 50426, + [SMALL_STATE(1165)] = 50481, + [SMALL_STATE(1166)] = 50536, + [SMALL_STATE(1167)] = 50597, + [SMALL_STATE(1168)] = 50652, + [SMALL_STATE(1169)] = 50707, + [SMALL_STATE(1170)] = 50762, + [SMALL_STATE(1171)] = 50817, + [SMALL_STATE(1172)] = 50872, + [SMALL_STATE(1173)] = 50927, + [SMALL_STATE(1174)] = 50982, + [SMALL_STATE(1175)] = 51037, + [SMALL_STATE(1176)] = 51092, + [SMALL_STATE(1177)] = 51147, + [SMALL_STATE(1178)] = 51206, + [SMALL_STATE(1179)] = 51267, + [SMALL_STATE(1180)] = 51358, + [SMALL_STATE(1181)] = 51449, + [SMALL_STATE(1182)] = 51504, + [SMALL_STATE(1183)] = 51559, + [SMALL_STATE(1184)] = 51618, + [SMALL_STATE(1185)] = 51673, + [SMALL_STATE(1186)] = 51728, + [SMALL_STATE(1187)] = 51791, + [SMALL_STATE(1188)] = 51852, + [SMALL_STATE(1189)] = 51919, + [SMALL_STATE(1190)] = 51979, + [SMALL_STATE(1191)] = 52037, + [SMALL_STATE(1192)] = 52097, + [SMALL_STATE(1193)] = 52151, + [SMALL_STATE(1194)] = 52211, + [SMALL_STATE(1195)] = 52271, + [SMALL_STATE(1196)] = 52331, + [SMALL_STATE(1197)] = 52391, + [SMALL_STATE(1198)] = 52445, + [SMALL_STATE(1199)] = 52499, + [SMALL_STATE(1200)] = 52559, + [SMALL_STATE(1201)] = 52613, + [SMALL_STATE(1202)] = 52673, + [SMALL_STATE(1203)] = 52727, + [SMALL_STATE(1204)] = 52781, + [SMALL_STATE(1205)] = 52835, + [SMALL_STATE(1206)] = 52889, + [SMALL_STATE(1207)] = 52949, + [SMALL_STATE(1208)] = 53013, + [SMALL_STATE(1209)] = 53077, + [SMALL_STATE(1210)] = 53131, + [SMALL_STATE(1211)] = 53185, + [SMALL_STATE(1212)] = 53245, + [SMALL_STATE(1213)] = 53299, + [SMALL_STATE(1214)] = 53359, + [SMALL_STATE(1215)] = 53423, + [SMALL_STATE(1216)] = 53487, + [SMALL_STATE(1217)] = 53545, + [SMALL_STATE(1218)] = 53605, + [SMALL_STATE(1219)] = 53665, + [SMALL_STATE(1220)] = 53773, + [SMALL_STATE(1221)] = 53833, + [SMALL_STATE(1222)] = 53893, + [SMALL_STATE(1223)] = 54001, + [SMALL_STATE(1224)] = 54109, + [SMALL_STATE(1225)] = 54169, + [SMALL_STATE(1226)] = 54223, + [SMALL_STATE(1227)] = 54277, + [SMALL_STATE(1228)] = 54331, + [SMALL_STATE(1229)] = 54439, + [SMALL_STATE(1230)] = 54493, + [SMALL_STATE(1231)] = 54547, + [SMALL_STATE(1232)] = 54601, + [SMALL_STATE(1233)] = 54709, + [SMALL_STATE(1234)] = 54763, + [SMALL_STATE(1235)] = 54871, + [SMALL_STATE(1236)] = 54929, + [SMALL_STATE(1237)] = 54983, + [SMALL_STATE(1238)] = 55047, + [SMALL_STATE(1239)] = 55105, + [SMALL_STATE(1240)] = 55169, + [SMALL_STATE(1241)] = 55223, + [SMALL_STATE(1242)] = 55277, + [SMALL_STATE(1243)] = 55331, + [SMALL_STATE(1244)] = 55385, + [SMALL_STATE(1245)] = 55439, + [SMALL_STATE(1246)] = 55493, + [SMALL_STATE(1247)] = 55547, + [SMALL_STATE(1248)] = 55601, + [SMALL_STATE(1249)] = 55655, + [SMALL_STATE(1250)] = 55709, + [SMALL_STATE(1251)] = 55763, + [SMALL_STATE(1252)] = 55817, + [SMALL_STATE(1253)] = 55877, + [SMALL_STATE(1254)] = 55931, + [SMALL_STATE(1255)] = 55985, + [SMALL_STATE(1256)] = 56039, + [SMALL_STATE(1257)] = 56093, + [SMALL_STATE(1258)] = 56147, + [SMALL_STATE(1259)] = 56201, + [SMALL_STATE(1260)] = 56255, + [SMALL_STATE(1261)] = 56309, + [SMALL_STATE(1262)] = 56363, + [SMALL_STATE(1263)] = 56423, + [SMALL_STATE(1264)] = 56483, + [SMALL_STATE(1265)] = 56537, + [SMALL_STATE(1266)] = 56591, + [SMALL_STATE(1267)] = 56645, + [SMALL_STATE(1268)] = 56699, + [SMALL_STATE(1269)] = 56753, + [SMALL_STATE(1270)] = 56813, + [SMALL_STATE(1271)] = 56873, + [SMALL_STATE(1272)] = 56927, + [SMALL_STATE(1273)] = 56981, + [SMALL_STATE(1274)] = 57035, + [SMALL_STATE(1275)] = 57089, + [SMALL_STATE(1276)] = 57181, + [SMALL_STATE(1277)] = 57273, + [SMALL_STATE(1278)] = 57331, + [SMALL_STATE(1279)] = 57385, + [SMALL_STATE(1280)] = 57439, + [SMALL_STATE(1281)] = 57493, + [SMALL_STATE(1282)] = 57547, + [SMALL_STATE(1283)] = 57601, + [SMALL_STATE(1284)] = 57661, + [SMALL_STATE(1285)] = 57721, + [SMALL_STATE(1286)] = 57775, + [SMALL_STATE(1287)] = 57829, + [SMALL_STATE(1288)] = 57883, + [SMALL_STATE(1289)] = 57937, + [SMALL_STATE(1290)] = 57997, + [SMALL_STATE(1291)] = 58057, + [SMALL_STATE(1292)] = 58111, + [SMALL_STATE(1293)] = 58171, + [SMALL_STATE(1294)] = 58225, + [SMALL_STATE(1295)] = 58279, + [SMALL_STATE(1296)] = 58333, + [SMALL_STATE(1297)] = 58393, + [SMALL_STATE(1298)] = 58447, + [SMALL_STATE(1299)] = 58501, + [SMALL_STATE(1300)] = 58555, + [SMALL_STATE(1301)] = 58613, + [SMALL_STATE(1302)] = 58667, + [SMALL_STATE(1303)] = 58721, + [SMALL_STATE(1304)] = 58775, + [SMALL_STATE(1305)] = 58829, + [SMALL_STATE(1306)] = 58889, + [SMALL_STATE(1307)] = 58949, + [SMALL_STATE(1308)] = 59009, + [SMALL_STATE(1309)] = 59063, + [SMALL_STATE(1310)] = 59117, + [SMALL_STATE(1311)] = 59171, + [SMALL_STATE(1312)] = 59225, + [SMALL_STATE(1313)] = 59285, + [SMALL_STATE(1314)] = 59345, + [SMALL_STATE(1315)] = 59405, + [SMALL_STATE(1316)] = 59465, + [SMALL_STATE(1317)] = 59525, + [SMALL_STATE(1318)] = 59585, + [SMALL_STATE(1319)] = 59645, + [SMALL_STATE(1320)] = 59705, + [SMALL_STATE(1321)] = 59759, + [SMALL_STATE(1322)] = 59813, + [SMALL_STATE(1323)] = 59867, + [SMALL_STATE(1324)] = 59927, + [SMALL_STATE(1325)] = 59987, + [SMALL_STATE(1326)] = 60041, + [SMALL_STATE(1327)] = 60095, + [SMALL_STATE(1328)] = 60155, + [SMALL_STATE(1329)] = 60215, + [SMALL_STATE(1330)] = 60275, + [SMALL_STATE(1331)] = 60333, + [SMALL_STATE(1332)] = 60393, + [SMALL_STATE(1333)] = 60447, + [SMALL_STATE(1334)] = 60507, + [SMALL_STATE(1335)] = 60561, + [SMALL_STATE(1336)] = 60615, + [SMALL_STATE(1337)] = 60669, + [SMALL_STATE(1338)] = 60733, + [SMALL_STATE(1339)] = 60791, + [SMALL_STATE(1340)] = 60857, + [SMALL_STATE(1341)] = 60921, + [SMALL_STATE(1342)] = 60975, + [SMALL_STATE(1343)] = 61033, + [SMALL_STATE(1344)] = 61087, + [SMALL_STATE(1345)] = 61140, + [SMALL_STATE(1346)] = 61193, + [SMALL_STATE(1347)] = 61252, + [SMALL_STATE(1348)] = 61311, + [SMALL_STATE(1349)] = 61368, + [SMALL_STATE(1350)] = 61421, + [SMALL_STATE(1351)] = 61478, + [SMALL_STATE(1352)] = 61537, + [SMALL_STATE(1353)] = 61590, + [SMALL_STATE(1354)] = 61647, + [SMALL_STATE(1355)] = 61704, + [SMALL_STATE(1356)] = 61757, + [SMALL_STATE(1357)] = 61816, + [SMALL_STATE(1358)] = 61875, + [SMALL_STATE(1359)] = 61928, + [SMALL_STATE(1360)] = 61981, + [SMALL_STATE(1361)] = 62040, + [SMALL_STATE(1362)] = 62099, + [SMALL_STATE(1363)] = 62152, + [SMALL_STATE(1364)] = 62211, + [SMALL_STATE(1365)] = 62264, + [SMALL_STATE(1366)] = 62353, + [SMALL_STATE(1367)] = 62412, + [SMALL_STATE(1368)] = 62465, + [SMALL_STATE(1369)] = 62522, + [SMALL_STATE(1370)] = 62611, + [SMALL_STATE(1371)] = 62670, + [SMALL_STATE(1372)] = 62727, + [SMALL_STATE(1373)] = 62784, + [SMALL_STATE(1374)] = 62837, + [SMALL_STATE(1375)] = 62890, + [SMALL_STATE(1376)] = 62979, + [SMALL_STATE(1377)] = 63036, + [SMALL_STATE(1378)] = 63095, + [SMALL_STATE(1379)] = 63148, + [SMALL_STATE(1380)] = 63201, + [SMALL_STATE(1381)] = 63254, + [SMALL_STATE(1382)] = 63313, + [SMALL_STATE(1383)] = 63366, + [SMALL_STATE(1384)] = 63419, + [SMALL_STATE(1385)] = 63478, + [SMALL_STATE(1386)] = 63537, + [SMALL_STATE(1387)] = 63590, + [SMALL_STATE(1388)] = 63643, + [SMALL_STATE(1389)] = 63696, + [SMALL_STATE(1390)] = 63749, + [SMALL_STATE(1391)] = 63814, + [SMALL_STATE(1392)] = 63867, + [SMALL_STATE(1393)] = 63924, + [SMALL_STATE(1394)] = 63983, + [SMALL_STATE(1395)] = 64036, + [SMALL_STATE(1396)] = 64095, + [SMALL_STATE(1397)] = 64152, + [SMALL_STATE(1398)] = 64205, + [SMALL_STATE(1399)] = 64258, + [SMALL_STATE(1400)] = 64311, + [SMALL_STATE(1401)] = 64364, + [SMALL_STATE(1402)] = 64421, + [SMALL_STATE(1403)] = 64480, + [SMALL_STATE(1404)] = 64533, + [SMALL_STATE(1405)] = 64592, + [SMALL_STATE(1406)] = 64651, + [SMALL_STATE(1407)] = 64710, + [SMALL_STATE(1408)] = 64763, + [SMALL_STATE(1409)] = 64816, + [SMALL_STATE(1410)] = 64875, + [SMALL_STATE(1411)] = 64934, + [SMALL_STATE(1412)] = 64987, + [SMALL_STATE(1413)] = 65046, + [SMALL_STATE(1414)] = 65103, + [SMALL_STATE(1415)] = 65162, + [SMALL_STATE(1416)] = 65221, + [SMALL_STATE(1417)] = 65280, + [SMALL_STATE(1418)] = 65339, + [SMALL_STATE(1419)] = 65392, + [SMALL_STATE(1420)] = 65451, + [SMALL_STATE(1421)] = 65510, + [SMALL_STATE(1422)] = 65563, + [SMALL_STATE(1423)] = 65620, + [SMALL_STATE(1424)] = 65677, + [SMALL_STATE(1425)] = 65736, + [SMALL_STATE(1426)] = 65789, + [SMALL_STATE(1427)] = 65848, + [SMALL_STATE(1428)] = 65907, + [SMALL_STATE(1429)] = 65960, + [SMALL_STATE(1430)] = 66013, + [SMALL_STATE(1431)] = 66070, + [SMALL_STATE(1432)] = 66123, + [SMALL_STATE(1433)] = 66176, + [SMALL_STATE(1434)] = 66229, + [SMALL_STATE(1435)] = 66282, + [SMALL_STATE(1436)] = 66335, + [SMALL_STATE(1437)] = 66388, + [SMALL_STATE(1438)] = 66441, + [SMALL_STATE(1439)] = 66494, + [SMALL_STATE(1440)] = 66547, + [SMALL_STATE(1441)] = 66600, + [SMALL_STATE(1442)] = 66653, + [SMALL_STATE(1443)] = 66706, + [SMALL_STATE(1444)] = 66759, + [SMALL_STATE(1445)] = 66812, + [SMALL_STATE(1446)] = 66881, + [SMALL_STATE(1447)] = 66934, + [SMALL_STATE(1448)] = 66987, + [SMALL_STATE(1449)] = 67040, + [SMALL_STATE(1450)] = 67099, + [SMALL_STATE(1451)] = 67158, + [SMALL_STATE(1452)] = 67217, + [SMALL_STATE(1453)] = 67274, + [SMALL_STATE(1454)] = 67327, + [SMALL_STATE(1455)] = 67386, + [SMALL_STATE(1456)] = 67445, + [SMALL_STATE(1457)] = 67514, + [SMALL_STATE(1458)] = 67567, + [SMALL_STATE(1459)] = 67620, + [SMALL_STATE(1460)] = 67679, + [SMALL_STATE(1461)] = 67738, + [SMALL_STATE(1462)] = 67795, + [SMALL_STATE(1463)] = 67848, + [SMALL_STATE(1464)] = 67901, + [SMALL_STATE(1465)] = 67954, + [SMALL_STATE(1466)] = 68013, + [SMALL_STATE(1467)] = 68066, + [SMALL_STATE(1468)] = 68119, + [SMALL_STATE(1469)] = 68178, + [SMALL_STATE(1470)] = 68237, + [SMALL_STATE(1471)] = 68290, + [SMALL_STATE(1472)] = 68349, + [SMALL_STATE(1473)] = 68406, + [SMALL_STATE(1474)] = 68465, + [SMALL_STATE(1475)] = 68518, + [SMALL_STATE(1476)] = 68575, + [SMALL_STATE(1477)] = 68634, + [SMALL_STATE(1478)] = 68687, + [SMALL_STATE(1479)] = 68746, + [SMALL_STATE(1480)] = 68799, + [SMALL_STATE(1481)] = 68856, + [SMALL_STATE(1482)] = 68909, + [SMALL_STATE(1483)] = 68962, + [SMALL_STATE(1484)] = 69015, + [SMALL_STATE(1485)] = 69074, + [SMALL_STATE(1486)] = 69127, + [SMALL_STATE(1487)] = 69186, + [SMALL_STATE(1488)] = 69239, + [SMALL_STATE(1489)] = 69298, + [SMALL_STATE(1490)] = 69357, + [SMALL_STATE(1491)] = 69416, + [SMALL_STATE(1492)] = 69469, + [SMALL_STATE(1493)] = 69522, + [SMALL_STATE(1494)] = 69575, + [SMALL_STATE(1495)] = 69628, + [SMALL_STATE(1496)] = 69681, + [SMALL_STATE(1497)] = 69770, + [SMALL_STATE(1498)] = 69829, + [SMALL_STATE(1499)] = 69888, + [SMALL_STATE(1500)] = 69941, + [SMALL_STATE(1501)] = 70030, + [SMALL_STATE(1502)] = 70097, + [SMALL_STATE(1503)] = 70156, + [SMALL_STATE(1504)] = 70221, + [SMALL_STATE(1505)] = 70274, + [SMALL_STATE(1506)] = 70327, + [SMALL_STATE(1507)] = 70380, + [SMALL_STATE(1508)] = 70433, + [SMALL_STATE(1509)] = 70492, + [SMALL_STATE(1510)] = 70545, + [SMALL_STATE(1511)] = 70604, + [SMALL_STATE(1512)] = 70663, + [SMALL_STATE(1513)] = 70716, + [SMALL_STATE(1514)] = 70775, + [SMALL_STATE(1515)] = 70834, + [SMALL_STATE(1516)] = 70893, + [SMALL_STATE(1517)] = 70952, + [SMALL_STATE(1518)] = 71011, + [SMALL_STATE(1519)] = 71064, + [SMALL_STATE(1520)] = 71117, + [SMALL_STATE(1521)] = 71170, + [SMALL_STATE(1522)] = 71223, + [SMALL_STATE(1523)] = 71275, + [SMALL_STATE(1524)] = 71333, + [SMALL_STATE(1525)] = 71391, + [SMALL_STATE(1526)] = 71443, + [SMALL_STATE(1527)] = 71495, + [SMALL_STATE(1528)] = 71557, + [SMALL_STATE(1529)] = 71609, + [SMALL_STATE(1530)] = 71667, + [SMALL_STATE(1531)] = 71719, + [SMALL_STATE(1532)] = 71775, + [SMALL_STATE(1533)] = 71827, + [SMALL_STATE(1534)] = 71879, + [SMALL_STATE(1535)] = 71937, + [SMALL_STATE(1536)] = 71989, + [SMALL_STATE(1537)] = 72041, + [SMALL_STATE(1538)] = 72093, + [SMALL_STATE(1539)] = 72145, + [SMALL_STATE(1540)] = 72197, + [SMALL_STATE(1541)] = 72249, + [SMALL_STATE(1542)] = 72301, + [SMALL_STATE(1543)] = 72353, + [SMALL_STATE(1544)] = 72411, + [SMALL_STATE(1545)] = 72469, + [SMALL_STATE(1546)] = 72525, + [SMALL_STATE(1547)] = 72577, + [SMALL_STATE(1548)] = 72629, + [SMALL_STATE(1549)] = 72681, + [SMALL_STATE(1550)] = 72737, + [SMALL_STATE(1551)] = 72795, + [SMALL_STATE(1552)] = 72847, + [SMALL_STATE(1553)] = 72899, + [SMALL_STATE(1554)] = 72951, + [SMALL_STATE(1555)] = 73053, + [SMALL_STATE(1556)] = 73105, + [SMALL_STATE(1557)] = 73163, + [SMALL_STATE(1558)] = 73215, + [SMALL_STATE(1559)] = 73267, + [SMALL_STATE(1560)] = 73319, + [SMALL_STATE(1561)] = 73371, + [SMALL_STATE(1562)] = 73423, + [SMALL_STATE(1563)] = 73481, + [SMALL_STATE(1564)] = 73533, + [SMALL_STATE(1565)] = 73585, + [SMALL_STATE(1566)] = 73637, + [SMALL_STATE(1567)] = 73689, + [SMALL_STATE(1568)] = 73741, + [SMALL_STATE(1569)] = 73793, + [SMALL_STATE(1570)] = 73851, + [SMALL_STATE(1571)] = 73903, + [SMALL_STATE(1572)] = 73955, + [SMALL_STATE(1573)] = 74007, + [SMALL_STATE(1574)] = 74059, + [SMALL_STATE(1575)] = 74111, + [SMALL_STATE(1576)] = 74163, + [SMALL_STATE(1577)] = 74215, + [SMALL_STATE(1578)] = 74267, + [SMALL_STATE(1579)] = 74319, + [SMALL_STATE(1580)] = 74371, + [SMALL_STATE(1581)] = 74423, + [SMALL_STATE(1582)] = 74475, + [SMALL_STATE(1583)] = 74531, + [SMALL_STATE(1584)] = 74583, + [SMALL_STATE(1585)] = 74635, + [SMALL_STATE(1586)] = 74687, + [SMALL_STATE(1587)] = 74739, + [SMALL_STATE(1588)] = 74791, + [SMALL_STATE(1589)] = 74843, + [SMALL_STATE(1590)] = 74895, + [SMALL_STATE(1591)] = 74947, + [SMALL_STATE(1592)] = 75005, + [SMALL_STATE(1593)] = 75057, + [SMALL_STATE(1594)] = 75115, + [SMALL_STATE(1595)] = 75217, + [SMALL_STATE(1596)] = 75269, + [SMALL_STATE(1597)] = 75327, + [SMALL_STATE(1598)] = 75395, + [SMALL_STATE(1599)] = 75447, + [SMALL_STATE(1600)] = 75505, + [SMALL_STATE(1601)] = 75563, + [SMALL_STATE(1602)] = 75615, + [SMALL_STATE(1603)] = 75667, + [SMALL_STATE(1604)] = 75723, + [SMALL_STATE(1605)] = 75781, + [SMALL_STATE(1606)] = 75833, + [SMALL_STATE(1607)] = 75885, + [SMALL_STATE(1608)] = 75937, + [SMALL_STATE(1609)] = 75989, + [SMALL_STATE(1610)] = 76077, + [SMALL_STATE(1611)] = 76129, + [SMALL_STATE(1612)] = 76217, + [SMALL_STATE(1613)] = 76269, + [SMALL_STATE(1614)] = 76327, + [SMALL_STATE(1615)] = 76379, + [SMALL_STATE(1616)] = 76431, + [SMALL_STATE(1617)] = 76483, + [SMALL_STATE(1618)] = 76535, + [SMALL_STATE(1619)] = 76591, + [SMALL_STATE(1620)] = 76643, + [SMALL_STATE(1621)] = 76695, + [SMALL_STATE(1622)] = 76747, + [SMALL_STATE(1623)] = 76799, + [SMALL_STATE(1624)] = 76851, + [SMALL_STATE(1625)] = 76903, + [SMALL_STATE(1626)] = 76955, + [SMALL_STATE(1627)] = 77007, + [SMALL_STATE(1628)] = 77059, + [SMALL_STATE(1629)] = 77111, + [SMALL_STATE(1630)] = 77163, + [SMALL_STATE(1631)] = 77223, + [SMALL_STATE(1632)] = 77283, + [SMALL_STATE(1633)] = 77335, + [SMALL_STATE(1634)] = 77387, + [SMALL_STATE(1635)] = 77439, + [SMALL_STATE(1636)] = 77509, + [SMALL_STATE(1637)] = 77567, + [SMALL_STATE(1638)] = 77619, + [SMALL_STATE(1639)] = 77677, + [SMALL_STATE(1640)] = 77735, + [SMALL_STATE(1641)] = 77791, + [SMALL_STATE(1642)] = 77843, + [SMALL_STATE(1643)] = 77895, + [SMALL_STATE(1644)] = 77947, + [SMALL_STATE(1645)] = 77999, + [SMALL_STATE(1646)] = 78051, + [SMALL_STATE(1647)] = 78103, + [SMALL_STATE(1648)] = 78159, + [SMALL_STATE(1649)] = 78261, + [SMALL_STATE(1650)] = 78313, + [SMALL_STATE(1651)] = 78365, + [SMALL_STATE(1652)] = 78417, + [SMALL_STATE(1653)] = 78469, + [SMALL_STATE(1654)] = 78521, + [SMALL_STATE(1655)] = 78573, + [SMALL_STATE(1656)] = 78631, + [SMALL_STATE(1657)] = 78683, + [SMALL_STATE(1658)] = 78739, + [SMALL_STATE(1659)] = 78791, + [SMALL_STATE(1660)] = 78843, + [SMALL_STATE(1661)] = 78895, + [SMALL_STATE(1662)] = 78947, + [SMALL_STATE(1663)] = 78999, + [SMALL_STATE(1664)] = 79051, + [SMALL_STATE(1665)] = 79153, + [SMALL_STATE(1666)] = 79205, + [SMALL_STATE(1667)] = 79257, + [SMALL_STATE(1668)] = 79309, + [SMALL_STATE(1669)] = 79361, + [SMALL_STATE(1670)] = 79425, + [SMALL_STATE(1671)] = 79477, + [SMALL_STATE(1672)] = 79529, + [SMALL_STATE(1673)] = 79587, + [SMALL_STATE(1674)] = 79639, + [SMALL_STATE(1675)] = 79695, + [SMALL_STATE(1676)] = 79747, + [SMALL_STATE(1677)] = 79803, + [SMALL_STATE(1678)] = 79855, + [SMALL_STATE(1679)] = 79907, + [SMALL_STATE(1680)] = 79965, + [SMALL_STATE(1681)] = 80017, + [SMALL_STATE(1682)] = 80069, + [SMALL_STATE(1683)] = 80121, + [SMALL_STATE(1684)] = 80173, + [SMALL_STATE(1685)] = 80225, + [SMALL_STATE(1686)] = 80277, + [SMALL_STATE(1687)] = 80333, + [SMALL_STATE(1688)] = 80385, + [SMALL_STATE(1689)] = 80437, + [SMALL_STATE(1690)] = 80489, + [SMALL_STATE(1691)] = 80541, + [SMALL_STATE(1692)] = 80593, + [SMALL_STATE(1693)] = 80645, + [SMALL_STATE(1694)] = 80697, + [SMALL_STATE(1695)] = 80749, + [SMALL_STATE(1696)] = 80851, + [SMALL_STATE(1697)] = 80907, + [SMALL_STATE(1698)] = 80959, + [SMALL_STATE(1699)] = 81011, + [SMALL_STATE(1700)] = 81069, + [SMALL_STATE(1701)] = 81121, + [SMALL_STATE(1702)] = 81179, + [SMALL_STATE(1703)] = 81237, + [SMALL_STATE(1704)] = 81295, + [SMALL_STATE(1705)] = 81353, + [SMALL_STATE(1706)] = 81409, + [SMALL_STATE(1707)] = 81467, + [SMALL_STATE(1708)] = 81525, + [SMALL_STATE(1709)] = 81583, + [SMALL_STATE(1710)] = 81635, + [SMALL_STATE(1711)] = 81693, + [SMALL_STATE(1712)] = 81745, + [SMALL_STATE(1713)] = 81801, + [SMALL_STATE(1714)] = 81859, + [SMALL_STATE(1715)] = 81917, + [SMALL_STATE(1716)] = 81975, + [SMALL_STATE(1717)] = 82033, + [SMALL_STATE(1718)] = 82091, + [SMALL_STATE(1719)] = 82143, + [SMALL_STATE(1720)] = 82195, + [SMALL_STATE(1721)] = 82247, + [SMALL_STATE(1722)] = 82299, + [SMALL_STATE(1723)] = 82351, + [SMALL_STATE(1724)] = 82403, + [SMALL_STATE(1725)] = 82455, + [SMALL_STATE(1726)] = 82513, + [SMALL_STATE(1727)] = 82565, + [SMALL_STATE(1728)] = 82667, + [SMALL_STATE(1729)] = 82725, + [SMALL_STATE(1730)] = 82777, + [SMALL_STATE(1731)] = 82835, + [SMALL_STATE(1732)] = 82893, + [SMALL_STATE(1733)] = 82951, + [SMALL_STATE(1734)] = 83003, + [SMALL_STATE(1735)] = 83055, + [SMALL_STATE(1736)] = 83107, + [SMALL_STATE(1737)] = 83159, + [SMALL_STATE(1738)] = 83217, + [SMALL_STATE(1739)] = 83275, + [SMALL_STATE(1740)] = 83327, + [SMALL_STATE(1741)] = 83385, + [SMALL_STATE(1742)] = 83437, + [SMALL_STATE(1743)] = 83495, + [SMALL_STATE(1744)] = 83547, + [SMALL_STATE(1745)] = 83605, + [SMALL_STATE(1746)] = 83665, + [SMALL_STATE(1747)] = 83717, + [SMALL_STATE(1748)] = 83775, + [SMALL_STATE(1749)] = 83827, + [SMALL_STATE(1750)] = 83885, + [SMALL_STATE(1751)] = 83937, + [SMALL_STATE(1752)] = 83989, + [SMALL_STATE(1753)] = 84041, + [SMALL_STATE(1754)] = 84099, + [SMALL_STATE(1755)] = 84151, + [SMALL_STATE(1756)] = 84209, + [SMALL_STATE(1757)] = 84267, + [SMALL_STATE(1758)] = 84325, + [SMALL_STATE(1759)] = 84383, + [SMALL_STATE(1760)] = 84435, + [SMALL_STATE(1761)] = 84487, + [SMALL_STATE(1762)] = 84545, + [SMALL_STATE(1763)] = 84607, + [SMALL_STATE(1764)] = 84659, + [SMALL_STATE(1765)] = 84711, + [SMALL_STATE(1766)] = 84762, + [SMALL_STATE(1767)] = 84819, + [SMALL_STATE(1768)] = 84870, + [SMALL_STATE(1769)] = 84925, + [SMALL_STATE(1770)] = 84976, + [SMALL_STATE(1771)] = 85027, + [SMALL_STATE(1772)] = 85078, + [SMALL_STATE(1773)] = 85129, + [SMALL_STATE(1774)] = 85180, + [SMALL_STATE(1775)] = 85231, + [SMALL_STATE(1776)] = 85286, + [SMALL_STATE(1777)] = 85337, + [SMALL_STATE(1778)] = 85388, + [SMALL_STATE(1779)] = 85439, + [SMALL_STATE(1780)] = 85494, + [SMALL_STATE(1781)] = 85545, + [SMALL_STATE(1782)] = 85596, + [SMALL_STATE(1783)] = 85647, + [SMALL_STATE(1784)] = 85698, + [SMALL_STATE(1785)] = 85755, + [SMALL_STATE(1786)] = 85806, + [SMALL_STATE(1787)] = 85857, + [SMALL_STATE(1788)] = 85908, + [SMALL_STATE(1789)] = 85963, + [SMALL_STATE(1790)] = 86014, + [SMALL_STATE(1791)] = 86113, + [SMALL_STATE(1792)] = 86164, + [SMALL_STATE(1793)] = 86221, + [SMALL_STATE(1794)] = 86278, + [SMALL_STATE(1795)] = 86335, + [SMALL_STATE(1796)] = 86434, + [SMALL_STATE(1797)] = 86485, + [SMALL_STATE(1798)] = 86536, + [SMALL_STATE(1799)] = 86587, + [SMALL_STATE(1800)] = 86642, + [SMALL_STATE(1801)] = 86697, + [SMALL_STATE(1802)] = 86754, + [SMALL_STATE(1803)] = 86805, + [SMALL_STATE(1804)] = 86856, + [SMALL_STATE(1805)] = 86907, + [SMALL_STATE(1806)] = 86958, + [SMALL_STATE(1807)] = 87009, + [SMALL_STATE(1808)] = 87060, + [SMALL_STATE(1809)] = 87111, + [SMALL_STATE(1810)] = 87162, + [SMALL_STATE(1811)] = 87251, + [SMALL_STATE(1812)] = 87302, + [SMALL_STATE(1813)] = 87359, + [SMALL_STATE(1814)] = 87414, + [SMALL_STATE(1815)] = 87465, + [SMALL_STATE(1816)] = 87516, + [SMALL_STATE(1817)] = 87567, + [SMALL_STATE(1818)] = 87626, + [SMALL_STATE(1819)] = 87685, + [SMALL_STATE(1820)] = 87736, + [SMALL_STATE(1821)] = 87787, + [SMALL_STATE(1822)] = 87886, + [SMALL_STATE(1823)] = 87937, + [SMALL_STATE(1824)] = 87988, + [SMALL_STATE(1825)] = 88039, + [SMALL_STATE(1826)] = 88090, + [SMALL_STATE(1827)] = 88145, + [SMALL_STATE(1828)] = 88196, + [SMALL_STATE(1829)] = 88247, + [SMALL_STATE(1830)] = 88298, + [SMALL_STATE(1831)] = 88353, + [SMALL_STATE(1832)] = 88404, + [SMALL_STATE(1833)] = 88455, + [SMALL_STATE(1834)] = 88510, + [SMALL_STATE(1835)] = 88609, + [SMALL_STATE(1836)] = 88660, + [SMALL_STATE(1837)] = 88711, + [SMALL_STATE(1838)] = 88766, + [SMALL_STATE(1839)] = 88817, + [SMALL_STATE(1840)] = 88868, + [SMALL_STATE(1841)] = 88919, + [SMALL_STATE(1842)] = 88970, + [SMALL_STATE(1843)] = 89021, + [SMALL_STATE(1844)] = 89078, + [SMALL_STATE(1845)] = 89129, + [SMALL_STATE(1846)] = 89180, + [SMALL_STATE(1847)] = 89235, + [SMALL_STATE(1848)] = 89286, + [SMALL_STATE(1849)] = 89343, + [SMALL_STATE(1850)] = 89398, + [SMALL_STATE(1851)] = 89497, + [SMALL_STATE(1852)] = 89548, + [SMALL_STATE(1853)] = 89599, + [SMALL_STATE(1854)] = 89650, + [SMALL_STATE(1855)] = 89701, + [SMALL_STATE(1856)] = 89752, + [SMALL_STATE(1857)] = 89803, + [SMALL_STATE(1858)] = 89854, + [SMALL_STATE(1859)] = 89911, + [SMALL_STATE(1860)] = 89962, + [SMALL_STATE(1861)] = 90013, + [SMALL_STATE(1862)] = 90064, + [SMALL_STATE(1863)] = 90115, + [SMALL_STATE(1864)] = 90172, + [SMALL_STATE(1865)] = 90229, + [SMALL_STATE(1866)] = 90328, + [SMALL_STATE(1867)] = 90379, + [SMALL_STATE(1868)] = 90478, + [SMALL_STATE(1869)] = 90529, + [SMALL_STATE(1870)] = 90580, + [SMALL_STATE(1871)] = 90631, + [SMALL_STATE(1872)] = 90688, + [SMALL_STATE(1873)] = 90743, + [SMALL_STATE(1874)] = 90798, + [SMALL_STATE(1875)] = 90897, + [SMALL_STATE(1876)] = 90952, + [SMALL_STATE(1877)] = 91007, + [SMALL_STATE(1878)] = 91058, + [SMALL_STATE(1879)] = 91109, + [SMALL_STATE(1880)] = 91166, + [SMALL_STATE(1881)] = 91221, + [SMALL_STATE(1882)] = 91272, + [SMALL_STATE(1883)] = 91323, + [SMALL_STATE(1884)] = 91380, + [SMALL_STATE(1885)] = 91435, + [SMALL_STATE(1886)] = 91486, + [SMALL_STATE(1887)] = 91541, + [SMALL_STATE(1888)] = 91640, + [SMALL_STATE(1889)] = 91691, + [SMALL_STATE(1890)] = 91742, + [SMALL_STATE(1891)] = 91793, + [SMALL_STATE(1892)] = 91850, + [SMALL_STATE(1893)] = 91901, + [SMALL_STATE(1894)] = 92000, + [SMALL_STATE(1895)] = 92051, + [SMALL_STATE(1896)] = 92106, + [SMALL_STATE(1897)] = 92161, + [SMALL_STATE(1898)] = 92212, + [SMALL_STATE(1899)] = 92269, + [SMALL_STATE(1900)] = 92320, + [SMALL_STATE(1901)] = 92371, + [SMALL_STATE(1902)] = 92422, + [SMALL_STATE(1903)] = 92473, + [SMALL_STATE(1904)] = 92530, + [SMALL_STATE(1905)] = 92585, + [SMALL_STATE(1906)] = 92674, + [SMALL_STATE(1907)] = 92731, + [SMALL_STATE(1908)] = 92782, + [SMALL_STATE(1909)] = 92833, + [SMALL_STATE(1910)] = 92932, + [SMALL_STATE(1911)] = 92987, + [SMALL_STATE(1912)] = 93038, + [SMALL_STATE(1913)] = 93089, + [SMALL_STATE(1914)] = 93140, + [SMALL_STATE(1915)] = 93197, + [SMALL_STATE(1916)] = 93254, + [SMALL_STATE(1917)] = 93305, + [SMALL_STATE(1918)] = 93360, + [SMALL_STATE(1919)] = 93411, + [SMALL_STATE(1920)] = 93468, + [SMALL_STATE(1921)] = 93525, + [SMALL_STATE(1922)] = 93582, + [SMALL_STATE(1923)] = 93633, + [SMALL_STATE(1924)] = 93732, + [SMALL_STATE(1925)] = 93831, + [SMALL_STATE(1926)] = 93882, + [SMALL_STATE(1927)] = 93937, + [SMALL_STATE(1928)] = 93992, + [SMALL_STATE(1929)] = 94043, + [SMALL_STATE(1930)] = 94100, + [SMALL_STATE(1931)] = 94157, + [SMALL_STATE(1932)] = 94214, + [SMALL_STATE(1933)] = 94271, + [SMALL_STATE(1934)] = 94326, + [SMALL_STATE(1935)] = 94383, + [SMALL_STATE(1936)] = 94434, + [SMALL_STATE(1937)] = 94485, + [SMALL_STATE(1938)] = 94536, + [SMALL_STATE(1939)] = 94587, + [SMALL_STATE(1940)] = 94644, + [SMALL_STATE(1941)] = 94701, + [SMALL_STATE(1942)] = 94758, + [SMALL_STATE(1943)] = 94815, + [SMALL_STATE(1944)] = 94872, + [SMALL_STATE(1945)] = 94923, + [SMALL_STATE(1946)] = 94974, + [SMALL_STATE(1947)] = 95029, + [SMALL_STATE(1948)] = 95086, + [SMALL_STATE(1949)] = 95143, + [SMALL_STATE(1950)] = 95198, + [SMALL_STATE(1951)] = 95249, + [SMALL_STATE(1952)] = 95300, + [SMALL_STATE(1953)] = 95399, + [SMALL_STATE(1954)] = 95456, + [SMALL_STATE(1955)] = 95555, + [SMALL_STATE(1956)] = 95606, + [SMALL_STATE(1957)] = 95657, + [SMALL_STATE(1958)] = 95712, + [SMALL_STATE(1959)] = 95763, + [SMALL_STATE(1960)] = 95852, + [SMALL_STATE(1961)] = 95903, + [SMALL_STATE(1962)] = 95960, + [SMALL_STATE(1963)] = 96011, + [SMALL_STATE(1964)] = 96061, + [SMALL_STATE(1965)] = 96157, + [SMALL_STATE(1966)] = 96253, + [SMALL_STATE(1967)] = 96349, + [SMALL_STATE(1968)] = 96445, + [SMALL_STATE(1969)] = 96541, + [SMALL_STATE(1970)] = 96637, + [SMALL_STATE(1971)] = 96733, + [SMALL_STATE(1972)] = 96829, + [SMALL_STATE(1973)] = 96925, + [SMALL_STATE(1974)] = 97021, + [SMALL_STATE(1975)] = 97117, + [SMALL_STATE(1976)] = 97213, + [SMALL_STATE(1977)] = 97309, + [SMALL_STATE(1978)] = 97365, + [SMALL_STATE(1979)] = 97419, + [SMALL_STATE(1980)] = 97473, + [SMALL_STATE(1981)] = 97529, + [SMALL_STATE(1982)] = 97583, + [SMALL_STATE(1983)] = 97637, + [SMALL_STATE(1984)] = 97691, + [SMALL_STATE(1985)] = 97741, + [SMALL_STATE(1986)] = 97791, + [SMALL_STATE(1987)] = 97841, + [SMALL_STATE(1988)] = 97891, + [SMALL_STATE(1989)] = 97941, + [SMALL_STATE(1990)] = 97991, + [SMALL_STATE(1991)] = 98041, + [SMALL_STATE(1992)] = 98091, + [SMALL_STATE(1993)] = 98141, + [SMALL_STATE(1994)] = 98191, + [SMALL_STATE(1995)] = 98241, + [SMALL_STATE(1996)] = 98291, + [SMALL_STATE(1997)] = 98341, + [SMALL_STATE(1998)] = 98391, + [SMALL_STATE(1999)] = 98441, + [SMALL_STATE(2000)] = 98491, + [SMALL_STATE(2001)] = 98541, + [SMALL_STATE(2002)] = 98591, + [SMALL_STATE(2003)] = 98641, + [SMALL_STATE(2004)] = 98691, + [SMALL_STATE(2005)] = 98741, + [SMALL_STATE(2006)] = 98791, + [SMALL_STATE(2007)] = 98841, + [SMALL_STATE(2008)] = 98891, + [SMALL_STATE(2009)] = 98941, + [SMALL_STATE(2010)] = 98995, + [SMALL_STATE(2011)] = 99045, + [SMALL_STATE(2012)] = 99095, + [SMALL_STATE(2013)] = 99145, + [SMALL_STATE(2014)] = 99195, + [SMALL_STATE(2015)] = 99245, + [SMALL_STATE(2016)] = 99295, + [SMALL_STATE(2017)] = 99345, + [SMALL_STATE(2018)] = 99395, + [SMALL_STATE(2019)] = 99445, + [SMALL_STATE(2020)] = 99495, + [SMALL_STATE(2021)] = 99591, + [SMALL_STATE(2022)] = 99641, + [SMALL_STATE(2023)] = 99691, + [SMALL_STATE(2024)] = 99741, + [SMALL_STATE(2025)] = 99791, + [SMALL_STATE(2026)] = 99841, + [SMALL_STATE(2027)] = 99891, + [SMALL_STATE(2028)] = 99941, + [SMALL_STATE(2029)] = 99991, + [SMALL_STATE(2030)] = 100041, + [SMALL_STATE(2031)] = 100091, + [SMALL_STATE(2032)] = 100145, + [SMALL_STATE(2033)] = 100195, + [SMALL_STATE(2034)] = 100245, + [SMALL_STATE(2035)] = 100295, + [SMALL_STATE(2036)] = 100345, + [SMALL_STATE(2037)] = 100395, + [SMALL_STATE(2038)] = 100445, + [SMALL_STATE(2039)] = 100495, + [SMALL_STATE(2040)] = 100545, + [SMALL_STATE(2041)] = 100595, + [SMALL_STATE(2042)] = 100645, + [SMALL_STATE(2043)] = 100695, + [SMALL_STATE(2044)] = 100745, + [SMALL_STATE(2045)] = 100841, + [SMALL_STATE(2046)] = 100895, + [SMALL_STATE(2047)] = 100945, + [SMALL_STATE(2048)] = 100995, + [SMALL_STATE(2049)] = 101091, + [SMALL_STATE(2050)] = 101187, + [SMALL_STATE(2051)] = 101283, + [SMALL_STATE(2052)] = 101379, + [SMALL_STATE(2053)] = 101475, + [SMALL_STATE(2054)] = 101571, + [SMALL_STATE(2055)] = 101667, + [SMALL_STATE(2056)] = 101763, + [SMALL_STATE(2057)] = 101859, + [SMALL_STATE(2058)] = 101955, + [SMALL_STATE(2059)] = 102051, + [SMALL_STATE(2060)] = 102147, + [SMALL_STATE(2061)] = 102197, + [SMALL_STATE(2062)] = 102293, + [SMALL_STATE(2063)] = 102343, + [SMALL_STATE(2064)] = 102393, + [SMALL_STATE(2065)] = 102489, + [SMALL_STATE(2066)] = 102585, + [SMALL_STATE(2067)] = 102681, + [SMALL_STATE(2068)] = 102777, + [SMALL_STATE(2069)] = 102827, + [SMALL_STATE(2070)] = 102877, + [SMALL_STATE(2071)] = 102927, + [SMALL_STATE(2072)] = 102981, + [SMALL_STATE(2073)] = 103031, + [SMALL_STATE(2074)] = 103081, + [SMALL_STATE(2075)] = 103177, + [SMALL_STATE(2076)] = 103273, + [SMALL_STATE(2077)] = 103327, + [SMALL_STATE(2078)] = 103385, + [SMALL_STATE(2079)] = 103443, + [SMALL_STATE(2080)] = 103497, + [SMALL_STATE(2081)] = 103593, + [SMALL_STATE(2082)] = 103689, + [SMALL_STATE(2083)] = 103749, + [SMALL_STATE(2084)] = 103845, + [SMALL_STATE(2085)] = 103941, + [SMALL_STATE(2086)] = 104037, + [SMALL_STATE(2087)] = 104133, + [SMALL_STATE(2088)] = 104229, + [SMALL_STATE(2089)] = 104325, + [SMALL_STATE(2090)] = 104421, + [SMALL_STATE(2091)] = 104517, + [SMALL_STATE(2092)] = 104613, + [SMALL_STATE(2093)] = 104709, + [SMALL_STATE(2094)] = 104805, + [SMALL_STATE(2095)] = 104901, + [SMALL_STATE(2096)] = 104997, + [SMALL_STATE(2097)] = 105093, + [SMALL_STATE(2098)] = 105189, + [SMALL_STATE(2099)] = 105243, + [SMALL_STATE(2100)] = 105299, + [SMALL_STATE(2101)] = 105355, + [SMALL_STATE(2102)] = 105411, + [SMALL_STATE(2103)] = 105507, + [SMALL_STATE(2104)] = 105603, + [SMALL_STATE(2105)] = 105663, + [SMALL_STATE(2106)] = 105759, + [SMALL_STATE(2107)] = 105809, + [SMALL_STATE(2108)] = 105905, + [SMALL_STATE(2109)] = 106001, + [SMALL_STATE(2110)] = 106061, + [SMALL_STATE(2111)] = 106111, + [SMALL_STATE(2112)] = 106207, + [SMALL_STATE(2113)] = 106303, + [SMALL_STATE(2114)] = 106363, + [SMALL_STATE(2115)] = 106423, + [SMALL_STATE(2116)] = 106483, + [SMALL_STATE(2117)] = 106537, + [SMALL_STATE(2118)] = 106597, + [SMALL_STATE(2119)] = 106647, + [SMALL_STATE(2120)] = 106707, + [SMALL_STATE(2121)] = 106767, + [SMALL_STATE(2122)] = 106827, + [SMALL_STATE(2123)] = 106887, + [SMALL_STATE(2124)] = 106947, + [SMALL_STATE(2125)] = 107007, + [SMALL_STATE(2126)] = 107067, + [SMALL_STATE(2127)] = 107127, + [SMALL_STATE(2128)] = 107187, + [SMALL_STATE(2129)] = 107247, + [SMALL_STATE(2130)] = 107307, + [SMALL_STATE(2131)] = 107367, + [SMALL_STATE(2132)] = 107421, + [SMALL_STATE(2133)] = 107481, + [SMALL_STATE(2134)] = 107541, + [SMALL_STATE(2135)] = 107601, + [SMALL_STATE(2136)] = 107661, + [SMALL_STATE(2137)] = 107721, + [SMALL_STATE(2138)] = 107781, + [SMALL_STATE(2139)] = 107841, + [SMALL_STATE(2140)] = 107901, + [SMALL_STATE(2141)] = 107961, + [SMALL_STATE(2142)] = 108021, + [SMALL_STATE(2143)] = 108081, + [SMALL_STATE(2144)] = 108141, + [SMALL_STATE(2145)] = 108201, + [SMALL_STATE(2146)] = 108261, + [SMALL_STATE(2147)] = 108321, + [SMALL_STATE(2148)] = 108381, + [SMALL_STATE(2149)] = 108441, + [SMALL_STATE(2150)] = 108501, + [SMALL_STATE(2151)] = 108561, + [SMALL_STATE(2152)] = 108621, + [SMALL_STATE(2153)] = 108681, + [SMALL_STATE(2154)] = 108741, + [SMALL_STATE(2155)] = 108801, + [SMALL_STATE(2156)] = 108861, + [SMALL_STATE(2157)] = 108921, + [SMALL_STATE(2158)] = 108981, + [SMALL_STATE(2159)] = 109041, + [SMALL_STATE(2160)] = 109101, + [SMALL_STATE(2161)] = 109161, + [SMALL_STATE(2162)] = 109221, + [SMALL_STATE(2163)] = 109281, + [SMALL_STATE(2164)] = 109341, + [SMALL_STATE(2165)] = 109401, + [SMALL_STATE(2166)] = 109461, + [SMALL_STATE(2167)] = 109521, + [SMALL_STATE(2168)] = 109581, + [SMALL_STATE(2169)] = 109641, + [SMALL_STATE(2170)] = 109701, + [SMALL_STATE(2171)] = 109761, + [SMALL_STATE(2172)] = 109821, + [SMALL_STATE(2173)] = 109881, + [SMALL_STATE(2174)] = 109941, + [SMALL_STATE(2175)] = 110001, + [SMALL_STATE(2176)] = 110061, + [SMALL_STATE(2177)] = 110121, + [SMALL_STATE(2178)] = 110181, + [SMALL_STATE(2179)] = 110241, + [SMALL_STATE(2180)] = 110301, + [SMALL_STATE(2181)] = 110361, + [SMALL_STATE(2182)] = 110421, + [SMALL_STATE(2183)] = 110481, + [SMALL_STATE(2184)] = 110541, + [SMALL_STATE(2185)] = 110601, + [SMALL_STATE(2186)] = 110661, + [SMALL_STATE(2187)] = 110721, + [SMALL_STATE(2188)] = 110781, + [SMALL_STATE(2189)] = 110841, + [SMALL_STATE(2190)] = 110901, + [SMALL_STATE(2191)] = 110951, + [SMALL_STATE(2192)] = 111047, + [SMALL_STATE(2193)] = 111143, + [SMALL_STATE(2194)] = 111199, + [SMALL_STATE(2195)] = 111255, + [SMALL_STATE(2196)] = 111351, + [SMALL_STATE(2197)] = 111405, + [SMALL_STATE(2198)] = 111501, + [SMALL_STATE(2199)] = 111597, + [SMALL_STATE(2200)] = 111693, + [SMALL_STATE(2201)] = 111789, + [SMALL_STATE(2202)] = 111885, + [SMALL_STATE(2203)] = 111981, + [SMALL_STATE(2204)] = 112077, + [SMALL_STATE(2205)] = 112173, + [SMALL_STATE(2206)] = 112223, + [SMALL_STATE(2207)] = 112319, + [SMALL_STATE(2208)] = 112415, + [SMALL_STATE(2209)] = 112465, + [SMALL_STATE(2210)] = 112515, + [SMALL_STATE(2211)] = 112611, + [SMALL_STATE(2212)] = 112661, + [SMALL_STATE(2213)] = 112757, + [SMALL_STATE(2214)] = 112807, + [SMALL_STATE(2215)] = 112903, + [SMALL_STATE(2216)] = 112999, + [SMALL_STATE(2217)] = 113053, + [SMALL_STATE(2218)] = 113149, + [SMALL_STATE(2219)] = 113245, + [SMALL_STATE(2220)] = 113341, + [SMALL_STATE(2221)] = 113391, + [SMALL_STATE(2222)] = 113487, + [SMALL_STATE(2223)] = 113583, + [SMALL_STATE(2224)] = 113679, + [SMALL_STATE(2225)] = 113775, + [SMALL_STATE(2226)] = 113871, + [SMALL_STATE(2227)] = 113967, + [SMALL_STATE(2228)] = 114021, + [SMALL_STATE(2229)] = 114075, + [SMALL_STATE(2230)] = 114129, + [SMALL_STATE(2231)] = 114225, + [SMALL_STATE(2232)] = 114279, + [SMALL_STATE(2233)] = 114333, + [SMALL_STATE(2234)] = 114429, + [SMALL_STATE(2235)] = 114525, + [SMALL_STATE(2236)] = 114621, + [SMALL_STATE(2237)] = 114717, + [SMALL_STATE(2238)] = 114813, + [SMALL_STATE(2239)] = 114909, + [SMALL_STATE(2240)] = 114959, + [SMALL_STATE(2241)] = 115009, + [SMALL_STATE(2242)] = 115067, + [SMALL_STATE(2243)] = 115125, + [SMALL_STATE(2244)] = 115175, + [SMALL_STATE(2245)] = 115225, + [SMALL_STATE(2246)] = 115275, + [SMALL_STATE(2247)] = 115329, + [SMALL_STATE(2248)] = 115425, + [SMALL_STATE(2249)] = 115481, + [SMALL_STATE(2250)] = 115537, + [SMALL_STATE(2251)] = 115597, + [SMALL_STATE(2252)] = 115693, + [SMALL_STATE(2253)] = 115743, + [SMALL_STATE(2254)] = 115839, + [SMALL_STATE(2255)] = 115935, + [SMALL_STATE(2256)] = 116031, + [SMALL_STATE(2257)] = 116127, + [SMALL_STATE(2258)] = 116223, + [SMALL_STATE(2259)] = 116319, + [SMALL_STATE(2260)] = 116415, + [SMALL_STATE(2261)] = 116511, + [SMALL_STATE(2262)] = 116607, + [SMALL_STATE(2263)] = 116703, + [SMALL_STATE(2264)] = 116799, + [SMALL_STATE(2265)] = 116895, + [SMALL_STATE(2266)] = 116991, + [SMALL_STATE(2267)] = 117087, + [SMALL_STATE(2268)] = 117183, + [SMALL_STATE(2269)] = 117279, + [SMALL_STATE(2270)] = 117375, + [SMALL_STATE(2271)] = 117429, + [SMALL_STATE(2272)] = 117525, + [SMALL_STATE(2273)] = 117585, + [SMALL_STATE(2274)] = 117640, + [SMALL_STATE(2275)] = 117689, + [SMALL_STATE(2276)] = 117738, + [SMALL_STATE(2277)] = 117787, + [SMALL_STATE(2278)] = 117836, + [SMALL_STATE(2279)] = 117885, + [SMALL_STATE(2280)] = 117938, + [SMALL_STATE(2281)] = 117987, + [SMALL_STATE(2282)] = 118046, + [SMALL_STATE(2283)] = 118095, + [SMALL_STATE(2284)] = 118148, + [SMALL_STATE(2285)] = 118197, + [SMALL_STATE(2286)] = 118250, + [SMALL_STATE(2287)] = 118299, + [SMALL_STATE(2288)] = 118348, + [SMALL_STATE(2289)] = 118397, + [SMALL_STATE(2290)] = 118450, + [SMALL_STATE(2291)] = 118499, + [SMALL_STATE(2292)] = 118552, + [SMALL_STATE(2293)] = 118601, + [SMALL_STATE(2294)] = 118650, + [SMALL_STATE(2295)] = 118699, + [SMALL_STATE(2296)] = 118748, + [SMALL_STATE(2297)] = 118797, + [SMALL_STATE(2298)] = 118846, + [SMALL_STATE(2299)] = 118895, + [SMALL_STATE(2300)] = 118944, + [SMALL_STATE(2301)] = 118993, + [SMALL_STATE(2302)] = 119042, + [SMALL_STATE(2303)] = 119095, + [SMALL_STATE(2304)] = 119144, + [SMALL_STATE(2305)] = 119193, + [SMALL_STATE(2306)] = 119242, + [SMALL_STATE(2307)] = 119299, + [SMALL_STATE(2308)] = 119356, + [SMALL_STATE(2309)] = 119411, + [SMALL_STATE(2310)] = 119466, + [SMALL_STATE(2311)] = 119521, + [SMALL_STATE(2312)] = 119576, + [SMALL_STATE(2313)] = 119625, + [SMALL_STATE(2314)] = 119674, + [SMALL_STATE(2315)] = 119723, + [SMALL_STATE(2316)] = 119776, + [SMALL_STATE(2317)] = 119825, + [SMALL_STATE(2318)] = 119874, + [SMALL_STATE(2319)] = 119923, + [SMALL_STATE(2320)] = 119976, + [SMALL_STATE(2321)] = 120025, + [SMALL_STATE(2322)] = 120078, + [SMALL_STATE(2323)] = 120131, + [SMALL_STATE(2324)] = 120184, + [SMALL_STATE(2325)] = 120233, + [SMALL_STATE(2326)] = 120282, + [SMALL_STATE(2327)] = 120331, + [SMALL_STATE(2328)] = 120380, + [SMALL_STATE(2329)] = 120429, + [SMALL_STATE(2330)] = 120478, + [SMALL_STATE(2331)] = 120531, + [SMALL_STATE(2332)] = 120580, + [SMALL_STATE(2333)] = 120629, + [SMALL_STATE(2334)] = 120682, + [SMALL_STATE(2335)] = 120735, + [SMALL_STATE(2336)] = 120788, + [SMALL_STATE(2337)] = 120841, + [SMALL_STATE(2338)] = 120890, + [SMALL_STATE(2339)] = 120943, + [SMALL_STATE(2340)] = 120996, + [SMALL_STATE(2341)] = 121049, + [SMALL_STATE(2342)] = 121098, + [SMALL_STATE(2343)] = 121147, + [SMALL_STATE(2344)] = 121202, + [SMALL_STATE(2345)] = 121255, + [SMALL_STATE(2346)] = 121310, + [SMALL_STATE(2347)] = 121365, + [SMALL_STATE(2348)] = 121420, + [SMALL_STATE(2349)] = 121475, + [SMALL_STATE(2350)] = 121530, + [SMALL_STATE(2351)] = 121585, + [SMALL_STATE(2352)] = 121640, + [SMALL_STATE(2353)] = 121695, + [SMALL_STATE(2354)] = 121750, + [SMALL_STATE(2355)] = 121805, + [SMALL_STATE(2356)] = 121860, + [SMALL_STATE(2357)] = 121915, + [SMALL_STATE(2358)] = 121970, + [SMALL_STATE(2359)] = 122023, + [SMALL_STATE(2360)] = 122078, + [SMALL_STATE(2361)] = 122137, + [SMALL_STATE(2362)] = 122192, + [SMALL_STATE(2363)] = 122247, + [SMALL_STATE(2364)] = 122300, + [SMALL_STATE(2365)] = 122352, + [SMALL_STATE(2366)] = 122400, + [SMALL_STATE(2367)] = 122454, + [SMALL_STATE(2368)] = 122508, + [SMALL_STATE(2369)] = 122556, + [SMALL_STATE(2370)] = 122612, + [SMALL_STATE(2371)] = 122706, + [SMALL_STATE(2372)] = 122800, + [SMALL_STATE(2373)] = 122856, + [SMALL_STATE(2374)] = 122950, + [SMALL_STATE(2375)] = 123044, + [SMALL_STATE(2376)] = 123092, + [SMALL_STATE(2377)] = 123140, + [SMALL_STATE(2378)] = 123192, + [SMALL_STATE(2379)] = 123244, + [SMALL_STATE(2380)] = 123338, + [SMALL_STATE(2381)] = 123432, + [SMALL_STATE(2382)] = 123480, + [SMALL_STATE(2383)] = 123532, + [SMALL_STATE(2384)] = 123584, + [SMALL_STATE(2385)] = 123638, + [SMALL_STATE(2386)] = 123692, + [SMALL_STATE(2387)] = 123746, + [SMALL_STATE(2388)] = 123800, + [SMALL_STATE(2389)] = 123854, + [SMALL_STATE(2390)] = 123906, + [SMALL_STATE(2391)] = 123960, + [SMALL_STATE(2392)] = 124012, + [SMALL_STATE(2393)] = 124066, + [SMALL_STATE(2394)] = 124118, + [SMALL_STATE(2395)] = 124170, + [SMALL_STATE(2396)] = 124226, + [SMALL_STATE(2397)] = 124282, + [SMALL_STATE(2398)] = 124334, + [SMALL_STATE(2399)] = 124428, + [SMALL_STATE(2400)] = 124522, + [SMALL_STATE(2401)] = 124616, + [SMALL_STATE(2402)] = 124668, + [SMALL_STATE(2403)] = 124762, + [SMALL_STATE(2404)] = 124814, + [SMALL_STATE(2405)] = 124862, + [SMALL_STATE(2406)] = 124914, + [SMALL_STATE(2407)] = 124970, + [SMALL_STATE(2408)] = 125026, + [SMALL_STATE(2409)] = 125078, + [SMALL_STATE(2410)] = 125130, + [SMALL_STATE(2411)] = 125182, + [SMALL_STATE(2412)] = 125234, + [SMALL_STATE(2413)] = 125286, + [SMALL_STATE(2414)] = 125338, + [SMALL_STATE(2415)] = 125394, + [SMALL_STATE(2416)] = 125446, + [SMALL_STATE(2417)] = 125498, + [SMALL_STATE(2418)] = 125550, + [SMALL_STATE(2419)] = 125602, + [SMALL_STATE(2420)] = 125658, + [SMALL_STATE(2421)] = 125752, + [SMALL_STATE(2422)] = 125846, + [SMALL_STATE(2423)] = 125940, + [SMALL_STATE(2424)] = 125992, + [SMALL_STATE(2425)] = 126040, + [SMALL_STATE(2426)] = 126134, + [SMALL_STATE(2427)] = 126188, + [SMALL_STATE(2428)] = 126242, + [SMALL_STATE(2429)] = 126290, + [SMALL_STATE(2430)] = 126338, + [SMALL_STATE(2431)] = 126394, + [SMALL_STATE(2432)] = 126448, + [SMALL_STATE(2433)] = 126500, + [SMALL_STATE(2434)] = 126594, + [SMALL_STATE(2435)] = 126646, + [SMALL_STATE(2436)] = 126698, + [SMALL_STATE(2437)] = 126750, + [SMALL_STATE(2438)] = 126804, + [SMALL_STATE(2439)] = 126898, + [SMALL_STATE(2440)] = 126952, + [SMALL_STATE(2441)] = 127000, + [SMALL_STATE(2442)] = 127048, + [SMALL_STATE(2443)] = 127100, + [SMALL_STATE(2444)] = 127148, + [SMALL_STATE(2445)] = 127196, + [SMALL_STATE(2446)] = 127244, + [SMALL_STATE(2447)] = 127296, + [SMALL_STATE(2448)] = 127348, + [SMALL_STATE(2449)] = 127404, + [SMALL_STATE(2450)] = 127454, + [SMALL_STATE(2451)] = 127502, + [SMALL_STATE(2452)] = 127550, + [SMALL_STATE(2453)] = 127598, + [SMALL_STATE(2454)] = 127652, + [SMALL_STATE(2455)] = 127706, + [SMALL_STATE(2456)] = 127754, + [SMALL_STATE(2457)] = 127806, + [SMALL_STATE(2458)] = 127858, + [SMALL_STATE(2459)] = 127912, + [SMALL_STATE(2460)] = 127960, + [SMALL_STATE(2461)] = 128008, + [SMALL_STATE(2462)] = 128062, + [SMALL_STATE(2463)] = 128116, + [SMALL_STATE(2464)] = 128170, + [SMALL_STATE(2465)] = 128224, + [SMALL_STATE(2466)] = 128278, + [SMALL_STATE(2467)] = 128326, + [SMALL_STATE(2468)] = 128374, + [SMALL_STATE(2469)] = 128422, + [SMALL_STATE(2470)] = 128474, + [SMALL_STATE(2471)] = 128522, + [SMALL_STATE(2472)] = 128576, + [SMALL_STATE(2473)] = 128624, + [SMALL_STATE(2474)] = 128680, + [SMALL_STATE(2475)] = 128734, + [SMALL_STATE(2476)] = 128782, + [SMALL_STATE(2477)] = 128830, + [SMALL_STATE(2478)] = 128884, + [SMALL_STATE(2479)] = 128940, + [SMALL_STATE(2480)] = 128988, + [SMALL_STATE(2481)] = 129036, + [SMALL_STATE(2482)] = 129084, + [SMALL_STATE(2483)] = 129132, + [SMALL_STATE(2484)] = 129186, + [SMALL_STATE(2485)] = 129238, + [SMALL_STATE(2486)] = 129290, + [SMALL_STATE(2487)] = 129342, + [SMALL_STATE(2488)] = 129394, + [SMALL_STATE(2489)] = 129441, + [SMALL_STATE(2490)] = 129488, + [SMALL_STATE(2491)] = 129539, + [SMALL_STATE(2492)] = 129586, + [SMALL_STATE(2493)] = 129633, + [SMALL_STATE(2494)] = 129680, + [SMALL_STATE(2495)] = 129727, + [SMALL_STATE(2496)] = 129774, + [SMALL_STATE(2497)] = 129821, + [SMALL_STATE(2498)] = 129868, + [SMALL_STATE(2499)] = 129921, + [SMALL_STATE(2500)] = 129974, + [SMALL_STATE(2501)] = 130025, + [SMALL_STATE(2502)] = 130072, + [SMALL_STATE(2503)] = 130119, + [SMALL_STATE(2504)] = 130170, + [SMALL_STATE(2505)] = 130217, + [SMALL_STATE(2506)] = 130264, + [SMALL_STATE(2507)] = 130311, + [SMALL_STATE(2508)] = 130362, + [SMALL_STATE(2509)] = 130409, + [SMALL_STATE(2510)] = 130456, + [SMALL_STATE(2511)] = 130503, + [SMALL_STATE(2512)] = 130550, + [SMALL_STATE(2513)] = 130597, + [SMALL_STATE(2514)] = 130648, + [SMALL_STATE(2515)] = 130701, + [SMALL_STATE(2516)] = 130754, + [SMALL_STATE(2517)] = 130807, + [SMALL_STATE(2518)] = 130854, + [SMALL_STATE(2519)] = 130901, + [SMALL_STATE(2520)] = 130948, + [SMALL_STATE(2521)] = 130995, + [SMALL_STATE(2522)] = 131042, + [SMALL_STATE(2523)] = 131089, + [SMALL_STATE(2524)] = 131136, + [SMALL_STATE(2525)] = 131183, + [SMALL_STATE(2526)] = 131230, + [SMALL_STATE(2527)] = 131277, + [SMALL_STATE(2528)] = 131324, + [SMALL_STATE(2529)] = 131371, + [SMALL_STATE(2530)] = 131418, + [SMALL_STATE(2531)] = 131465, + [SMALL_STATE(2532)] = 131512, + [SMALL_STATE(2533)] = 131559, + [SMALL_STATE(2534)] = 131606, + [SMALL_STATE(2535)] = 131653, + [SMALL_STATE(2536)] = 131700, + [SMALL_STATE(2537)] = 131747, + [SMALL_STATE(2538)] = 131794, + [SMALL_STATE(2539)] = 131841, + [SMALL_STATE(2540)] = 131888, + [SMALL_STATE(2541)] = 131935, + [SMALL_STATE(2542)] = 131986, + [SMALL_STATE(2543)] = 132033, + [SMALL_STATE(2544)] = 132080, + [SMALL_STATE(2545)] = 132127, + [SMALL_STATE(2546)] = 132174, + [SMALL_STATE(2547)] = 132221, + [SMALL_STATE(2548)] = 132268, + [SMALL_STATE(2549)] = 132315, + [SMALL_STATE(2550)] = 132368, + [SMALL_STATE(2551)] = 132421, + [SMALL_STATE(2552)] = 132472, + [SMALL_STATE(2553)] = 132523, + [SMALL_STATE(2554)] = 132570, + [SMALL_STATE(2555)] = 132621, + [SMALL_STATE(2556)] = 132672, + [SMALL_STATE(2557)] = 132723, + [SMALL_STATE(2558)] = 132774, + [SMALL_STATE(2559)] = 132821, + [SMALL_STATE(2560)] = 132868, + [SMALL_STATE(2561)] = 132915, + [SMALL_STATE(2562)] = 132968, + [SMALL_STATE(2563)] = 133021, + [SMALL_STATE(2564)] = 133074, + [SMALL_STATE(2565)] = 133125, + [SMALL_STATE(2566)] = 133172, + [SMALL_STATE(2567)] = 133225, + [SMALL_STATE(2568)] = 133272, + [SMALL_STATE(2569)] = 133325, + [SMALL_STATE(2570)] = 133378, + [SMALL_STATE(2571)] = 133425, + [SMALL_STATE(2572)] = 133472, + [SMALL_STATE(2573)] = 133521, + [SMALL_STATE(2574)] = 133572, + [SMALL_STATE(2575)] = 133619, + [SMALL_STATE(2576)] = 133666, + [SMALL_STATE(2577)] = 133713, + [SMALL_STATE(2578)] = 133760, + [SMALL_STATE(2579)] = 133807, + [SMALL_STATE(2580)] = 133854, + [SMALL_STATE(2581)] = 133901, + [SMALL_STATE(2582)] = 133948, + [SMALL_STATE(2583)] = 133995, + [SMALL_STATE(2584)] = 134042, + [SMALL_STATE(2585)] = 134089, + [SMALL_STATE(2586)] = 134136, + [SMALL_STATE(2587)] = 134183, + [SMALL_STATE(2588)] = 134230, + [SMALL_STATE(2589)] = 134277, + [SMALL_STATE(2590)] = 134324, + [SMALL_STATE(2591)] = 134375, + [SMALL_STATE(2592)] = 134426, + [SMALL_STATE(2593)] = 134473, + [SMALL_STATE(2594)] = 134522, + [SMALL_STATE(2595)] = 134571, + [SMALL_STATE(2596)] = 134620, + [SMALL_STATE(2597)] = 134667, + [SMALL_STATE(2598)] = 134714, + [SMALL_STATE(2599)] = 134761, + [SMALL_STATE(2600)] = 134808, + [SMALL_STATE(2601)] = 134855, + [SMALL_STATE(2602)] = 134902, + [SMALL_STATE(2603)] = 134949, + [SMALL_STATE(2604)] = 134996, + [SMALL_STATE(2605)] = 135043, + [SMALL_STATE(2606)] = 135090, + [SMALL_STATE(2607)] = 135137, + [SMALL_STATE(2608)] = 135186, + [SMALL_STATE(2609)] = 135235, + [SMALL_STATE(2610)] = 135282, + [SMALL_STATE(2611)] = 135329, + [SMALL_STATE(2612)] = 135376, + [SMALL_STATE(2613)] = 135423, + [SMALL_STATE(2614)] = 135470, + [SMALL_STATE(2615)] = 135517, + [SMALL_STATE(2616)] = 135564, + [SMALL_STATE(2617)] = 135613, + [SMALL_STATE(2618)] = 135664, + [SMALL_STATE(2619)] = 135715, + [SMALL_STATE(2620)] = 135766, + [SMALL_STATE(2621)] = 135817, + [SMALL_STATE(2622)] = 135868, + [SMALL_STATE(2623)] = 135915, + [SMALL_STATE(2624)] = 135962, + [SMALL_STATE(2625)] = 136013, + [SMALL_STATE(2626)] = 136064, + [SMALL_STATE(2627)] = 136111, + [SMALL_STATE(2628)] = 136158, + [SMALL_STATE(2629)] = 136205, + [SMALL_STATE(2630)] = 136251, + [SMALL_STATE(2631)] = 136297, + [SMALL_STATE(2632)] = 136379, + [SMALL_STATE(2633)] = 136425, + [SMALL_STATE(2634)] = 136473, + [SMALL_STATE(2635)] = 136519, + [SMALL_STATE(2636)] = 136601, + [SMALL_STATE(2637)] = 136647, + [SMALL_STATE(2638)] = 136729, + [SMALL_STATE(2639)] = 136811, + [SMALL_STATE(2640)] = 136857, + [SMALL_STATE(2641)] = 136939, + [SMALL_STATE(2642)] = 137021, + [SMALL_STATE(2643)] = 137103, + [SMALL_STATE(2644)] = 137149, + [SMALL_STATE(2645)] = 137231, + [SMALL_STATE(2646)] = 137313, + [SMALL_STATE(2647)] = 137359, + [SMALL_STATE(2648)] = 137441, + [SMALL_STATE(2649)] = 137487, + [SMALL_STATE(2650)] = 137569, + [SMALL_STATE(2651)] = 137615, + [SMALL_STATE(2652)] = 137697, + [SMALL_STATE(2653)] = 137743, + [SMALL_STATE(2654)] = 137825, + [SMALL_STATE(2655)] = 137871, + [SMALL_STATE(2656)] = 137953, + [SMALL_STATE(2657)] = 138035, + [SMALL_STATE(2658)] = 138117, + [SMALL_STATE(2659)] = 138199, + [SMALL_STATE(2660)] = 138281, + [SMALL_STATE(2661)] = 138327, + [SMALL_STATE(2662)] = 138409, + [SMALL_STATE(2663)] = 138455, + [SMALL_STATE(2664)] = 138537, + [SMALL_STATE(2665)] = 138583, + [SMALL_STATE(2666)] = 138665, + [SMALL_STATE(2667)] = 138711, + [SMALL_STATE(2668)] = 138793, + [SMALL_STATE(2669)] = 138839, + [SMALL_STATE(2670)] = 138921, + [SMALL_STATE(2671)] = 139003, + [SMALL_STATE(2672)] = 139085, + [SMALL_STATE(2673)] = 139167, + [SMALL_STATE(2674)] = 139249, + [SMALL_STATE(2675)] = 139331, + [SMALL_STATE(2676)] = 139377, + [SMALL_STATE(2677)] = 139459, + [SMALL_STATE(2678)] = 139509, + [SMALL_STATE(2679)] = 139591, + [SMALL_STATE(2680)] = 139643, + [SMALL_STATE(2681)] = 139725, + [SMALL_STATE(2682)] = 139777, + [SMALL_STATE(2683)] = 139859, + [SMALL_STATE(2684)] = 139941, + [SMALL_STATE(2685)] = 140023, + [SMALL_STATE(2686)] = 140073, + [SMALL_STATE(2687)] = 140155, + [SMALL_STATE(2688)] = 140237, + [SMALL_STATE(2689)] = 140319, + [SMALL_STATE(2690)] = 140401, + [SMALL_STATE(2691)] = 140447, + [SMALL_STATE(2692)] = 140529, + [SMALL_STATE(2693)] = 140581, + [SMALL_STATE(2694)] = 140663, + [SMALL_STATE(2695)] = 140709, + [SMALL_STATE(2696)] = 140791, + [SMALL_STATE(2697)] = 140873, + [SMALL_STATE(2698)] = 140955, + [SMALL_STATE(2699)] = 141037, + [SMALL_STATE(2700)] = 141087, + [SMALL_STATE(2701)] = 141169, + [SMALL_STATE(2702)] = 141233, + [SMALL_STATE(2703)] = 141315, + [SMALL_STATE(2704)] = 141397, + [SMALL_STATE(2705)] = 141443, + [SMALL_STATE(2706)] = 141525, + [SMALL_STATE(2707)] = 141571, + [SMALL_STATE(2708)] = 141653, + [SMALL_STATE(2709)] = 141699, + [SMALL_STATE(2710)] = 141781, + [SMALL_STATE(2711)] = 141863, + [SMALL_STATE(2712)] = 141945, + [SMALL_STATE(2713)] = 142027, + [SMALL_STATE(2714)] = 142073, + [SMALL_STATE(2715)] = 142155, + [SMALL_STATE(2716)] = 142201, + [SMALL_STATE(2717)] = 142283, + [SMALL_STATE(2718)] = 142329, + [SMALL_STATE(2719)] = 142411, + [SMALL_STATE(2720)] = 142493, + [SMALL_STATE(2721)] = 142575, + [SMALL_STATE(2722)] = 142625, + [SMALL_STATE(2723)] = 142707, + [SMALL_STATE(2724)] = 142753, + [SMALL_STATE(2725)] = 142835, + [SMALL_STATE(2726)] = 142881, + [SMALL_STATE(2727)] = 142927, + [SMALL_STATE(2728)] = 142973, + [SMALL_STATE(2729)] = 143023, + [SMALL_STATE(2730)] = 143069, + [SMALL_STATE(2731)] = 143115, + [SMALL_STATE(2732)] = 143161, + [SMALL_STATE(2733)] = 143211, + [SMALL_STATE(2734)] = 143257, + [SMALL_STATE(2735)] = 143303, + [SMALL_STATE(2736)] = 143349, + [SMALL_STATE(2737)] = 143395, + [SMALL_STATE(2738)] = 143441, + [SMALL_STATE(2739)] = 143487, + [SMALL_STATE(2740)] = 143533, + [SMALL_STATE(2741)] = 143579, + [SMALL_STATE(2742)] = 143625, + [SMALL_STATE(2743)] = 143671, + [SMALL_STATE(2744)] = 143719, + [SMALL_STATE(2745)] = 143765, + [SMALL_STATE(2746)] = 143811, + [SMALL_STATE(2747)] = 143869, + [SMALL_STATE(2748)] = 143919, + [SMALL_STATE(2749)] = 143965, + [SMALL_STATE(2750)] = 144011, + [SMALL_STATE(2751)] = 144057, + [SMALL_STATE(2752)] = 144103, + [SMALL_STATE(2753)] = 144159, + [SMALL_STATE(2754)] = 144241, + [SMALL_STATE(2755)] = 144287, + [SMALL_STATE(2756)] = 144333, + [SMALL_STATE(2757)] = 144379, + [SMALL_STATE(2758)] = 144427, + [SMALL_STATE(2759)] = 144477, + [SMALL_STATE(2760)] = 144533, + [SMALL_STATE(2761)] = 144579, + [SMALL_STATE(2762)] = 144625, + [SMALL_STATE(2763)] = 144671, + [SMALL_STATE(2764)] = 144717, + [SMALL_STATE(2765)] = 144763, + [SMALL_STATE(2766)] = 144809, + [SMALL_STATE(2767)] = 144871, + [SMALL_STATE(2768)] = 144921, + [SMALL_STATE(2769)] = 144967, + [SMALL_STATE(2770)] = 145013, + [SMALL_STATE(2771)] = 145059, + [SMALL_STATE(2772)] = 145105, + [SMALL_STATE(2773)] = 145155, + [SMALL_STATE(2774)] = 145205, + [SMALL_STATE(2775)] = 145251, + [SMALL_STATE(2776)] = 145297, + [SMALL_STATE(2777)] = 145343, + [SMALL_STATE(2778)] = 145389, + [SMALL_STATE(2779)] = 145435, + [SMALL_STATE(2780)] = 145481, + [SMALL_STATE(2781)] = 145537, + [SMALL_STATE(2782)] = 145583, + [SMALL_STATE(2783)] = 145665, + [SMALL_STATE(2784)] = 145721, + [SMALL_STATE(2785)] = 145767, + [SMALL_STATE(2786)] = 145813, + [SMALL_STATE(2787)] = 145859, + [SMALL_STATE(2788)] = 145905, + [SMALL_STATE(2789)] = 145955, + [SMALL_STATE(2790)] = 146001, + [SMALL_STATE(2791)] = 146083, + [SMALL_STATE(2792)] = 146129, + [SMALL_STATE(2793)] = 146175, + [SMALL_STATE(2794)] = 146225, + [SMALL_STATE(2795)] = 146271, + [SMALL_STATE(2796)] = 146317, + [SMALL_STATE(2797)] = 146367, + [SMALL_STATE(2798)] = 146413, + [SMALL_STATE(2799)] = 146463, + [SMALL_STATE(2800)] = 146519, + [SMALL_STATE(2801)] = 146601, + [SMALL_STATE(2802)] = 146647, + [SMALL_STATE(2803)] = 146693, + [SMALL_STATE(2804)] = 146739, + [SMALL_STATE(2805)] = 146789, + [SMALL_STATE(2806)] = 146835, + [SMALL_STATE(2807)] = 146889, + [SMALL_STATE(2808)] = 146939, + [SMALL_STATE(2809)] = 146985, + [SMALL_STATE(2810)] = 147059, + [SMALL_STATE(2811)] = 147105, + [SMALL_STATE(2812)] = 147153, + [SMALL_STATE(2813)] = 147199, + [SMALL_STATE(2814)] = 147245, + [SMALL_STATE(2815)] = 147291, + [SMALL_STATE(2816)] = 147337, + [SMALL_STATE(2817)] = 147391, + [SMALL_STATE(2818)] = 147445, + [SMALL_STATE(2819)] = 147527, + [SMALL_STATE(2820)] = 147599, + [SMALL_STATE(2821)] = 147649, + [SMALL_STATE(2822)] = 147699, + [SMALL_STATE(2823)] = 147745, + [SMALL_STATE(2824)] = 147801, + [SMALL_STATE(2825)] = 147847, + [SMALL_STATE(2826)] = 147923, + [SMALL_STATE(2827)] = 148001, + [SMALL_STATE(2828)] = 148073, + [SMALL_STATE(2829)] = 148143, + [SMALL_STATE(2830)] = 148211, + [SMALL_STATE(2831)] = 148277, + [SMALL_STATE(2832)] = 148341, + [SMALL_STATE(2833)] = 148403, + [SMALL_STATE(2834)] = 148449, + [SMALL_STATE(2835)] = 148495, + [SMALL_STATE(2836)] = 148553, + [SMALL_STATE(2837)] = 148603, + [SMALL_STATE(2838)] = 148653, + [SMALL_STATE(2839)] = 148703, + [SMALL_STATE(2840)] = 148749, + [SMALL_STATE(2841)] = 148795, + [SMALL_STATE(2842)] = 148849, + [SMALL_STATE(2843)] = 148905, + [SMALL_STATE(2844)] = 148961, + [SMALL_STATE(2845)] = 149011, + [SMALL_STATE(2846)] = 149063, + [SMALL_STATE(2847)] = 149109, + [SMALL_STATE(2848)] = 149183, + [SMALL_STATE(2849)] = 149229, + [SMALL_STATE(2850)] = 149277, + [SMALL_STATE(2851)] = 149337, + [SMALL_STATE(2852)] = 149383, + [SMALL_STATE(2853)] = 149459, + [SMALL_STATE(2854)] = 149509, + [SMALL_STATE(2855)] = 149559, + [SMALL_STATE(2856)] = 149629, + [SMALL_STATE(2857)] = 149697, + [SMALL_STATE(2858)] = 149763, + [SMALL_STATE(2859)] = 149809, + [SMALL_STATE(2860)] = 149855, + [SMALL_STATE(2861)] = 149934, + [SMALL_STATE(2862)] = 149999, + [SMALL_STATE(2863)] = 150056, + [SMALL_STATE(2864)] = 150135, + [SMALL_STATE(2865)] = 150190, + [SMALL_STATE(2866)] = 150237, + [SMALL_STATE(2867)] = 150282, + [SMALL_STATE(2868)] = 150327, + [SMALL_STATE(2869)] = 150382, + [SMALL_STATE(2870)] = 150457, + [SMALL_STATE(2871)] = 150502, + [SMALL_STATE(2872)] = 150559, + [SMALL_STATE(2873)] = 150604, + [SMALL_STATE(2874)] = 150679, + [SMALL_STATE(2875)] = 150758, + [SMALL_STATE(2876)] = 150837, + [SMALL_STATE(2877)] = 150882, + [SMALL_STATE(2878)] = 150935, + [SMALL_STATE(2879)] = 151012, + [SMALL_STATE(2880)] = 151083, + [SMALL_STATE(2881)] = 151162, + [SMALL_STATE(2882)] = 151207, + [SMALL_STATE(2883)] = 151276, + [SMALL_STATE(2884)] = 151343, + [SMALL_STATE(2885)] = 151408, + [SMALL_STATE(2886)] = 151487, + [SMALL_STATE(2887)] = 151566, + [SMALL_STATE(2888)] = 151629, + [SMALL_STATE(2889)] = 151690, + [SMALL_STATE(2890)] = 151747, + [SMALL_STATE(2891)] = 151794, + [SMALL_STATE(2892)] = 151847, + [SMALL_STATE(2893)] = 151892, + [SMALL_STATE(2894)] = 151947, + [SMALL_STATE(2895)] = 151992, + [SMALL_STATE(2896)] = 152049, + [SMALL_STATE(2897)] = 152128, + [SMALL_STATE(2898)] = 152173, + [SMALL_STATE(2899)] = 152228, + [SMALL_STATE(2900)] = 152275, + [SMALL_STATE(2901)] = 152324, + [SMALL_STATE(2902)] = 152375, + [SMALL_STATE(2903)] = 152424, + [SMALL_STATE(2904)] = 152473, + [SMALL_STATE(2905)] = 152528, + [SMALL_STATE(2906)] = 152579, + [SMALL_STATE(2907)] = 152658, + [SMALL_STATE(2908)] = 152705, + [SMALL_STATE(2909)] = 152754, + [SMALL_STATE(2910)] = 152833, + [SMALL_STATE(2911)] = 152912, + [SMALL_STATE(2912)] = 152959, + [SMALL_STATE(2913)] = 153012, + [SMALL_STATE(2914)] = 153063, + [SMALL_STATE(2915)] = 153112, + [SMALL_STATE(2916)] = 153191, + [SMALL_STATE(2917)] = 153236, + [SMALL_STATE(2918)] = 153281, + [SMALL_STATE(2919)] = 153360, + [SMALL_STATE(2920)] = 153439, + [SMALL_STATE(2921)] = 153518, + [SMALL_STATE(2922)] = 153595, + [SMALL_STATE(2923)] = 153640, + [SMALL_STATE(2924)] = 153685, + [SMALL_STATE(2925)] = 153730, + [SMALL_STATE(2926)] = 153775, + [SMALL_STATE(2927)] = 153852, + [SMALL_STATE(2928)] = 153907, + [SMALL_STATE(2929)] = 153982, + [SMALL_STATE(2930)] = 154059, + [SMALL_STATE(2931)] = 154130, + [SMALL_STATE(2932)] = 154199, + [SMALL_STATE(2933)] = 154244, + [SMALL_STATE(2934)] = 154311, + [SMALL_STATE(2935)] = 154376, + [SMALL_STATE(2936)] = 154439, + [SMALL_STATE(2937)] = 154500, + [SMALL_STATE(2938)] = 154579, + [SMALL_STATE(2939)] = 154658, + [SMALL_STATE(2940)] = 154715, + [SMALL_STATE(2941)] = 154768, + [SMALL_STATE(2942)] = 154819, + [SMALL_STATE(2943)] = 154868, + [SMALL_STATE(2944)] = 154917, + [SMALL_STATE(2945)] = 154962, + [SMALL_STATE(2946)] = 155007, + [SMALL_STATE(2947)] = 155054, + [SMALL_STATE(2948)] = 155099, + [SMALL_STATE(2949)] = 155154, + [SMALL_STATE(2950)] = 155233, + [SMALL_STATE(2951)] = 155312, + [SMALL_STATE(2952)] = 155359, + [SMALL_STATE(2953)] = 155404, + [SMALL_STATE(2954)] = 155483, + [SMALL_STATE(2955)] = 155546, + [SMALL_STATE(2956)] = 155601, + [SMALL_STATE(2957)] = 155650, + [SMALL_STATE(2958)] = 155695, + [SMALL_STATE(2959)] = 155740, + [SMALL_STATE(2960)] = 155819, + [SMALL_STATE(2961)] = 155868, + [SMALL_STATE(2962)] = 155913, + [SMALL_STATE(2963)] = 155958, + [SMALL_STATE(2964)] = 156037, + [SMALL_STATE(2965)] = 156082, + [SMALL_STATE(2966)] = 156161, + [SMALL_STATE(2967)] = 156206, + [SMALL_STATE(2968)] = 156285, + [SMALL_STATE(2969)] = 156330, + [SMALL_STATE(2970)] = 156375, + [SMALL_STATE(2971)] = 156448, + [SMALL_STATE(2972)] = 156493, + [SMALL_STATE(2973)] = 156538, + [SMALL_STATE(2974)] = 156583, + [SMALL_STATE(2975)] = 156628, + [SMALL_STATE(2976)] = 156707, + [SMALL_STATE(2977)] = 156774, + [SMALL_STATE(2978)] = 156819, + [SMALL_STATE(2979)] = 156864, + [SMALL_STATE(2980)] = 156943, + [SMALL_STATE(2981)] = 157022, + [SMALL_STATE(2982)] = 157093, + [SMALL_STATE(2983)] = 157172, + [SMALL_STATE(2984)] = 157225, + [SMALL_STATE(2985)] = 157278, + [SMALL_STATE(2986)] = 157325, + [SMALL_STATE(2987)] = 157404, + [SMALL_STATE(2988)] = 157459, + [SMALL_STATE(2989)] = 157520, + [SMALL_STATE(2990)] = 157583, + [SMALL_STATE(2991)] = 157652, + [SMALL_STATE(2992)] = 157697, + [SMALL_STATE(2993)] = 157742, + [SMALL_STATE(2994)] = 157787, + [SMALL_STATE(2995)] = 157836, + [SMALL_STATE(2996)] = 157915, + [SMALL_STATE(2997)] = 157994, + [SMALL_STATE(2998)] = 158043, + [SMALL_STATE(2999)] = 158116, + [SMALL_STATE(3000)] = 158161, + [SMALL_STATE(3001)] = 158206, + [SMALL_STATE(3002)] = 158285, + [SMALL_STATE(3003)] = 158330, + [SMALL_STATE(3004)] = 158409, + [SMALL_STATE(3005)] = 158488, + [SMALL_STATE(3006)] = 158533, + [SMALL_STATE(3007)] = 158578, + [SMALL_STATE(3008)] = 158647, + [SMALL_STATE(3009)] = 158704, + [SMALL_STATE(3010)] = 158749, + [SMALL_STATE(3011)] = 158796, + [SMALL_STATE(3012)] = 158843, + [SMALL_STATE(3013)] = 158898, + [SMALL_STATE(3014)] = 158973, + [SMALL_STATE(3015)] = 159050, + [SMALL_STATE(3016)] = 159123, + [SMALL_STATE(3017)] = 159194, + [SMALL_STATE(3018)] = 159239, + [SMALL_STATE(3019)] = 159306, + [SMALL_STATE(3020)] = 159355, + [SMALL_STATE(3021)] = 159402, + [SMALL_STATE(3022)] = 159467, + [SMALL_STATE(3023)] = 159522, + [SMALL_STATE(3024)] = 159571, + [SMALL_STATE(3025)] = 159640, + [SMALL_STATE(3026)] = 159707, + [SMALL_STATE(3027)] = 159786, + [SMALL_STATE(3028)] = 159851, + [SMALL_STATE(3029)] = 159914, + [SMALL_STATE(3030)] = 159975, + [SMALL_STATE(3031)] = 160032, + [SMALL_STATE(3032)] = 160085, + [SMALL_STATE(3033)] = 160148, + [SMALL_STATE(3034)] = 160227, + [SMALL_STATE(3035)] = 160274, + [SMALL_STATE(3036)] = 160325, + [SMALL_STATE(3037)] = 160374, + [SMALL_STATE(3038)] = 160423, + [SMALL_STATE(3039)] = 160478, + [SMALL_STATE(3040)] = 160525, + [SMALL_STATE(3041)] = 160572, + [SMALL_STATE(3042)] = 160645, + [SMALL_STATE(3043)] = 160700, + [SMALL_STATE(3044)] = 160755, + [SMALL_STATE(3045)] = 160800, + [SMALL_STATE(3046)] = 160849, + [SMALL_STATE(3047)] = 160904, + [SMALL_STATE(3048)] = 160965, + [SMALL_STATE(3049)] = 161044, + [SMALL_STATE(3050)] = 161089, + [SMALL_STATE(3051)] = 161134, + [SMALL_STATE(3052)] = 161193, + [SMALL_STATE(3053)] = 161272, + [SMALL_STATE(3054)] = 161317, + [SMALL_STATE(3055)] = 161362, + [SMALL_STATE(3056)] = 161441, + [SMALL_STATE(3057)] = 161496, + [SMALL_STATE(3058)] = 161541, + [SMALL_STATE(3059)] = 161620, + [SMALL_STATE(3060)] = 161665, + [SMALL_STATE(3061)] = 161736, + [SMALL_STATE(3062)] = 161781, + [SMALL_STATE(3063)] = 161860, + [SMALL_STATE(3064)] = 161917, + [SMALL_STATE(3065)] = 161962, + [SMALL_STATE(3066)] = 162007, + [SMALL_STATE(3067)] = 162052, + [SMALL_STATE(3068)] = 162109, + [SMALL_STATE(3069)] = 162164, + [SMALL_STATE(3070)] = 162243, + [SMALL_STATE(3071)] = 162298, + [SMALL_STATE(3072)] = 162347, + [SMALL_STATE(3073)] = 162392, + [SMALL_STATE(3074)] = 162447, + [SMALL_STATE(3075)] = 162526, + [SMALL_STATE(3076)] = 162605, + [SMALL_STATE(3077)] = 162653, + [SMALL_STATE(3078)] = 162701, + [SMALL_STATE(3079)] = 162747, + [SMALL_STATE(3080)] = 162791, + [SMALL_STATE(3081)] = 162835, + [SMALL_STATE(3082)] = 162879, + [SMALL_STATE(3083)] = 162923, + [SMALL_STATE(3084)] = 162967, + [SMALL_STATE(3085)] = 163011, + [SMALL_STATE(3086)] = 163055, + [SMALL_STATE(3087)] = 163099, + [SMALL_STATE(3088)] = 163143, + [SMALL_STATE(3089)] = 163219, + [SMALL_STATE(3090)] = 163263, + [SMALL_STATE(3091)] = 163307, + [SMALL_STATE(3092)] = 163351, + [SMALL_STATE(3093)] = 163395, + [SMALL_STATE(3094)] = 163449, + [SMALL_STATE(3095)] = 163525, + [SMALL_STATE(3096)] = 163601, + [SMALL_STATE(3097)] = 163655, + [SMALL_STATE(3098)] = 163709, + [SMALL_STATE(3099)] = 163763, + [SMALL_STATE(3100)] = 163817, + [SMALL_STATE(3101)] = 163871, + [SMALL_STATE(3102)] = 163947, + [SMALL_STATE(3103)] = 163991, + [SMALL_STATE(3104)] = 164035, + [SMALL_STATE(3105)] = 164079, + [SMALL_STATE(3106)] = 164155, + [SMALL_STATE(3107)] = 164199, + [SMALL_STATE(3108)] = 164243, + [SMALL_STATE(3109)] = 164319, + [SMALL_STATE(3110)] = 164363, + [SMALL_STATE(3111)] = 164407, + [SMALL_STATE(3112)] = 164495, + [SMALL_STATE(3113)] = 164583, + [SMALL_STATE(3114)] = 164671, + [SMALL_STATE(3115)] = 164759, + [SMALL_STATE(3116)] = 164803, + [SMALL_STATE(3117)] = 164891, + [SMALL_STATE(3118)] = 164935, + [SMALL_STATE(3119)] = 165011, + [SMALL_STATE(3120)] = 165087, + [SMALL_STATE(3121)] = 165163, + [SMALL_STATE(3122)] = 165251, + [SMALL_STATE(3123)] = 165339, + [SMALL_STATE(3124)] = 165427, + [SMALL_STATE(3125)] = 165515, + [SMALL_STATE(3126)] = 165591, + [SMALL_STATE(3127)] = 165641, + [SMALL_STATE(3128)] = 165685, + [SMALL_STATE(3129)] = 165735, + [SMALL_STATE(3130)] = 165823, + [SMALL_STATE(3131)] = 165911, + [SMALL_STATE(3132)] = 165961, + [SMALL_STATE(3133)] = 166049, + [SMALL_STATE(3134)] = 166137, + [SMALL_STATE(3135)] = 166181, + [SMALL_STATE(3136)] = 166257, + [SMALL_STATE(3137)] = 166333, + [SMALL_STATE(3138)] = 166401, + [SMALL_STATE(3139)] = 166467, + [SMALL_STATE(3140)] = 166517, + [SMALL_STATE(3141)] = 166581, + [SMALL_STATE(3142)] = 166657, + [SMALL_STATE(3143)] = 166733, + [SMALL_STATE(3144)] = 166777, + [SMALL_STATE(3145)] = 166841, + [SMALL_STATE(3146)] = 166917, + [SMALL_STATE(3147)] = 166979, + [SMALL_STATE(3148)] = 167055, + [SMALL_STATE(3149)] = 167131, + [SMALL_STATE(3150)] = 167191, + [SMALL_STATE(3151)] = 167267, + [SMALL_STATE(3152)] = 167343, + [SMALL_STATE(3153)] = 167419, + [SMALL_STATE(3154)] = 167495, + [SMALL_STATE(3155)] = 167571, + [SMALL_STATE(3156)] = 167659, + [SMALL_STATE(3157)] = 167735, + [SMALL_STATE(3158)] = 167811, + [SMALL_STATE(3159)] = 167887, + [SMALL_STATE(3160)] = 167963, + [SMALL_STATE(3161)] = 168021, + [SMALL_STATE(3162)] = 168075, + [SMALL_STATE(3163)] = 168151, + [SMALL_STATE(3164)] = 168205, + [SMALL_STATE(3165)] = 168281, + [SMALL_STATE(3166)] = 168335, + [SMALL_STATE(3167)] = 168411, + [SMALL_STATE(3168)] = 168455, + [SMALL_STATE(3169)] = 168531, + [SMALL_STATE(3170)] = 168607, + [SMALL_STATE(3171)] = 168659, + [SMALL_STATE(3172)] = 168703, + [SMALL_STATE(3173)] = 168779, + [SMALL_STATE(3174)] = 168829, + [SMALL_STATE(3175)] = 168905, + [SMALL_STATE(3176)] = 168981, + [SMALL_STATE(3177)] = 169057, + [SMALL_STATE(3178)] = 169133, + [SMALL_STATE(3179)] = 169209, + [SMALL_STATE(3180)] = 169253, + [SMALL_STATE(3181)] = 169329, + [SMALL_STATE(3182)] = 169373, + [SMALL_STATE(3183)] = 169449, + [SMALL_STATE(3184)] = 169525, + [SMALL_STATE(3185)] = 169573, + [SMALL_STATE(3186)] = 169649, + [SMALL_STATE(3187)] = 169725, + [SMALL_STATE(3188)] = 169801, + [SMALL_STATE(3189)] = 169877, + [SMALL_STATE(3190)] = 169953, + [SMALL_STATE(3191)] = 170029, + [SMALL_STATE(3192)] = 170105, + [SMALL_STATE(3193)] = 170149, + [SMALL_STATE(3194)] = 170225, + [SMALL_STATE(3195)] = 170269, + [SMALL_STATE(3196)] = 170345, + [SMALL_STATE(3197)] = 170421, + [SMALL_STATE(3198)] = 170497, + [SMALL_STATE(3199)] = 170541, + [SMALL_STATE(3200)] = 170617, + [SMALL_STATE(3201)] = 170661, + [SMALL_STATE(3202)] = 170737, + [SMALL_STATE(3203)] = 170813, + [SMALL_STATE(3204)] = 170889, + [SMALL_STATE(3205)] = 170933, + [SMALL_STATE(3206)] = 171009, + [SMALL_STATE(3207)] = 171085, + [SMALL_STATE(3208)] = 171161, + [SMALL_STATE(3209)] = 171205, + [SMALL_STATE(3210)] = 171253, + [SMALL_STATE(3211)] = 171329, + [SMALL_STATE(3212)] = 171405, + [SMALL_STATE(3213)] = 171481, + [SMALL_STATE(3214)] = 171525, + [SMALL_STATE(3215)] = 171575, + [SMALL_STATE(3216)] = 171619, + [SMALL_STATE(3217)] = 171663, + [SMALL_STATE(3218)] = 171739, + [SMALL_STATE(3219)] = 171815, + [SMALL_STATE(3220)] = 171891, + [SMALL_STATE(3221)] = 171967, + [SMALL_STATE(3222)] = 172043, + [SMALL_STATE(3223)] = 172119, + [SMALL_STATE(3224)] = 172165, + [SMALL_STATE(3225)] = 172241, + [SMALL_STATE(3226)] = 172317, + [SMALL_STATE(3227)] = 172393, + [SMALL_STATE(3228)] = 172437, + [SMALL_STATE(3229)] = 172507, + [SMALL_STATE(3230)] = 172551, + [SMALL_STATE(3231)] = 172595, + [SMALL_STATE(3232)] = 172667, + [SMALL_STATE(3233)] = 172741, + [SMALL_STATE(3234)] = 172809, + [SMALL_STATE(3235)] = 172875, + [SMALL_STATE(3236)] = 172939, + [SMALL_STATE(3237)] = 173001, + [SMALL_STATE(3238)] = 173045, + [SMALL_STATE(3239)] = 173089, + [SMALL_STATE(3240)] = 173143, + [SMALL_STATE(3241)] = 173189, + [SMALL_STATE(3242)] = 173249, + [SMALL_STATE(3243)] = 173319, + [SMALL_STATE(3244)] = 173363, + [SMALL_STATE(3245)] = 173407, + [SMALL_STATE(3246)] = 173451, + [SMALL_STATE(3247)] = 173505, + [SMALL_STATE(3248)] = 173551, + [SMALL_STATE(3249)] = 173605, + [SMALL_STATE(3250)] = 173649, + [SMALL_STATE(3251)] = 173693, + [SMALL_STATE(3252)] = 173781, + [SMALL_STATE(3253)] = 173839, + [SMALL_STATE(3254)] = 173883, + [SMALL_STATE(3255)] = 173927, + [SMALL_STATE(3256)] = 173971, + [SMALL_STATE(3257)] = 174015, + [SMALL_STATE(3258)] = 174059, + [SMALL_STATE(3259)] = 174113, + [SMALL_STATE(3260)] = 174157, + [SMALL_STATE(3261)] = 174201, + [SMALL_STATE(3262)] = 174245, + [SMALL_STATE(3263)] = 174289, + [SMALL_STATE(3264)] = 174333, + [SMALL_STATE(3265)] = 174421, + [SMALL_STATE(3266)] = 174465, + [SMALL_STATE(3267)] = 174509, + [SMALL_STATE(3268)] = 174553, + [SMALL_STATE(3269)] = 174629, + [SMALL_STATE(3270)] = 174675, + [SMALL_STATE(3271)] = 174719, + [SMALL_STATE(3272)] = 174763, + [SMALL_STATE(3273)] = 174835, + [SMALL_STATE(3274)] = 174909, + [SMALL_STATE(3275)] = 174977, + [SMALL_STATE(3276)] = 175043, + [SMALL_STATE(3277)] = 175107, + [SMALL_STATE(3278)] = 175169, + [SMALL_STATE(3279)] = 175229, + [SMALL_STATE(3280)] = 175287, + [SMALL_STATE(3281)] = 175341, + [SMALL_STATE(3282)] = 175393, + [SMALL_STATE(3283)] = 175443, + [SMALL_STATE(3284)] = 175491, + [SMALL_STATE(3285)] = 175537, + [SMALL_STATE(3286)] = 175591, + [SMALL_STATE(3287)] = 175635, + [SMALL_STATE(3288)] = 175679, + [SMALL_STATE(3289)] = 175731, + [SMALL_STATE(3290)] = 175785, + [SMALL_STATE(3291)] = 175839, + [SMALL_STATE(3292)] = 175909, + [SMALL_STATE(3293)] = 175953, + [SMALL_STATE(3294)] = 176021, + [SMALL_STATE(3295)] = 176087, + [SMALL_STATE(3296)] = 176151, + [SMALL_STATE(3297)] = 176215, + [SMALL_STATE(3298)] = 176277, + [SMALL_STATE(3299)] = 176337, + [SMALL_STATE(3300)] = 176395, + [SMALL_STATE(3301)] = 176449, + [SMALL_STATE(3302)] = 176501, + [SMALL_STATE(3303)] = 176551, + [SMALL_STATE(3304)] = 176599, + [SMALL_STATE(3305)] = 176647, + [SMALL_STATE(3306)] = 176691, + [SMALL_STATE(3307)] = 176761, + [SMALL_STATE(3308)] = 176805, + [SMALL_STATE(3309)] = 176855, + [SMALL_STATE(3310)] = 176905, + [SMALL_STATE(3311)] = 176949, + [SMALL_STATE(3312)] = 176993, + [SMALL_STATE(3313)] = 177037, + [SMALL_STATE(3314)] = 177081, + [SMALL_STATE(3315)] = 177125, + [SMALL_STATE(3316)] = 177169, + [SMALL_STATE(3317)] = 177213, + [SMALL_STATE(3318)] = 177285, + [SMALL_STATE(3319)] = 177329, + [SMALL_STATE(3320)] = 177377, + [SMALL_STATE(3321)] = 177421, + [SMALL_STATE(3322)] = 177465, + [SMALL_STATE(3323)] = 177509, + [SMALL_STATE(3324)] = 177553, + [SMALL_STATE(3325)] = 177629, + [SMALL_STATE(3326)] = 177683, + [SMALL_STATE(3327)] = 177757, + [SMALL_STATE(3328)] = 177833, + [SMALL_STATE(3329)] = 177903, + [SMALL_STATE(3330)] = 177971, + [SMALL_STATE(3331)] = 178037, + [SMALL_STATE(3332)] = 178101, + [SMALL_STATE(3333)] = 178163, + [SMALL_STATE(3334)] = 178223, + [SMALL_STATE(3335)] = 178279, + [SMALL_STATE(3336)] = 178331, + [SMALL_STATE(3337)] = 178381, + [SMALL_STATE(3338)] = 178429, + [SMALL_STATE(3339)] = 178477, + [SMALL_STATE(3340)] = 178533, + [SMALL_STATE(3341)] = 178587, + [SMALL_STATE(3342)] = 178641, + [SMALL_STATE(3343)] = 178685, + [SMALL_STATE(3344)] = 178729, + [SMALL_STATE(3345)] = 178773, + [SMALL_STATE(3346)] = 178849, + [SMALL_STATE(3347)] = 178934, + [SMALL_STATE(3348)] = 179019, + [SMALL_STATE(3349)] = 179104, + [SMALL_STATE(3350)] = 179189, + [SMALL_STATE(3351)] = 179274, + [SMALL_STATE(3352)] = 179317, + [SMALL_STATE(3353)] = 179360, + [SMALL_STATE(3354)] = 179403, + [SMALL_STATE(3355)] = 179446, + [SMALL_STATE(3356)] = 179499, + [SMALL_STATE(3357)] = 179584, + [SMALL_STATE(3358)] = 179637, + [SMALL_STATE(3359)] = 179690, + [SMALL_STATE(3360)] = 179743, + [SMALL_STATE(3361)] = 179796, + [SMALL_STATE(3362)] = 179849, + [SMALL_STATE(3363)] = 179902, + [SMALL_STATE(3364)] = 179955, + [SMALL_STATE(3365)] = 180008, + [SMALL_STATE(3366)] = 180051, + [SMALL_STATE(3367)] = 180104, + [SMALL_STATE(3368)] = 180147, + [SMALL_STATE(3369)] = 180190, + [SMALL_STATE(3370)] = 180233, + [SMALL_STATE(3371)] = 180318, + [SMALL_STATE(3372)] = 180403, + [SMALL_STATE(3373)] = 180488, + [SMALL_STATE(3374)] = 180573, + [SMALL_STATE(3375)] = 180616, + [SMALL_STATE(3376)] = 180701, + [SMALL_STATE(3377)] = 180786, + [SMALL_STATE(3378)] = 180829, + [SMALL_STATE(3379)] = 180882, + [SMALL_STATE(3380)] = 180925, + [SMALL_STATE(3381)] = 180978, + [SMALL_STATE(3382)] = 181021, + [SMALL_STATE(3383)] = 181106, + [SMALL_STATE(3384)] = 181191, + [SMALL_STATE(3385)] = 181276, + [SMALL_STATE(3386)] = 181361, + [SMALL_STATE(3387)] = 181446, + [SMALL_STATE(3388)] = 181531, + [SMALL_STATE(3389)] = 181574, + [SMALL_STATE(3390)] = 181617, + [SMALL_STATE(3391)] = 181702, + [SMALL_STATE(3392)] = 181745, + [SMALL_STATE(3393)] = 181788, + [SMALL_STATE(3394)] = 181831, + [SMALL_STATE(3395)] = 181916, + [SMALL_STATE(3396)] = 181959, + [SMALL_STATE(3397)] = 182002, + [SMALL_STATE(3398)] = 182045, + [SMALL_STATE(3399)] = 182098, + [SMALL_STATE(3400)] = 182151, + [SMALL_STATE(3401)] = 182236, + [SMALL_STATE(3402)] = 182321, + [SMALL_STATE(3403)] = 182406, + [SMALL_STATE(3404)] = 182491, + [SMALL_STATE(3405)] = 182537, + [SMALL_STATE(3406)] = 182583, + [SMALL_STATE(3407)] = 182661, + [SMALL_STATE(3408)] = 182739, + [SMALL_STATE(3409)] = 182817, + [SMALL_STATE(3410)] = 182863, + [SMALL_STATE(3411)] = 182941, + [SMALL_STATE(3412)] = 183023, + [SMALL_STATE(3413)] = 183109, + [SMALL_STATE(3414)] = 183195, + [SMALL_STATE(3415)] = 183241, + [SMALL_STATE(3416)] = 183327, + [SMALL_STATE(3417)] = 183403, + [SMALL_STATE(3418)] = 183449, + [SMALL_STATE(3419)] = 183501, + [SMALL_STATE(3420)] = 183553, + [SMALL_STATE(3421)] = 183599, + [SMALL_STATE(3422)] = 183645, + [SMALL_STATE(3423)] = 183697, + [SMALL_STATE(3424)] = 183745, + [SMALL_STATE(3425)] = 183797, + [SMALL_STATE(3426)] = 183843, + [SMALL_STATE(3427)] = 183891, + [SMALL_STATE(3428)] = 183937, + [SMALL_STATE(3429)] = 183983, + [SMALL_STATE(3430)] = 184029, + [SMALL_STATE(3431)] = 184075, + [SMALL_STATE(3432)] = 184121, + [SMALL_STATE(3433)] = 184167, + [SMALL_STATE(3434)] = 184245, + [SMALL_STATE(3435)] = 184286, + [SMALL_STATE(3436)] = 184367, + [SMALL_STATE(3437)] = 184448, + [SMALL_STATE(3438)] = 184529, + [SMALL_STATE(3439)] = 184610, + [SMALL_STATE(3440)] = 184691, + [SMALL_STATE(3441)] = 184772, + [SMALL_STATE(3442)] = 184813, + [SMALL_STATE(3443)] = 184894, + [SMALL_STATE(3444)] = 184967, + [SMALL_STATE(3445)] = 185048, + [SMALL_STATE(3446)] = 185121, + [SMALL_STATE(3447)] = 185202, + [SMALL_STATE(3448)] = 185243, + [SMALL_STATE(3449)] = 185284, + [SMALL_STATE(3450)] = 185325, + [SMALL_STATE(3451)] = 185406, + [SMALL_STATE(3452)] = 185487, + [SMALL_STATE(3453)] = 185538, + [SMALL_STATE(3454)] = 185579, + [SMALL_STATE(3455)] = 185620, + [SMALL_STATE(3456)] = 185701, + [SMALL_STATE(3457)] = 185774, + [SMALL_STATE(3458)] = 185855, + [SMALL_STATE(3459)] = 185896, + [SMALL_STATE(3460)] = 185937, + [SMALL_STATE(3461)] = 185978, + [SMALL_STATE(3462)] = 186059, + [SMALL_STATE(3463)] = 186100, + [SMALL_STATE(3464)] = 186141, + [SMALL_STATE(3465)] = 186222, + [SMALL_STATE(3466)] = 186273, + [SMALL_STATE(3467)] = 186314, + [SMALL_STATE(3468)] = 186355, + [SMALL_STATE(3469)] = 186436, + [SMALL_STATE(3470)] = 186477, + [SMALL_STATE(3471)] = 186518, + [SMALL_STATE(3472)] = 186559, + [SMALL_STATE(3473)] = 186600, + [SMALL_STATE(3474)] = 186681, + [SMALL_STATE(3475)] = 186762, + [SMALL_STATE(3476)] = 186843, + [SMALL_STATE(3477)] = 186924, + [SMALL_STATE(3478)] = 187005, + [SMALL_STATE(3479)] = 187046, + [SMALL_STATE(3480)] = 187127, + [SMALL_STATE(3481)] = 187168, + [SMALL_STATE(3482)] = 187249, + [SMALL_STATE(3483)] = 187322, + [SMALL_STATE(3484)] = 187366, + [SMALL_STATE(3485)] = 187446, + [SMALL_STATE(3486)] = 187490, + [SMALL_STATE(3487)] = 187570, + [SMALL_STATE(3488)] = 187650, + [SMALL_STATE(3489)] = 187730, + [SMALL_STATE(3490)] = 187810, + [SMALL_STATE(3491)] = 187854, + [SMALL_STATE(3492)] = 187934, + [SMALL_STATE(3493)] = 188014, + [SMALL_STATE(3494)] = 188064, + [SMALL_STATE(3495)] = 188144, + [SMALL_STATE(3496)] = 188194, + [SMALL_STATE(3497)] = 188244, + [SMALL_STATE(3498)] = 188324, + [SMALL_STATE(3499)] = 188404, + [SMALL_STATE(3500)] = 188484, + [SMALL_STATE(3501)] = 188528, + [SMALL_STATE(3502)] = 188572, + [SMALL_STATE(3503)] = 188652, + [SMALL_STATE(3504)] = 188732, + [SMALL_STATE(3505)] = 188782, + [SMALL_STATE(3506)] = 188862, + [SMALL_STATE(3507)] = 188906, + [SMALL_STATE(3508)] = 188986, + [SMALL_STATE(3509)] = 189030, + [SMALL_STATE(3510)] = 189110, + [SMALL_STATE(3511)] = 189190, + [SMALL_STATE(3512)] = 189270, + [SMALL_STATE(3513)] = 189350, + [SMALL_STATE(3514)] = 189427, + [SMALL_STATE(3515)] = 189504, + [SMALL_STATE(3516)] = 189581, + [SMALL_STATE(3517)] = 189658, + [SMALL_STATE(3518)] = 189735, + [SMALL_STATE(3519)] = 189810, + [SMALL_STATE(3520)] = 189887, + [SMALL_STATE(3521)] = 189964, + [SMALL_STATE(3522)] = 190039, + [SMALL_STATE(3523)] = 190116, + [SMALL_STATE(3524)] = 190193, + [SMALL_STATE(3525)] = 190270, + [SMALL_STATE(3526)] = 190347, + [SMALL_STATE(3527)] = 190422, + [SMALL_STATE(3528)] = 190499, + [SMALL_STATE(3529)] = 190576, + [SMALL_STATE(3530)] = 190651, + [SMALL_STATE(3531)] = 190728, + [SMALL_STATE(3532)] = 190805, + [SMALL_STATE(3533)] = 190882, + [SMALL_STATE(3534)] = 190959, + [SMALL_STATE(3535)] = 191036, + [SMALL_STATE(3536)] = 191113, + [SMALL_STATE(3537)] = 191190, + [SMALL_STATE(3538)] = 191267, + [SMALL_STATE(3539)] = 191344, + [SMALL_STATE(3540)] = 191419, + [SMALL_STATE(3541)] = 191494, + [SMALL_STATE(3542)] = 191569, + [SMALL_STATE(3543)] = 191646, + [SMALL_STATE(3544)] = 191723, + [SMALL_STATE(3545)] = 191800, + [SMALL_STATE(3546)] = 191877, + [SMALL_STATE(3547)] = 191916, + [SMALL_STATE(3548)] = 191955, + [SMALL_STATE(3549)] = 192030, + [SMALL_STATE(3550)] = 192107, + [SMALL_STATE(3551)] = 192184, + [SMALL_STATE(3552)] = 192233, + [SMALL_STATE(3553)] = 192308, + [SMALL_STATE(3554)] = 192385, + [SMALL_STATE(3555)] = 192462, + [SMALL_STATE(3556)] = 192539, + [SMALL_STATE(3557)] = 192616, + [SMALL_STATE(3558)] = 192691, + [SMALL_STATE(3559)] = 192768, + [SMALL_STATE(3560)] = 192843, + [SMALL_STATE(3561)] = 192920, + [SMALL_STATE(3562)] = 192997, + [SMALL_STATE(3563)] = 193072, + [SMALL_STATE(3564)] = 193149, + [SMALL_STATE(3565)] = 193224, + [SMALL_STATE(3566)] = 193301, + [SMALL_STATE(3567)] = 193378, + [SMALL_STATE(3568)] = 193455, + [SMALL_STATE(3569)] = 193532, + [SMALL_STATE(3570)] = 193609, + [SMALL_STATE(3571)] = 193686, + [SMALL_STATE(3572)] = 193763, + [SMALL_STATE(3573)] = 193840, + [SMALL_STATE(3574)] = 193915, + [SMALL_STATE(3575)] = 193986, + [SMALL_STATE(3576)] = 194063, + [SMALL_STATE(3577)] = 194140, + [SMALL_STATE(3578)] = 194217, + [SMALL_STATE(3579)] = 194294, + [SMALL_STATE(3580)] = 194371, + [SMALL_STATE(3581)] = 194448, + [SMALL_STATE(3582)] = 194525, + [SMALL_STATE(3583)] = 194602, + [SMALL_STATE(3584)] = 194679, + [SMALL_STATE(3585)] = 194756, + [SMALL_STATE(3586)] = 194833, + [SMALL_STATE(3587)] = 194910, + [SMALL_STATE(3588)] = 194987, + [SMALL_STATE(3589)] = 195064, + [SMALL_STATE(3590)] = 195139, + [SMALL_STATE(3591)] = 195216, + [SMALL_STATE(3592)] = 195293, + [SMALL_STATE(3593)] = 195370, + [SMALL_STATE(3594)] = 195447, + [SMALL_STATE(3595)] = 195524, + [SMALL_STATE(3596)] = 195573, + [SMALL_STATE(3597)] = 195650, + [SMALL_STATE(3598)] = 195727, + [SMALL_STATE(3599)] = 195802, + [SMALL_STATE(3600)] = 195879, + [SMALL_STATE(3601)] = 195956, + [SMALL_STATE(3602)] = 196031, + [SMALL_STATE(3603)] = 196106, + [SMALL_STATE(3604)] = 196181, + [SMALL_STATE(3605)] = 196258, + [SMALL_STATE(3606)] = 196335, + [SMALL_STATE(3607)] = 196410, + [SMALL_STATE(3608)] = 196487, + [SMALL_STATE(3609)] = 196564, + [SMALL_STATE(3610)] = 196641, + [SMALL_STATE(3611)] = 196690, + [SMALL_STATE(3612)] = 196767, + [SMALL_STATE(3613)] = 196844, + [SMALL_STATE(3614)] = 196921, + [SMALL_STATE(3615)] = 196998, + [SMALL_STATE(3616)] = 197075, + [SMALL_STATE(3617)] = 197150, + [SMALL_STATE(3618)] = 197227, + [SMALL_STATE(3619)] = 197304, + [SMALL_STATE(3620)] = 197379, + [SMALL_STATE(3621)] = 197456, + [SMALL_STATE(3622)] = 197533, + [SMALL_STATE(3623)] = 197610, + [SMALL_STATE(3624)] = 197687, + [SMALL_STATE(3625)] = 197764, + [SMALL_STATE(3626)] = 197841, + [SMALL_STATE(3627)] = 197918, + [SMALL_STATE(3628)] = 197995, + [SMALL_STATE(3629)] = 198072, + [SMALL_STATE(3630)] = 198149, + [SMALL_STATE(3631)] = 198226, + [SMALL_STATE(3632)] = 198303, + [SMALL_STATE(3633)] = 198380, + [SMALL_STATE(3634)] = 198457, + [SMALL_STATE(3635)] = 198532, + [SMALL_STATE(3636)] = 198609, + [SMALL_STATE(3637)] = 198686, + [SMALL_STATE(3638)] = 198763, + [SMALL_STATE(3639)] = 198840, + [SMALL_STATE(3640)] = 198917, + [SMALL_STATE(3641)] = 198992, + [SMALL_STATE(3642)] = 199069, + [SMALL_STATE(3643)] = 199146, + [SMALL_STATE(3644)] = 199223, + [SMALL_STATE(3645)] = 199300, + [SMALL_STATE(3646)] = 199377, + [SMALL_STATE(3647)] = 199454, + [SMALL_STATE(3648)] = 199531, + [SMALL_STATE(3649)] = 199608, + [SMALL_STATE(3650)] = 199685, + [SMALL_STATE(3651)] = 199762, + [SMALL_STATE(3652)] = 199839, + [SMALL_STATE(3653)] = 199916, + [SMALL_STATE(3654)] = 199993, + [SMALL_STATE(3655)] = 200070, + [SMALL_STATE(3656)] = 200147, + [SMALL_STATE(3657)] = 200186, + [SMALL_STATE(3658)] = 200263, + [SMALL_STATE(3659)] = 200340, + [SMALL_STATE(3660)] = 200417, + [SMALL_STATE(3661)] = 200492, + [SMALL_STATE(3662)] = 200567, + [SMALL_STATE(3663)] = 200644, + [SMALL_STATE(3664)] = 200721, + [SMALL_STATE(3665)] = 200798, + [SMALL_STATE(3666)] = 200875, + [SMALL_STATE(3667)] = 200950, + [SMALL_STATE(3668)] = 201027, + [SMALL_STATE(3669)] = 201104, + [SMALL_STATE(3670)] = 201181, + [SMALL_STATE(3671)] = 201258, + [SMALL_STATE(3672)] = 201335, + [SMALL_STATE(3673)] = 201412, + [SMALL_STATE(3674)] = 201489, + [SMALL_STATE(3675)] = 201566, + [SMALL_STATE(3676)] = 201643, + [SMALL_STATE(3677)] = 201720, + [SMALL_STATE(3678)] = 201797, + [SMALL_STATE(3679)] = 201846, + [SMALL_STATE(3680)] = 201921, + [SMALL_STATE(3681)] = 201998, + [SMALL_STATE(3682)] = 202075, + [SMALL_STATE(3683)] = 202114, + [SMALL_STATE(3684)] = 202191, + [SMALL_STATE(3685)] = 202268, + [SMALL_STATE(3686)] = 202345, + [SMALL_STATE(3687)] = 202422, + [SMALL_STATE(3688)] = 202499, + [SMALL_STATE(3689)] = 202538, + [SMALL_STATE(3690)] = 202613, + [SMALL_STATE(3691)] = 202690, + [SMALL_STATE(3692)] = 202767, + [SMALL_STATE(3693)] = 202844, + [SMALL_STATE(3694)] = 202921, + [SMALL_STATE(3695)] = 202998, + [SMALL_STATE(3696)] = 203075, + [SMALL_STATE(3697)] = 203152, + [SMALL_STATE(3698)] = 203227, + [SMALL_STATE(3699)] = 203302, + [SMALL_STATE(3700)] = 203379, + [SMALL_STATE(3701)] = 203456, + [SMALL_STATE(3702)] = 203533, + [SMALL_STATE(3703)] = 203572, + [SMALL_STATE(3704)] = 203649, + [SMALL_STATE(3705)] = 203726, + [SMALL_STATE(3706)] = 203803, + [SMALL_STATE(3707)] = 203880, + [SMALL_STATE(3708)] = 203957, + [SMALL_STATE(3709)] = 204006, + [SMALL_STATE(3710)] = 204083, + [SMALL_STATE(3711)] = 204160, + [SMALL_STATE(3712)] = 204235, + [SMALL_STATE(3713)] = 204284, + [SMALL_STATE(3714)] = 204361, + [SMALL_STATE(3715)] = 204438, + [SMALL_STATE(3716)] = 204513, + [SMALL_STATE(3717)] = 204588, + [SMALL_STATE(3718)] = 204663, + [SMALL_STATE(3719)] = 204738, + [SMALL_STATE(3720)] = 204815, + [SMALL_STATE(3721)] = 204890, + [SMALL_STATE(3722)] = 204929, + [SMALL_STATE(3723)] = 205006, + [SMALL_STATE(3724)] = 205081, + [SMALL_STATE(3725)] = 205156, + [SMALL_STATE(3726)] = 205233, + [SMALL_STATE(3727)] = 205310, + [SMALL_STATE(3728)] = 205387, + [SMALL_STATE(3729)] = 205464, + [SMALL_STATE(3730)] = 205539, + [SMALL_STATE(3731)] = 205616, + [SMALL_STATE(3732)] = 205693, + [SMALL_STATE(3733)] = 205770, + [SMALL_STATE(3734)] = 205847, + [SMALL_STATE(3735)] = 205924, + [SMALL_STATE(3736)] = 205999, + [SMALL_STATE(3737)] = 206076, + [SMALL_STATE(3738)] = 206153, + [SMALL_STATE(3739)] = 206230, + [SMALL_STATE(3740)] = 206305, + [SMALL_STATE(3741)] = 206380, + [SMALL_STATE(3742)] = 206457, + [SMALL_STATE(3743)] = 206534, + [SMALL_STATE(3744)] = 206573, + [SMALL_STATE(3745)] = 206650, + [SMALL_STATE(3746)] = 206727, + [SMALL_STATE(3747)] = 206804, + [SMALL_STATE(3748)] = 206853, + [SMALL_STATE(3749)] = 206930, + [SMALL_STATE(3750)] = 207005, + [SMALL_STATE(3751)] = 207082, + [SMALL_STATE(3752)] = 207159, + [SMALL_STATE(3753)] = 207198, + [SMALL_STATE(3754)] = 207275, + [SMALL_STATE(3755)] = 207350, + [SMALL_STATE(3756)] = 207427, + [SMALL_STATE(3757)] = 207504, + [SMALL_STATE(3758)] = 207581, + [SMALL_STATE(3759)] = 207658, + [SMALL_STATE(3760)] = 207735, + [SMALL_STATE(3761)] = 207810, + [SMALL_STATE(3762)] = 207887, + [SMALL_STATE(3763)] = 207936, + [SMALL_STATE(3764)] = 208011, + [SMALL_STATE(3765)] = 208088, + [SMALL_STATE(3766)] = 208165, + [SMALL_STATE(3767)] = 208213, + [SMALL_STATE(3768)] = 208261, + [SMALL_STATE(3769)] = 208331, + [SMALL_STATE(3770)] = 208401, + [SMALL_STATE(3771)] = 208475, + [SMALL_STATE(3772)] = 208523, + [SMALL_STATE(3773)] = 208593, + [SMALL_STATE(3774)] = 208667, + [SMALL_STATE(3775)] = 208737, + [SMALL_STATE(3776)] = 208811, + [SMALL_STATE(3777)] = 208859, + [SMALL_STATE(3778)] = 208929, + [SMALL_STATE(3779)] = 208999, + [SMALL_STATE(3780)] = 209071, + [SMALL_STATE(3781)] = 209143, + [SMALL_STATE(3782)] = 209213, + [SMALL_STATE(3783)] = 209283, + [SMALL_STATE(3784)] = 209341, + [SMALL_STATE(3785)] = 209389, + [SMALL_STATE(3786)] = 209463, + [SMALL_STATE(3787)] = 209537, + [SMALL_STATE(3788)] = 209607, + [SMALL_STATE(3789)] = 209677, + [SMALL_STATE(3790)] = 209751, + [SMALL_STATE(3791)] = 209799, + [SMALL_STATE(3792)] = 209847, + [SMALL_STATE(3793)] = 209893, + [SMALL_STATE(3794)] = 209941, + [SMALL_STATE(3795)] = 210011, + [SMALL_STATE(3796)] = 210069, + [SMALL_STATE(3797)] = 210139, + [SMALL_STATE(3798)] = 210213, + [SMALL_STATE(3799)] = 210257, + [SMALL_STATE(3800)] = 210329, + [SMALL_STATE(3801)] = 210401, + [SMALL_STATE(3802)] = 210468, + [SMALL_STATE(3803)] = 210535, + [SMALL_STATE(3804)] = 210602, + [SMALL_STATE(3805)] = 210673, + [SMALL_STATE(3806)] = 210744, + [SMALL_STATE(3807)] = 210811, + [SMALL_STATE(3808)] = 210878, + [SMALL_STATE(3809)] = 210949, + [SMALL_STATE(3810)] = 211020, + [SMALL_STATE(3811)] = 211087, + [SMALL_STATE(3812)] = 211154, + [SMALL_STATE(3813)] = 211225, + [SMALL_STATE(3814)] = 211296, + [SMALL_STATE(3815)] = 211363, + [SMALL_STATE(3816)] = 211430, + [SMALL_STATE(3817)] = 211497, + [SMALL_STATE(3818)] = 211568, + [SMALL_STATE(3819)] = 211639, + [SMALL_STATE(3820)] = 211706, + [SMALL_STATE(3821)] = 211777, + [SMALL_STATE(3822)] = 211848, + [SMALL_STATE(3823)] = 211915, + [SMALL_STATE(3824)] = 211982, + [SMALL_STATE(3825)] = 212049, + [SMALL_STATE(3826)] = 212120, + [SMALL_STATE(3827)] = 212191, + [SMALL_STATE(3828)] = 212258, + [SMALL_STATE(3829)] = 212329, + [SMALL_STATE(3830)] = 212400, + [SMALL_STATE(3831)] = 212467, + [SMALL_STATE(3832)] = 212534, + [SMALL_STATE(3833)] = 212605, + [SMALL_STATE(3834)] = 212676, + [SMALL_STATE(3835)] = 212743, + [SMALL_STATE(3836)] = 212810, + [SMALL_STATE(3837)] = 212881, + [SMALL_STATE(3838)] = 212952, + [SMALL_STATE(3839)] = 213019, + [SMALL_STATE(3840)] = 213086, + [SMALL_STATE(3841)] = 213153, + [SMALL_STATE(3842)] = 213224, + [SMALL_STATE(3843)] = 213295, + [SMALL_STATE(3844)] = 213362, + [SMALL_STATE(3845)] = 213433, + [SMALL_STATE(3846)] = 213504, + [SMALL_STATE(3847)] = 213571, + [SMALL_STATE(3848)] = 213642, + [SMALL_STATE(3849)] = 213713, + [SMALL_STATE(3850)] = 213780, + [SMALL_STATE(3851)] = 213847, + [SMALL_STATE(3852)] = 213904, + [SMALL_STATE(3853)] = 213971, + [SMALL_STATE(3854)] = 214038, + [SMALL_STATE(3855)] = 214105, + [SMALL_STATE(3856)] = 214172, + [SMALL_STATE(3857)] = 214239, + [SMALL_STATE(3858)] = 214306, + [SMALL_STATE(3859)] = 214373, + [SMALL_STATE(3860)] = 214440, + [SMALL_STATE(3861)] = 214507, + [SMALL_STATE(3862)] = 214574, + [SMALL_STATE(3863)] = 214641, + [SMALL_STATE(3864)] = 214708, + [SMALL_STATE(3865)] = 214775, + [SMALL_STATE(3866)] = 214822, + [SMALL_STATE(3867)] = 214889, + [SMALL_STATE(3868)] = 214956, + [SMALL_STATE(3869)] = 215023, + [SMALL_STATE(3870)] = 215090, + [SMALL_STATE(3871)] = 215157, + [SMALL_STATE(3872)] = 215224, + [SMALL_STATE(3873)] = 215291, + [SMALL_STATE(3874)] = 215358, + [SMALL_STATE(3875)] = 215425, + [SMALL_STATE(3876)] = 215492, + [SMALL_STATE(3877)] = 215559, + [SMALL_STATE(3878)] = 215626, + [SMALL_STATE(3879)] = 215693, + [SMALL_STATE(3880)] = 215760, + [SMALL_STATE(3881)] = 215827, + [SMALL_STATE(3882)] = 215894, + [SMALL_STATE(3883)] = 215961, + [SMALL_STATE(3884)] = 216028, + [SMALL_STATE(3885)] = 216095, + [SMALL_STATE(3886)] = 216162, + [SMALL_STATE(3887)] = 216229, + [SMALL_STATE(3888)] = 216296, + [SMALL_STATE(3889)] = 216363, + [SMALL_STATE(3890)] = 216430, + [SMALL_STATE(3891)] = 216497, + [SMALL_STATE(3892)] = 216564, + [SMALL_STATE(3893)] = 216631, + [SMALL_STATE(3894)] = 216698, + [SMALL_STATE(3895)] = 216765, + [SMALL_STATE(3896)] = 216832, + [SMALL_STATE(3897)] = 216899, + [SMALL_STATE(3898)] = 216966, + [SMALL_STATE(3899)] = 217033, + [SMALL_STATE(3900)] = 217100, + [SMALL_STATE(3901)] = 217167, + [SMALL_STATE(3902)] = 217234, + [SMALL_STATE(3903)] = 217301, + [SMALL_STATE(3904)] = 217368, + [SMALL_STATE(3905)] = 217435, + [SMALL_STATE(3906)] = 217502, + [SMALL_STATE(3907)] = 217569, + [SMALL_STATE(3908)] = 217636, + [SMALL_STATE(3909)] = 217703, + [SMALL_STATE(3910)] = 217770, + [SMALL_STATE(3911)] = 217841, + [SMALL_STATE(3912)] = 217908, + [SMALL_STATE(3913)] = 217975, + [SMALL_STATE(3914)] = 218046, + [SMALL_STATE(3915)] = 218113, + [SMALL_STATE(3916)] = 218180, + [SMALL_STATE(3917)] = 218247, + [SMALL_STATE(3918)] = 218314, + [SMALL_STATE(3919)] = 218381, + [SMALL_STATE(3920)] = 218448, + [SMALL_STATE(3921)] = 218515, + [SMALL_STATE(3922)] = 218582, + [SMALL_STATE(3923)] = 218649, + [SMALL_STATE(3924)] = 218716, + [SMALL_STATE(3925)] = 218783, + [SMALL_STATE(3926)] = 218850, + [SMALL_STATE(3927)] = 218917, + [SMALL_STATE(3928)] = 218988, + [SMALL_STATE(3929)] = 219059, + [SMALL_STATE(3930)] = 219130, + [SMALL_STATE(3931)] = 219201, + [SMALL_STATE(3932)] = 219268, + [SMALL_STATE(3933)] = 219335, + [SMALL_STATE(3934)] = 219402, + [SMALL_STATE(3935)] = 219469, + [SMALL_STATE(3936)] = 219536, + [SMALL_STATE(3937)] = 219603, + [SMALL_STATE(3938)] = 219670, + [SMALL_STATE(3939)] = 219737, + [SMALL_STATE(3940)] = 219804, + [SMALL_STATE(3941)] = 219871, + [SMALL_STATE(3942)] = 219938, + [SMALL_STATE(3943)] = 220005, + [SMALL_STATE(3944)] = 220072, + [SMALL_STATE(3945)] = 220143, + [SMALL_STATE(3946)] = 220214, + [SMALL_STATE(3947)] = 220285, + [SMALL_STATE(3948)] = 220356, + [SMALL_STATE(3949)] = 220423, + [SMALL_STATE(3950)] = 220490, + [SMALL_STATE(3951)] = 220557, + [SMALL_STATE(3952)] = 220624, + [SMALL_STATE(3953)] = 220695, + [SMALL_STATE(3954)] = 220762, + [SMALL_STATE(3955)] = 220833, + [SMALL_STATE(3956)] = 220904, + [SMALL_STATE(3957)] = 220975, + [SMALL_STATE(3958)] = 221046, + [SMALL_STATE(3959)] = 221113, + [SMALL_STATE(3960)] = 221180, + [SMALL_STATE(3961)] = 221247, + [SMALL_STATE(3962)] = 221314, + [SMALL_STATE(3963)] = 221381, + [SMALL_STATE(3964)] = 221448, + [SMALL_STATE(3965)] = 221515, + [SMALL_STATE(3966)] = 221586, + [SMALL_STATE(3967)] = 221657, + [SMALL_STATE(3968)] = 221728, + [SMALL_STATE(3969)] = 221799, + [SMALL_STATE(3970)] = 221866, + [SMALL_STATE(3971)] = 221933, + [SMALL_STATE(3972)] = 222000, + [SMALL_STATE(3973)] = 222067, + [SMALL_STATE(3974)] = 222134, + [SMALL_STATE(3975)] = 222201, + [SMALL_STATE(3976)] = 222268, + [SMALL_STATE(3977)] = 222335, + [SMALL_STATE(3978)] = 222402, + [SMALL_STATE(3979)] = 222469, + [SMALL_STATE(3980)] = 222536, + [SMALL_STATE(3981)] = 222603, + [SMALL_STATE(3982)] = 222670, + [SMALL_STATE(3983)] = 222737, + [SMALL_STATE(3984)] = 222804, + [SMALL_STATE(3985)] = 222871, + [SMALL_STATE(3986)] = 222938, + [SMALL_STATE(3987)] = 223005, + [SMALL_STATE(3988)] = 223072, + [SMALL_STATE(3989)] = 223139, + [SMALL_STATE(3990)] = 223206, + [SMALL_STATE(3991)] = 223273, + [SMALL_STATE(3992)] = 223348, + [SMALL_STATE(3993)] = 223393, + [SMALL_STATE(3994)] = 223460, + [SMALL_STATE(3995)] = 223527, + [SMALL_STATE(3996)] = 223598, + [SMALL_STATE(3997)] = 223669, + [SMALL_STATE(3998)] = 223736, + [SMALL_STATE(3999)] = 223803, + [SMALL_STATE(4000)] = 223870, + [SMALL_STATE(4001)] = 223937, + [SMALL_STATE(4002)] = 224004, + [SMALL_STATE(4003)] = 224071, + [SMALL_STATE(4004)] = 224138, + [SMALL_STATE(4005)] = 224205, + [SMALL_STATE(4006)] = 224272, + [SMALL_STATE(4007)] = 224339, + [SMALL_STATE(4008)] = 224406, + [SMALL_STATE(4009)] = 224473, + [SMALL_STATE(4010)] = 224540, + [SMALL_STATE(4011)] = 224607, + [SMALL_STATE(4012)] = 224674, + [SMALL_STATE(4013)] = 224741, + [SMALL_STATE(4014)] = 224788, + [SMALL_STATE(4015)] = 224855, + [SMALL_STATE(4016)] = 224922, + [SMALL_STATE(4017)] = 224989, + [SMALL_STATE(4018)] = 225056, + [SMALL_STATE(4019)] = 225123, + [SMALL_STATE(4020)] = 225190, + [SMALL_STATE(4021)] = 225257, + [SMALL_STATE(4022)] = 225324, + [SMALL_STATE(4023)] = 225391, + [SMALL_STATE(4024)] = 225458, + [SMALL_STATE(4025)] = 225525, + [SMALL_STATE(4026)] = 225592, + [SMALL_STATE(4027)] = 225659, + [SMALL_STATE(4028)] = 225726, + [SMALL_STATE(4029)] = 225793, + [SMALL_STATE(4030)] = 225860, + [SMALL_STATE(4031)] = 225927, + [SMALL_STATE(4032)] = 225994, + [SMALL_STATE(4033)] = 226061, + [SMALL_STATE(4034)] = 226104, + [SMALL_STATE(4035)] = 226171, + [SMALL_STATE(4036)] = 226238, + [SMALL_STATE(4037)] = 226309, + [SMALL_STATE(4038)] = 226380, + [SMALL_STATE(4039)] = 226447, + [SMALL_STATE(4040)] = 226514, + [SMALL_STATE(4041)] = 226581, + [SMALL_STATE(4042)] = 226648, + [SMALL_STATE(4043)] = 226715, + [SMALL_STATE(4044)] = 226782, + [SMALL_STATE(4045)] = 226849, + [SMALL_STATE(4046)] = 226916, + [SMALL_STATE(4047)] = 226983, + [SMALL_STATE(4048)] = 227050, + [SMALL_STATE(4049)] = 227117, + [SMALL_STATE(4050)] = 227184, + [SMALL_STATE(4051)] = 227251, + [SMALL_STATE(4052)] = 227318, + [SMALL_STATE(4053)] = 227385, + [SMALL_STATE(4054)] = 227452, + [SMALL_STATE(4055)] = 227519, + [SMALL_STATE(4056)] = 227586, + [SMALL_STATE(4057)] = 227653, + [SMALL_STATE(4058)] = 227720, + [SMALL_STATE(4059)] = 227787, + [SMALL_STATE(4060)] = 227854, + [SMALL_STATE(4061)] = 227921, + [SMALL_STATE(4062)] = 227988, + [SMALL_STATE(4063)] = 228055, + [SMALL_STATE(4064)] = 228122, + [SMALL_STATE(4065)] = 228193, + [SMALL_STATE(4066)] = 228260, + [SMALL_STATE(4067)] = 228331, + [SMALL_STATE(4068)] = 228398, + [SMALL_STATE(4069)] = 228465, + [SMALL_STATE(4070)] = 228532, + [SMALL_STATE(4071)] = 228575, + [SMALL_STATE(4072)] = 228642, + [SMALL_STATE(4073)] = 228713, + [SMALL_STATE(4074)] = 228780, + [SMALL_STATE(4075)] = 228847, + [SMALL_STATE(4076)] = 228914, + [SMALL_STATE(4077)] = 228981, + [SMALL_STATE(4078)] = 229048, + [SMALL_STATE(4079)] = 229115, + [SMALL_STATE(4080)] = 229182, + [SMALL_STATE(4081)] = 229247, + [SMALL_STATE(4082)] = 229318, + [SMALL_STATE(4083)] = 229389, + [SMALL_STATE(4084)] = 229446, + [SMALL_STATE(4085)] = 229513, + [SMALL_STATE(4086)] = 229580, + [SMALL_STATE(4087)] = 229647, + [SMALL_STATE(4088)] = 229714, + [SMALL_STATE(4089)] = 229781, + [SMALL_STATE(4090)] = 229848, + [SMALL_STATE(4091)] = 229915, + [SMALL_STATE(4092)] = 229982, + [SMALL_STATE(4093)] = 230053, + [SMALL_STATE(4094)] = 230128, + [SMALL_STATE(4095)] = 230195, + [SMALL_STATE(4096)] = 230266, + [SMALL_STATE(4097)] = 230337, + [SMALL_STATE(4098)] = 230404, + [SMALL_STATE(4099)] = 230471, + [SMALL_STATE(4100)] = 230538, + [SMALL_STATE(4101)] = 230605, + [SMALL_STATE(4102)] = 230672, + [SMALL_STATE(4103)] = 230739, + [SMALL_STATE(4104)] = 230810, + [SMALL_STATE(4105)] = 230881, + [SMALL_STATE(4106)] = 230948, + [SMALL_STATE(4107)] = 231015, + [SMALL_STATE(4108)] = 231082, + [SMALL_STATE(4109)] = 231153, + [SMALL_STATE(4110)] = 231224, + [SMALL_STATE(4111)] = 231291, + [SMALL_STATE(4112)] = 231358, + [SMALL_STATE(4113)] = 231429, + [SMALL_STATE(4114)] = 231496, + [SMALL_STATE(4115)] = 231567, + [SMALL_STATE(4116)] = 231638, + [SMALL_STATE(4117)] = 231709, + [SMALL_STATE(4118)] = 231780, + [SMALL_STATE(4119)] = 231851, + [SMALL_STATE(4120)] = 231926, + [SMALL_STATE(4121)] = 231993, + [SMALL_STATE(4122)] = 232060, + [SMALL_STATE(4123)] = 232127, + [SMALL_STATE(4124)] = 232194, + [SMALL_STATE(4125)] = 232261, + [SMALL_STATE(4126)] = 232328, + [SMALL_STATE(4127)] = 232399, + [SMALL_STATE(4128)] = 232466, + [SMALL_STATE(4129)] = 232537, + [SMALL_STATE(4130)] = 232580, + [SMALL_STATE(4131)] = 232651, + [SMALL_STATE(4132)] = 232722, + [SMALL_STATE(4133)] = 232789, + [SMALL_STATE(4134)] = 232860, + [SMALL_STATE(4135)] = 232931, + [SMALL_STATE(4136)] = 233002, + [SMALL_STATE(4137)] = 233077, + [SMALL_STATE(4138)] = 233148, + [SMALL_STATE(4139)] = 233219, + [SMALL_STATE(4140)] = 233265, + [SMALL_STATE(4141)] = 233307, + [SMALL_STATE(4142)] = 233359, + [SMALL_STATE(4143)] = 233401, + [SMALL_STATE(4144)] = 233443, + [SMALL_STATE(4145)] = 233485, + [SMALL_STATE(4146)] = 233527, + [SMALL_STATE(4147)] = 233569, + [SMALL_STATE(4148)] = 233611, + [SMALL_STATE(4149)] = 233653, + [SMALL_STATE(4150)] = 233699, + [SMALL_STATE(4151)] = 233743, + [SMALL_STATE(4152)] = 233799, + [SMALL_STATE(4153)] = 233845, + [SMALL_STATE(4154)] = 233887, + [SMALL_STATE(4155)] = 233943, + [SMALL_STATE(4156)] = 233985, + [SMALL_STATE(4157)] = 234027, + [SMALL_STATE(4158)] = 234069, + [SMALL_STATE(4159)] = 234111, + [SMALL_STATE(4160)] = 234153, + [SMALL_STATE(4161)] = 234199, + [SMALL_STATE(4162)] = 234241, + [SMALL_STATE(4163)] = 234297, + [SMALL_STATE(4164)] = 234353, + [SMALL_STATE(4165)] = 234399, + [SMALL_STATE(4166)] = 234441, + [SMALL_STATE(4167)] = 234483, + [SMALL_STATE(4168)] = 234525, + [SMALL_STATE(4169)] = 234577, + [SMALL_STATE(4170)] = 234619, + [SMALL_STATE(4171)] = 234661, + [SMALL_STATE(4172)] = 234703, + [SMALL_STATE(4173)] = 234747, + [SMALL_STATE(4174)] = 234787, + [SMALL_STATE(4175)] = 234831, + [SMALL_STATE(4176)] = 234887, + [SMALL_STATE(4177)] = 234929, + [SMALL_STATE(4178)] = 234971, + [SMALL_STATE(4179)] = 235013, + [SMALL_STATE(4180)] = 235085, + [SMALL_STATE(4181)] = 235131, + [SMALL_STATE(4182)] = 235203, + [SMALL_STATE(4183)] = 235275, + [SMALL_STATE(4184)] = 235331, + [SMALL_STATE(4185)] = 235377, + [SMALL_STATE(4186)] = 235423, + [SMALL_STATE(4187)] = 235465, + [SMALL_STATE(4188)] = 235511, + [SMALL_STATE(4189)] = 235553, + [SMALL_STATE(4190)] = 235591, + [SMALL_STATE(4191)] = 235636, + [SMALL_STATE(4192)] = 235671, + [SMALL_STATE(4193)] = 235716, + [SMALL_STATE(4194)] = 235751, + [SMALL_STATE(4195)] = 235786, + [SMALL_STATE(4196)] = 235823, + [SMALL_STATE(4197)] = 235858, + [SMALL_STATE(4198)] = 235895, + [SMALL_STATE(4199)] = 235930, + [SMALL_STATE(4200)] = 235975, + [SMALL_STATE(4201)] = 236016, + [SMALL_STATE(4202)] = 236057, + [SMALL_STATE(4203)] = 236100, + [SMALL_STATE(4204)] = 236141, + [SMALL_STATE(4205)] = 236192, + [SMALL_STATE(4206)] = 236233, + [SMALL_STATE(4207)] = 236268, + [SMALL_STATE(4208)] = 236313, + [SMALL_STATE(4209)] = 236348, + [SMALL_STATE(4210)] = 236389, + [SMALL_STATE(4211)] = 236430, + [SMALL_STATE(4212)] = 236471, + [SMALL_STATE(4213)] = 236506, + [SMALL_STATE(4214)] = 236541, + [SMALL_STATE(4215)] = 236576, + [SMALL_STATE(4216)] = 236611, + [SMALL_STATE(4217)] = 236646, + [SMALL_STATE(4218)] = 236687, + [SMALL_STATE(4219)] = 236728, + [SMALL_STATE(4220)] = 236769, + [SMALL_STATE(4221)] = 236808, + [SMALL_STATE(4222)] = 236843, + [SMALL_STATE(4223)] = 236878, + [SMALL_STATE(4224)] = 236913, + [SMALL_STATE(4225)] = 236948, + [SMALL_STATE(4226)] = 237001, + [SMALL_STATE(4227)] = 237040, + [SMALL_STATE(4228)] = 237075, + [SMALL_STATE(4229)] = 237116, + [SMALL_STATE(4230)] = 237157, + [SMALL_STATE(4231)] = 237198, + [SMALL_STATE(4232)] = 237239, + [SMALL_STATE(4233)] = 237280, + [SMALL_STATE(4234)] = 237315, + [SMALL_STATE(4235)] = 237350, + [SMALL_STATE(4236)] = 237389, + [SMALL_STATE(4237)] = 237434, + [SMALL_STATE(4238)] = 237471, + [SMALL_STATE(4239)] = 237506, + [SMALL_STATE(4240)] = 237541, + [SMALL_STATE(4241)] = 237576, + [SMALL_STATE(4242)] = 237611, + [SMALL_STATE(4243)] = 237656, + [SMALL_STATE(4244)] = 237697, + [SMALL_STATE(4245)] = 237738, + [SMALL_STATE(4246)] = 237789, + [SMALL_STATE(4247)] = 237824, + [SMALL_STATE(4248)] = 237877, + [SMALL_STATE(4249)] = 237912, + [SMALL_STATE(4250)] = 237947, + [SMALL_STATE(4251)] = 237988, + [SMALL_STATE(4252)] = 238023, + [SMALL_STATE(4253)] = 238058, + [SMALL_STATE(4254)] = 238093, + [SMALL_STATE(4255)] = 238134, + [SMALL_STATE(4256)] = 238175, + [SMALL_STATE(4257)] = 238210, + [SMALL_STATE(4258)] = 238245, + [SMALL_STATE(4259)] = 238280, + [SMALL_STATE(4260)] = 238315, + [SMALL_STATE(4261)] = 238350, + [SMALL_STATE(4262)] = 238389, + [SMALL_STATE(4263)] = 238442, + [SMALL_STATE(4264)] = 238477, + [SMALL_STATE(4265)] = 238516, + [SMALL_STATE(4266)] = 238555, + [SMALL_STATE(4267)] = 238596, + [SMALL_STATE(4268)] = 238637, + [SMALL_STATE(4269)] = 238672, + [SMALL_STATE(4270)] = 238707, + [SMALL_STATE(4271)] = 238742, + [SMALL_STATE(4272)] = 238781, + [SMALL_STATE(4273)] = 238822, + [SMALL_STATE(4274)] = 238863, + [SMALL_STATE(4275)] = 238904, + [SMALL_STATE(4276)] = 238949, + [SMALL_STATE(4277)] = 238994, + [SMALL_STATE(4278)] = 239035, + [SMALL_STATE(4279)] = 239080, + [SMALL_STATE(4280)] = 239115, + [SMALL_STATE(4281)] = 239150, + [SMALL_STATE(4282)] = 239189, + [SMALL_STATE(4283)] = 239228, + [SMALL_STATE(4284)] = 239263, + [SMALL_STATE(4285)] = 239302, + [SMALL_STATE(4286)] = 239337, + [SMALL_STATE(4287)] = 239378, + [SMALL_STATE(4288)] = 239413, + [SMALL_STATE(4289)] = 239448, + [SMALL_STATE(4290)] = 239501, + [SMALL_STATE(4291)] = 239536, + [SMALL_STATE(4292)] = 239571, + [SMALL_STATE(4293)] = 239606, + [SMALL_STATE(4294)] = 239647, + [SMALL_STATE(4295)] = 239682, + [SMALL_STATE(4296)] = 239717, + [SMALL_STATE(4297)] = 239752, + [SMALL_STATE(4298)] = 239787, + [SMALL_STATE(4299)] = 239828, + [SMALL_STATE(4300)] = 239869, + [SMALL_STATE(4301)] = 239908, + [SMALL_STATE(4302)] = 239949, + [SMALL_STATE(4303)] = 239984, + [SMALL_STATE(4304)] = 240025, + [SMALL_STATE(4305)] = 240060, + [SMALL_STATE(4306)] = 240097, + [SMALL_STATE(4307)] = 240132, + [SMALL_STATE(4308)] = 240167, + [SMALL_STATE(4309)] = 240202, + [SMALL_STATE(4310)] = 240237, + [SMALL_STATE(4311)] = 240272, + [SMALL_STATE(4312)] = 240307, + [SMALL_STATE(4313)] = 240342, + [SMALL_STATE(4314)] = 240383, + [SMALL_STATE(4315)] = 240418, + [SMALL_STATE(4316)] = 240455, + [SMALL_STATE(4317)] = 240490, + [SMALL_STATE(4318)] = 240531, + [SMALL_STATE(4319)] = 240576, + [SMALL_STATE(4320)] = 240611, + [SMALL_STATE(4321)] = 240646, + [SMALL_STATE(4322)] = 240681, + [SMALL_STATE(4323)] = 240716, + [SMALL_STATE(4324)] = 240751, + [SMALL_STATE(4325)] = 240792, + [SMALL_STATE(4326)] = 240831, + [SMALL_STATE(4327)] = 240872, + [SMALL_STATE(4328)] = 240907, + [SMALL_STATE(4329)] = 240942, + [SMALL_STATE(4330)] = 240977, + [SMALL_STATE(4331)] = 241022, + [SMALL_STATE(4332)] = 241057, + [SMALL_STATE(4333)] = 241096, + [SMALL_STATE(4334)] = 241131, + [SMALL_STATE(4335)] = 241170, + [SMALL_STATE(4336)] = 241209, + [SMALL_STATE(4337)] = 241244, + [SMALL_STATE(4338)] = 241279, + [SMALL_STATE(4339)] = 241320, + [SMALL_STATE(4340)] = 241361, + [SMALL_STATE(4341)] = 241396, + [SMALL_STATE(4342)] = 241431, + [SMALL_STATE(4343)] = 241471, + [SMALL_STATE(4344)] = 241511, + [SMALL_STATE(4345)] = 241545, + [SMALL_STATE(4346)] = 241593, + [SMALL_STATE(4347)] = 241627, + [SMALL_STATE(4348)] = 241661, + [SMALL_STATE(4349)] = 241695, + [SMALL_STATE(4350)] = 241729, + [SMALL_STATE(4351)] = 241779, + [SMALL_STATE(4352)] = 241813, + [SMALL_STATE(4353)] = 241847, + [SMALL_STATE(4354)] = 241881, + [SMALL_STATE(4355)] = 241915, + [SMALL_STATE(4356)] = 241955, + [SMALL_STATE(4357)] = 241989, + [SMALL_STATE(4358)] = 242023, + [SMALL_STATE(4359)] = 242057, + [SMALL_STATE(4360)] = 242091, + [SMALL_STATE(4361)] = 242125, + [SMALL_STATE(4362)] = 242165, + [SMALL_STATE(4363)] = 242205, + [SMALL_STATE(4364)] = 242239, + [SMALL_STATE(4365)] = 242279, + [SMALL_STATE(4366)] = 242313, + [SMALL_STATE(4367)] = 242353, + [SMALL_STATE(4368)] = 242403, + [SMALL_STATE(4369)] = 242437, + [SMALL_STATE(4370)] = 242487, + [SMALL_STATE(4371)] = 242521, + [SMALL_STATE(4372)] = 242561, + [SMALL_STATE(4373)] = 242595, + [SMALL_STATE(4374)] = 242629, + [SMALL_STATE(4375)] = 242669, + [SMALL_STATE(4376)] = 242703, + [SMALL_STATE(4377)] = 242747, + [SMALL_STATE(4378)] = 242781, + [SMALL_STATE(4379)] = 242815, + [SMALL_STATE(4380)] = 242865, + [SMALL_STATE(4381)] = 242905, + [SMALL_STATE(4382)] = 242943, + [SMALL_STATE(4383)] = 242983, + [SMALL_STATE(4384)] = 243023, + [SMALL_STATE(4385)] = 243061, + [SMALL_STATE(4386)] = 243095, + [SMALL_STATE(4387)] = 243139, + [SMALL_STATE(4388)] = 243177, + [SMALL_STATE(4389)] = 243221, + [SMALL_STATE(4390)] = 243257, + [SMALL_STATE(4391)] = 243301, + [SMALL_STATE(4392)] = 243335, + [SMALL_STATE(4393)] = 243369, + [SMALL_STATE(4394)] = 243403, + [SMALL_STATE(4395)] = 243441, + [SMALL_STATE(4396)] = 243475, + [SMALL_STATE(4397)] = 243519, + [SMALL_STATE(4398)] = 243553, + [SMALL_STATE(4399)] = 243597, + [SMALL_STATE(4400)] = 243635, + [SMALL_STATE(4401)] = 243669, + [SMALL_STATE(4402)] = 243703, + [SMALL_STATE(4403)] = 243737, + [SMALL_STATE(4404)] = 243775, + [SMALL_STATE(4405)] = 243809, + [SMALL_STATE(4406)] = 243843, + [SMALL_STATE(4407)] = 243891, + [SMALL_STATE(4408)] = 243931, + [SMALL_STATE(4409)] = 243965, + [SMALL_STATE(4410)] = 244005, + [SMALL_STATE(4411)] = 244045, + [SMALL_STATE(4412)] = 244085, + [SMALL_STATE(4413)] = 244123, + [SMALL_STATE(4414)] = 244167, + [SMALL_STATE(4415)] = 244205, + [SMALL_STATE(4416)] = 244239, + [SMALL_STATE(4417)] = 244279, + [SMALL_STATE(4418)] = 244319, + [SMALL_STATE(4419)] = 244353, + [SMALL_STATE(4420)] = 244393, + [SMALL_STATE(4421)] = 244431, + [SMALL_STATE(4422)] = 244471, + [SMALL_STATE(4423)] = 244511, + [SMALL_STATE(4424)] = 244549, + [SMALL_STATE(4425)] = 244587, + [SMALL_STATE(4426)] = 244631, + [SMALL_STATE(4427)] = 244667, + [SMALL_STATE(4428)] = 244701, + [SMALL_STATE(4429)] = 244745, + [SMALL_STATE(4430)] = 244779, + [SMALL_STATE(4431)] = 244823, + [SMALL_STATE(4432)] = 244863, + [SMALL_STATE(4433)] = 244901, + [SMALL_STATE(4434)] = 244935, + [SMALL_STATE(4435)] = 244969, + [SMALL_STATE(4436)] = 245019, + [SMALL_STATE(4437)] = 245053, + [SMALL_STATE(4438)] = 245093, + [SMALL_STATE(4439)] = 245133, + [SMALL_STATE(4440)] = 245173, + [SMALL_STATE(4441)] = 245213, + [SMALL_STATE(4442)] = 245253, + [SMALL_STATE(4443)] = 245297, + [SMALL_STATE(4444)] = 245331, + [SMALL_STATE(4445)] = 245375, + [SMALL_STATE(4446)] = 245409, + [SMALL_STATE(4447)] = 245453, + [SMALL_STATE(4448)] = 245491, + [SMALL_STATE(4449)] = 245531, + [SMALL_STATE(4450)] = 245571, + [SMALL_STATE(4451)] = 245605, + [SMALL_STATE(4452)] = 245639, + [SMALL_STATE(4453)] = 245677, + [SMALL_STATE(4454)] = 245717, + [SMALL_STATE(4455)] = 245757, + [SMALL_STATE(4456)] = 245797, + [SMALL_STATE(4457)] = 245837, + [SMALL_STATE(4458)] = 245875, + [SMALL_STATE(4459)] = 245909, + [SMALL_STATE(4460)] = 245943, + [SMALL_STATE(4461)] = 245977, + [SMALL_STATE(4462)] = 246011, + [SMALL_STATE(4463)] = 246045, + [SMALL_STATE(4464)] = 246079, + [SMALL_STATE(4465)] = 246113, + [SMALL_STATE(4466)] = 246147, + [SMALL_STATE(4467)] = 246181, + [SMALL_STATE(4468)] = 246215, + [SMALL_STATE(4469)] = 246253, + [SMALL_STATE(4470)] = 246287, + [SMALL_STATE(4471)] = 246321, + [SMALL_STATE(4472)] = 246355, + [SMALL_STATE(4473)] = 246395, + [SMALL_STATE(4474)] = 246435, + [SMALL_STATE(4475)] = 246473, + [SMALL_STATE(4476)] = 246507, + [SMALL_STATE(4477)] = 246543, + [SMALL_STATE(4478)] = 246581, + [SMALL_STATE(4479)] = 246615, + [SMALL_STATE(4480)] = 246659, + [SMALL_STATE(4481)] = 246693, + [SMALL_STATE(4482)] = 246727, + [SMALL_STATE(4483)] = 246761, + [SMALL_STATE(4484)] = 246795, + [SMALL_STATE(4485)] = 246829, + [SMALL_STATE(4486)] = 246869, + [SMALL_STATE(4487)] = 246909, + [SMALL_STATE(4488)] = 246949, + [SMALL_STATE(4489)] = 246989, + [SMALL_STATE(4490)] = 247029, + [SMALL_STATE(4491)] = 247069, + [SMALL_STATE(4492)] = 247109, + [SMALL_STATE(4493)] = 247149, + [SMALL_STATE(4494)] = 247183, + [SMALL_STATE(4495)] = 247217, + [SMALL_STATE(4496)] = 247251, + [SMALL_STATE(4497)] = 247285, + [SMALL_STATE(4498)] = 247319, + [SMALL_STATE(4499)] = 247353, + [SMALL_STATE(4500)] = 247391, + [SMALL_STATE(4501)] = 247425, + [SMALL_STATE(4502)] = 247459, + [SMALL_STATE(4503)] = 247503, + [SMALL_STATE(4504)] = 247537, + [SMALL_STATE(4505)] = 247581, + [SMALL_STATE(4506)] = 247615, + [SMALL_STATE(4507)] = 247649, + [SMALL_STATE(4508)] = 247683, + [SMALL_STATE(4509)] = 247717, + [SMALL_STATE(4510)] = 247757, + [SMALL_STATE(4511)] = 247791, + [SMALL_STATE(4512)] = 247835, + [SMALL_STATE(4513)] = 247875, + [SMALL_STATE(4514)] = 247915, + [SMALL_STATE(4515)] = 247955, + [SMALL_STATE(4516)] = 247989, + [SMALL_STATE(4517)] = 248029, + [SMALL_STATE(4518)] = 248063, + [SMALL_STATE(4519)] = 248103, + [SMALL_STATE(4520)] = 248143, + [SMALL_STATE(4521)] = 248183, + [SMALL_STATE(4522)] = 248223, + [SMALL_STATE(4523)] = 248263, + [SMALL_STATE(4524)] = 248303, + [SMALL_STATE(4525)] = 248343, + [SMALL_STATE(4526)] = 248383, + [SMALL_STATE(4527)] = 248423, + [SMALL_STATE(4528)] = 248463, + [SMALL_STATE(4529)] = 248503, + [SMALL_STATE(4530)] = 248543, + [SMALL_STATE(4531)] = 248593, + [SMALL_STATE(4532)] = 248633, + [SMALL_STATE(4533)] = 248667, + [SMALL_STATE(4534)] = 248707, + [SMALL_STATE(4535)] = 248747, + [SMALL_STATE(4536)] = 248781, + [SMALL_STATE(4537)] = 248819, + [SMALL_STATE(4538)] = 248859, + [SMALL_STATE(4539)] = 248892, + [SMALL_STATE(4540)] = 248929, + [SMALL_STATE(4541)] = 248962, + [SMALL_STATE(4542)] = 248995, + [SMALL_STATE(4543)] = 249034, + [SMALL_STATE(4544)] = 249073, + [SMALL_STATE(4545)] = 249106, + [SMALL_STATE(4546)] = 249139, + [SMALL_STATE(4547)] = 249172, + [SMALL_STATE(4548)] = 249211, + [SMALL_STATE(4549)] = 249244, + [SMALL_STATE(4550)] = 249283, + [SMALL_STATE(4551)] = 249316, + [SMALL_STATE(4552)] = 249349, + [SMALL_STATE(4553)] = 249382, + [SMALL_STATE(4554)] = 249415, + [SMALL_STATE(4555)] = 249454, + [SMALL_STATE(4556)] = 249493, + [SMALL_STATE(4557)] = 249526, + [SMALL_STATE(4558)] = 249559, + [SMALL_STATE(4559)] = 249592, + [SMALL_STATE(4560)] = 249631, + [SMALL_STATE(4561)] = 249670, + [SMALL_STATE(4562)] = 249703, + [SMALL_STATE(4563)] = 249742, + [SMALL_STATE(4564)] = 249775, + [SMALL_STATE(4565)] = 249808, + [SMALL_STATE(4566)] = 249847, + [SMALL_STATE(4567)] = 249880, + [SMALL_STATE(4568)] = 249919, + [SMALL_STATE(4569)] = 249952, + [SMALL_STATE(4570)] = 249991, + [SMALL_STATE(4571)] = 250030, + [SMALL_STATE(4572)] = 250063, + [SMALL_STATE(4573)] = 250128, + [SMALL_STATE(4574)] = 250161, + [SMALL_STATE(4575)] = 250194, + [SMALL_STATE(4576)] = 250227, + [SMALL_STATE(4577)] = 250260, + [SMALL_STATE(4578)] = 250293, + [SMALL_STATE(4579)] = 250326, + [SMALL_STATE(4580)] = 250359, + [SMALL_STATE(4581)] = 250392, + [SMALL_STATE(4582)] = 250425, + [SMALL_STATE(4583)] = 250458, + [SMALL_STATE(4584)] = 250497, + [SMALL_STATE(4585)] = 250536, + [SMALL_STATE(4586)] = 250569, + [SMALL_STATE(4587)] = 250616, + [SMALL_STATE(4588)] = 250659, + [SMALL_STATE(4589)] = 250702, + [SMALL_STATE(4590)] = 250739, + [SMALL_STATE(4591)] = 250774, + [SMALL_STATE(4592)] = 250807, + [SMALL_STATE(4593)] = 250840, + [SMALL_STATE(4594)] = 250883, + [SMALL_STATE(4595)] = 250920, + [SMALL_STATE(4596)] = 250963, + [SMALL_STATE(4597)] = 250996, + [SMALL_STATE(4598)] = 251029, + [SMALL_STATE(4599)] = 251072, + [SMALL_STATE(4600)] = 251137, + [SMALL_STATE(4601)] = 251170, + [SMALL_STATE(4602)] = 251217, + [SMALL_STATE(4603)] = 251250, + [SMALL_STATE(4604)] = 251283, + [SMALL_STATE(4605)] = 251316, + [SMALL_STATE(4606)] = 251381, + [SMALL_STATE(4607)] = 251414, + [SMALL_STATE(4608)] = 251453, + [SMALL_STATE(4609)] = 251490, + [SMALL_STATE(4610)] = 251523, + [SMALL_STATE(4611)] = 251562, + [SMALL_STATE(4612)] = 251595, + [SMALL_STATE(4613)] = 251642, + [SMALL_STATE(4614)] = 251689, + [SMALL_STATE(4615)] = 251722, + [SMALL_STATE(4616)] = 251755, + [SMALL_STATE(4617)] = 251794, + [SMALL_STATE(4618)] = 251833, + [SMALL_STATE(4619)] = 251870, + [SMALL_STATE(4620)] = 251909, + [SMALL_STATE(4621)] = 251946, + [SMALL_STATE(4622)] = 251983, + [SMALL_STATE(4623)] = 252016, + [SMALL_STATE(4624)] = 252053, + [SMALL_STATE(4625)] = 252086, + [SMALL_STATE(4626)] = 252119, + [SMALL_STATE(4627)] = 252152, + [SMALL_STATE(4628)] = 252185, + [SMALL_STATE(4629)] = 252224, + [SMALL_STATE(4630)] = 252257, + [SMALL_STATE(4631)] = 252290, + [SMALL_STATE(4632)] = 252323, + [SMALL_STATE(4633)] = 252356, + [SMALL_STATE(4634)] = 252389, + [SMALL_STATE(4635)] = 252422, + [SMALL_STATE(4636)] = 252455, + [SMALL_STATE(4637)] = 252494, + [SMALL_STATE(4638)] = 252533, + [SMALL_STATE(4639)] = 252572, + [SMALL_STATE(4640)] = 252611, + [SMALL_STATE(4641)] = 252650, + [SMALL_STATE(4642)] = 252689, + [SMALL_STATE(4643)] = 252728, + [SMALL_STATE(4644)] = 252767, + [SMALL_STATE(4645)] = 252806, + [SMALL_STATE(4646)] = 252845, + [SMALL_STATE(4647)] = 252884, + [SMALL_STATE(4648)] = 252931, + [SMALL_STATE(4649)] = 252996, + [SMALL_STATE(4650)] = 253029, + [SMALL_STATE(4651)] = 253062, + [SMALL_STATE(4652)] = 253101, + [SMALL_STATE(4653)] = 253140, + [SMALL_STATE(4654)] = 253173, + [SMALL_STATE(4655)] = 253238, + [SMALL_STATE(4656)] = 253303, + [SMALL_STATE(4657)] = 253368, + [SMALL_STATE(4658)] = 253433, + [SMALL_STATE(4659)] = 253498, + [SMALL_STATE(4660)] = 253535, + [SMALL_STATE(4661)] = 253574, + [SMALL_STATE(4662)] = 253607, + [SMALL_STATE(4663)] = 253640, + [SMALL_STATE(4664)] = 253679, + [SMALL_STATE(4665)] = 253718, + [SMALL_STATE(4666)] = 253757, + [SMALL_STATE(4667)] = 253796, + [SMALL_STATE(4668)] = 253835, + [SMALL_STATE(4669)] = 253874, + [SMALL_STATE(4670)] = 253913, + [SMALL_STATE(4671)] = 253952, + [SMALL_STATE(4672)] = 253991, + [SMALL_STATE(4673)] = 254024, + [SMALL_STATE(4674)] = 254063, + [SMALL_STATE(4675)] = 254100, + [SMALL_STATE(4676)] = 254139, + [SMALL_STATE(4677)] = 254178, + [SMALL_STATE(4678)] = 254217, + [SMALL_STATE(4679)] = 254256, + [SMALL_STATE(4680)] = 254295, + [SMALL_STATE(4681)] = 254334, + [SMALL_STATE(4682)] = 254373, + [SMALL_STATE(4683)] = 254412, + [SMALL_STATE(4684)] = 254459, + [SMALL_STATE(4685)] = 254492, + [SMALL_STATE(4686)] = 254525, + [SMALL_STATE(4687)] = 254558, + [SMALL_STATE(4688)] = 254616, + [SMALL_STATE(4689)] = 254648, + [SMALL_STATE(4690)] = 254680, + [SMALL_STATE(4691)] = 254738, + [SMALL_STATE(4692)] = 254796, + [SMALL_STATE(4693)] = 254828, + [SMALL_STATE(4694)] = 254860, + [SMALL_STATE(4695)] = 254918, + [SMALL_STATE(4696)] = 254950, + [SMALL_STATE(4697)] = 254982, + [SMALL_STATE(4698)] = 255040, + [SMALL_STATE(4699)] = 255072, + [SMALL_STATE(4700)] = 255130, + [SMALL_STATE(4701)] = 255162, + [SMALL_STATE(4702)] = 255194, + [SMALL_STATE(4703)] = 255226, + [SMALL_STATE(4704)] = 255258, + [SMALL_STATE(4705)] = 255316, + [SMALL_STATE(4706)] = 255348, + [SMALL_STATE(4707)] = 255380, + [SMALL_STATE(4708)] = 255412, + [SMALL_STATE(4709)] = 255444, + [SMALL_STATE(4710)] = 255502, + [SMALL_STATE(4711)] = 255534, + [SMALL_STATE(4712)] = 255592, + [SMALL_STATE(4713)] = 255624, + [SMALL_STATE(4714)] = 255656, + [SMALL_STATE(4715)] = 255688, + [SMALL_STATE(4716)] = 255720, + [SMALL_STATE(4717)] = 255778, + [SMALL_STATE(4718)] = 255810, + [SMALL_STATE(4719)] = 255868, + [SMALL_STATE(4720)] = 255926, + [SMALL_STATE(4721)] = 255958, + [SMALL_STATE(4722)] = 256016, + [SMALL_STATE(4723)] = 256078, + [SMALL_STATE(4724)] = 256110, + [SMALL_STATE(4725)] = 256142, + [SMALL_STATE(4726)] = 256200, + [SMALL_STATE(4727)] = 256232, + [SMALL_STATE(4728)] = 256290, + [SMALL_STATE(4729)] = 256322, + [SMALL_STATE(4730)] = 256384, + [SMALL_STATE(4731)] = 256416, + [SMALL_STATE(4732)] = 256448, + [SMALL_STATE(4733)] = 256506, + [SMALL_STATE(4734)] = 256538, + [SMALL_STATE(4735)] = 256570, + [SMALL_STATE(4736)] = 256602, + [SMALL_STATE(4737)] = 256634, + [SMALL_STATE(4738)] = 256666, + [SMALL_STATE(4739)] = 256698, + [SMALL_STATE(4740)] = 256730, + [SMALL_STATE(4741)] = 256762, + [SMALL_STATE(4742)] = 256820, + [SMALL_STATE(4743)] = 256852, + [SMALL_STATE(4744)] = 256884, + [SMALL_STATE(4745)] = 256942, + [SMALL_STATE(4746)] = 256974, + [SMALL_STATE(4747)] = 257006, + [SMALL_STATE(4748)] = 257038, + [SMALL_STATE(4749)] = 257070, + [SMALL_STATE(4750)] = 257102, + [SMALL_STATE(4751)] = 257134, + [SMALL_STATE(4752)] = 257166, + [SMALL_STATE(4753)] = 257224, + [SMALL_STATE(4754)] = 257256, + [SMALL_STATE(4755)] = 257288, + [SMALL_STATE(4756)] = 257324, + [SMALL_STATE(4757)] = 257356, + [SMALL_STATE(4758)] = 257388, + [SMALL_STATE(4759)] = 257420, + [SMALL_STATE(4760)] = 257452, + [SMALL_STATE(4761)] = 257510, + [SMALL_STATE(4762)] = 257568, + [SMALL_STATE(4763)] = 257600, + [SMALL_STATE(4764)] = 257632, + [SMALL_STATE(4765)] = 257664, + [SMALL_STATE(4766)] = 257696, + [SMALL_STATE(4767)] = 257728, + [SMALL_STATE(4768)] = 257760, + [SMALL_STATE(4769)] = 257792, + [SMALL_STATE(4770)] = 257850, + [SMALL_STATE(4771)] = 257882, + [SMALL_STATE(4772)] = 257914, + [SMALL_STATE(4773)] = 257972, + [SMALL_STATE(4774)] = 258004, + [SMALL_STATE(4775)] = 258036, + [SMALL_STATE(4776)] = 258068, + [SMALL_STATE(4777)] = 258100, + [SMALL_STATE(4778)] = 258132, + [SMALL_STATE(4779)] = 258164, + [SMALL_STATE(4780)] = 258222, + [SMALL_STATE(4781)] = 258254, + [SMALL_STATE(4782)] = 258286, + [SMALL_STATE(4783)] = 258318, + [SMALL_STATE(4784)] = 258376, + [SMALL_STATE(4785)] = 258408, + [SMALL_STATE(4786)] = 258466, + [SMALL_STATE(4787)] = 258524, + [SMALL_STATE(4788)] = 258556, + [SMALL_STATE(4789)] = 258588, + [SMALL_STATE(4790)] = 258620, + [SMALL_STATE(4791)] = 258678, + [SMALL_STATE(4792)] = 258736, + [SMALL_STATE(4793)] = 258768, + [SMALL_STATE(4794)] = 258800, + [SMALL_STATE(4795)] = 258858, + [SMALL_STATE(4796)] = 258890, + [SMALL_STATE(4797)] = 258922, + [SMALL_STATE(4798)] = 258954, + [SMALL_STATE(4799)] = 258986, + [SMALL_STATE(4800)] = 259018, + [SMALL_STATE(4801)] = 259050, + [SMALL_STATE(4802)] = 259082, + [SMALL_STATE(4803)] = 259114, + [SMALL_STATE(4804)] = 259146, + [SMALL_STATE(4805)] = 259182, + [SMALL_STATE(4806)] = 259240, + [SMALL_STATE(4807)] = 259298, + [SMALL_STATE(4808)] = 259336, + [SMALL_STATE(4809)] = 259368, + [SMALL_STATE(4810)] = 259406, + [SMALL_STATE(4811)] = 259438, + [SMALL_STATE(4812)] = 259484, + [SMALL_STATE(4813)] = 259542, + [SMALL_STATE(4814)] = 259590, + [SMALL_STATE(4815)] = 259648, + [SMALL_STATE(4816)] = 259706, + [SMALL_STATE(4817)] = 259738, + [SMALL_STATE(4818)] = 259796, + [SMALL_STATE(4819)] = 259842, + [SMALL_STATE(4820)] = 259900, + [SMALL_STATE(4821)] = 259932, + [SMALL_STATE(4822)] = 259964, + [SMALL_STATE(4823)] = 259996, + [SMALL_STATE(4824)] = 260054, + [SMALL_STATE(4825)] = 260116, + [SMALL_STATE(4826)] = 260174, + [SMALL_STATE(4827)] = 260206, + [SMALL_STATE(4828)] = 260238, + [SMALL_STATE(4829)] = 260270, + [SMALL_STATE(4830)] = 260302, + [SMALL_STATE(4831)] = 260334, + [SMALL_STATE(4832)] = 260366, + [SMALL_STATE(4833)] = 260398, + [SMALL_STATE(4834)] = 260430, + [SMALL_STATE(4835)] = 260470, + [SMALL_STATE(4836)] = 260508, + [SMALL_STATE(4837)] = 260540, + [SMALL_STATE(4838)] = 260572, + [SMALL_STATE(4839)] = 260604, + [SMALL_STATE(4840)] = 260636, + [SMALL_STATE(4841)] = 260668, + [SMALL_STATE(4842)] = 260726, + [SMALL_STATE(4843)] = 260784, + [SMALL_STATE(4844)] = 260816, + [SMALL_STATE(4845)] = 260874, + [SMALL_STATE(4846)] = 260906, + [SMALL_STATE(4847)] = 260938, + [SMALL_STATE(4848)] = 260996, + [SMALL_STATE(4849)] = 261028, + [SMALL_STATE(4850)] = 261060, + [SMALL_STATE(4851)] = 261118, + [SMALL_STATE(4852)] = 261150, + [SMALL_STATE(4853)] = 261182, + [SMALL_STATE(4854)] = 261214, + [SMALL_STATE(4855)] = 261246, + [SMALL_STATE(4856)] = 261278, + [SMALL_STATE(4857)] = 261310, + [SMALL_STATE(4858)] = 261342, + [SMALL_STATE(4859)] = 261388, + [SMALL_STATE(4860)] = 261450, + [SMALL_STATE(4861)] = 261482, + [SMALL_STATE(4862)] = 261514, + [SMALL_STATE(4863)] = 261576, + [SMALL_STATE(4864)] = 261634, + [SMALL_STATE(4865)] = 261666, + [SMALL_STATE(4866)] = 261724, + [SMALL_STATE(4867)] = 261756, + [SMALL_STATE(4868)] = 261814, + [SMALL_STATE(4869)] = 261846, + [SMALL_STATE(4870)] = 261904, + [SMALL_STATE(4871)] = 261936, + [SMALL_STATE(4872)] = 261982, + [SMALL_STATE(4873)] = 262014, + [SMALL_STATE(4874)] = 262046, + [SMALL_STATE(4875)] = 262078, + [SMALL_STATE(4876)] = 262136, + [SMALL_STATE(4877)] = 262168, + [SMALL_STATE(4878)] = 262200, + [SMALL_STATE(4879)] = 262262, + [SMALL_STATE(4880)] = 262294, + [SMALL_STATE(4881)] = 262352, + [SMALL_STATE(4882)] = 262384, + [SMALL_STATE(4883)] = 262416, + [SMALL_STATE(4884)] = 262448, + [SMALL_STATE(4885)] = 262506, + [SMALL_STATE(4886)] = 262538, + [SMALL_STATE(4887)] = 262596, + [SMALL_STATE(4888)] = 262634, + [SMALL_STATE(4889)] = 262672, + [SMALL_STATE(4890)] = 262710, + [SMALL_STATE(4891)] = 262748, + [SMALL_STATE(4892)] = 262786, + [SMALL_STATE(4893)] = 262824, + [SMALL_STATE(4894)] = 262862, + [SMALL_STATE(4895)] = 262900, + [SMALL_STATE(4896)] = 262958, + [SMALL_STATE(4897)] = 262990, + [SMALL_STATE(4898)] = 263048, + [SMALL_STATE(4899)] = 263080, + [SMALL_STATE(4900)] = 263112, + [SMALL_STATE(4901)] = 263144, + [SMALL_STATE(4902)] = 263192, + [SMALL_STATE(4903)] = 263224, + [SMALL_STATE(4904)] = 263256, + [SMALL_STATE(4905)] = 263314, + [SMALL_STATE(4906)] = 263346, + [SMALL_STATE(4907)] = 263392, + [SMALL_STATE(4908)] = 263424, + [SMALL_STATE(4909)] = 263456, + [SMALL_STATE(4910)] = 263488, + [SMALL_STATE(4911)] = 263546, + [SMALL_STATE(4912)] = 263578, + [SMALL_STATE(4913)] = 263636, + [SMALL_STATE(4914)] = 263668, + [SMALL_STATE(4915)] = 263726, + [SMALL_STATE(4916)] = 263788, + [SMALL_STATE(4917)] = 263846, + [SMALL_STATE(4918)] = 263882, + [SMALL_STATE(4919)] = 263940, + [SMALL_STATE(4920)] = 263998, + [SMALL_STATE(4921)] = 264056, + [SMALL_STATE(4922)] = 264114, + [SMALL_STATE(4923)] = 264146, + [SMALL_STATE(4924)] = 264178, + [SMALL_STATE(4925)] = 264210, + [SMALL_STATE(4926)] = 264242, + [SMALL_STATE(4927)] = 264300, + [SMALL_STATE(4928)] = 264358, + [SMALL_STATE(4929)] = 264390, + [SMALL_STATE(4930)] = 264422, + [SMALL_STATE(4931)] = 264454, + [SMALL_STATE(4932)] = 264486, + [SMALL_STATE(4933)] = 264544, + [SMALL_STATE(4934)] = 264602, + [SMALL_STATE(4935)] = 264660, + [SMALL_STATE(4936)] = 264718, + [SMALL_STATE(4937)] = 264750, + [SMALL_STATE(4938)] = 264808, + [SMALL_STATE(4939)] = 264866, + [SMALL_STATE(4940)] = 264912, + [SMALL_STATE(4941)] = 264944, + [SMALL_STATE(4942)] = 265002, + [SMALL_STATE(4943)] = 265060, + [SMALL_STATE(4944)] = 265118, + [SMALL_STATE(4945)] = 265176, + [SMALL_STATE(4946)] = 265234, + [SMALL_STATE(4947)] = 265296, + [SMALL_STATE(4948)] = 265328, + [SMALL_STATE(4949)] = 265360, + [SMALL_STATE(4950)] = 265422, + [SMALL_STATE(4951)] = 265480, + [SMALL_STATE(4952)] = 265511, + [SMALL_STATE(4953)] = 265552, + [SMALL_STATE(4954)] = 265583, + [SMALL_STATE(4955)] = 265614, + [SMALL_STATE(4956)] = 265645, + [SMALL_STATE(4957)] = 265680, + [SMALL_STATE(4958)] = 265711, + [SMALL_STATE(4959)] = 265742, + [SMALL_STATE(4960)] = 265773, + [SMALL_STATE(4961)] = 265804, + [SMALL_STATE(4962)] = 265847, + [SMALL_STATE(4963)] = 265878, + [SMALL_STATE(4964)] = 265909, + [SMALL_STATE(4965)] = 265944, + [SMALL_STATE(4966)] = 265975, + [SMALL_STATE(4967)] = 266006, + [SMALL_STATE(4968)] = 266037, + [SMALL_STATE(4969)] = 266068, + [SMALL_STATE(4970)] = 266099, + [SMALL_STATE(4971)] = 266130, + [SMALL_STATE(4972)] = 266161, + [SMALL_STATE(4973)] = 266192, + [SMALL_STATE(4974)] = 266223, + [SMALL_STATE(4975)] = 266254, + [SMALL_STATE(4976)] = 266285, + [SMALL_STATE(4977)] = 266316, + [SMALL_STATE(4978)] = 266347, + [SMALL_STATE(4979)] = 266378, + [SMALL_STATE(4980)] = 266409, + [SMALL_STATE(4981)] = 266446, + [SMALL_STATE(4982)] = 266477, + [SMALL_STATE(4983)] = 266508, + [SMALL_STATE(4984)] = 266539, + [SMALL_STATE(4985)] = 266570, + [SMALL_STATE(4986)] = 266601, + [SMALL_STATE(4987)] = 266636, + [SMALL_STATE(4988)] = 266667, + [SMALL_STATE(4989)] = 266702, + [SMALL_STATE(4990)] = 266737, + [SMALL_STATE(4991)] = 266768, + [SMALL_STATE(4992)] = 266799, + [SMALL_STATE(4993)] = 266830, + [SMALL_STATE(4994)] = 266861, + [SMALL_STATE(4995)] = 266892, + [SMALL_STATE(4996)] = 266923, + [SMALL_STATE(4997)] = 266954, + [SMALL_STATE(4998)] = 266991, + [SMALL_STATE(4999)] = 267034, + [SMALL_STATE(5000)] = 267065, + [SMALL_STATE(5001)] = 267096, + [SMALL_STATE(5002)] = 267127, + [SMALL_STATE(5003)] = 267162, + [SMALL_STATE(5004)] = 267193, + [SMALL_STATE(5005)] = 267224, + [SMALL_STATE(5006)] = 267255, + [SMALL_STATE(5007)] = 267286, + [SMALL_STATE(5008)] = 267317, + [SMALL_STATE(5009)] = 267348, + [SMALL_STATE(5010)] = 267379, + [SMALL_STATE(5011)] = 267410, + [SMALL_STATE(5012)] = 267453, + [SMALL_STATE(5013)] = 267488, + [SMALL_STATE(5014)] = 267523, + [SMALL_STATE(5015)] = 267554, + [SMALL_STATE(5016)] = 267597, + [SMALL_STATE(5017)] = 267628, + [SMALL_STATE(5018)] = 267665, + [SMALL_STATE(5019)] = 267708, + [SMALL_STATE(5020)] = 267759, + [SMALL_STATE(5021)] = 267794, + [SMALL_STATE(5022)] = 267835, + [SMALL_STATE(5023)] = 267866, + [SMALL_STATE(5024)] = 267897, + [SMALL_STATE(5025)] = 267928, + [SMALL_STATE(5026)] = 267959, + [SMALL_STATE(5027)] = 268002, + [SMALL_STATE(5028)] = 268043, + [SMALL_STATE(5029)] = 268074, + [SMALL_STATE(5030)] = 268105, + [SMALL_STATE(5031)] = 268141, + [SMALL_STATE(5032)] = 268189, + [SMALL_STATE(5033)] = 268223, + [SMALL_STATE(5034)] = 268257, + [SMALL_STATE(5035)] = 268313, + [SMALL_STATE(5036)] = 268369, + [SMALL_STATE(5037)] = 268425, + [SMALL_STATE(5038)] = 268481, + [SMALL_STATE(5039)] = 268537, + [SMALL_STATE(5040)] = 268593, + [SMALL_STATE(5041)] = 268649, + [SMALL_STATE(5042)] = 268705, + [SMALL_STATE(5043)] = 268761, + [SMALL_STATE(5044)] = 268817, + [SMALL_STATE(5045)] = 268873, + [SMALL_STATE(5046)] = 268929, + [SMALL_STATE(5047)] = 268963, + [SMALL_STATE(5048)] = 268997, + [SMALL_STATE(5049)] = 269031, + [SMALL_STATE(5050)] = 269065, + [SMALL_STATE(5051)] = 269101, + [SMALL_STATE(5052)] = 269137, + [SMALL_STATE(5053)] = 269181, + [SMALL_STATE(5054)] = 269237, + [SMALL_STATE(5055)] = 269273, + [SMALL_STATE(5056)] = 269309, + [SMALL_STATE(5057)] = 269343, + [SMALL_STATE(5058)] = 269377, + [SMALL_STATE(5059)] = 269411, + [SMALL_STATE(5060)] = 269445, + [SMALL_STATE(5061)] = 269479, + [SMALL_STATE(5062)] = 269513, + [SMALL_STATE(5063)] = 269561, + [SMALL_STATE(5064)] = 269617, + [SMALL_STATE(5065)] = 269673, + [SMALL_STATE(5066)] = 269729, + [SMALL_STATE(5067)] = 269759, + [SMALL_STATE(5068)] = 269815, + [SMALL_STATE(5069)] = 269851, + [SMALL_STATE(5070)] = 269887, + [SMALL_STATE(5071)] = 269923, + [SMALL_STATE(5072)] = 269979, + [SMALL_STATE(5073)] = 270021, + [SMALL_STATE(5074)] = 270077, + [SMALL_STATE(5075)] = 270133, + [SMALL_STATE(5076)] = 270175, + [SMALL_STATE(5077)] = 270231, + [SMALL_STATE(5078)] = 270287, + [SMALL_STATE(5079)] = 270343, + [SMALL_STATE(5080)] = 270387, + [SMALL_STATE(5081)] = 270443, + [SMALL_STATE(5082)] = 270499, + [SMALL_STATE(5083)] = 270555, + [SMALL_STATE(5084)] = 270611, + [SMALL_STATE(5085)] = 270667, + [SMALL_STATE(5086)] = 270723, + [SMALL_STATE(5087)] = 270759, + [SMALL_STATE(5088)] = 270815, + [SMALL_STATE(5089)] = 270871, + [SMALL_STATE(5090)] = 270927, + [SMALL_STATE(5091)] = 270983, + [SMALL_STATE(5092)] = 271023, + [SMALL_STATE(5093)] = 271063, + [SMALL_STATE(5094)] = 271097, + [SMALL_STATE(5095)] = 271153, + [SMALL_STATE(5096)] = 271185, + [SMALL_STATE(5097)] = 271225, + [SMALL_STATE(5098)] = 271265, + [SMALL_STATE(5099)] = 271305, + [SMALL_STATE(5100)] = 271361, + [SMALL_STATE(5101)] = 271417, + [SMALL_STATE(5102)] = 271451, + [SMALL_STATE(5103)] = 271487, + [SMALL_STATE(5104)] = 271523, + [SMALL_STATE(5105)] = 271559, + [SMALL_STATE(5106)] = 271595, + [SMALL_STATE(5107)] = 271631, + [SMALL_STATE(5108)] = 271667, + [SMALL_STATE(5109)] = 271701, + [SMALL_STATE(5110)] = 271749, + [SMALL_STATE(5111)] = 271805, + [SMALL_STATE(5112)] = 271839, + [SMALL_STATE(5113)] = 271887, + [SMALL_STATE(5114)] = 271929, + [SMALL_STATE(5115)] = 271983, + [SMALL_STATE(5116)] = 272039, + [SMALL_STATE(5117)] = 272087, + [SMALL_STATE(5118)] = 272121, + [SMALL_STATE(5119)] = 272155, + [SMALL_STATE(5120)] = 272189, + [SMALL_STATE(5121)] = 272231, + [SMALL_STATE(5122)] = 272279, + [SMALL_STATE(5123)] = 272315, + [SMALL_STATE(5124)] = 272351, + [SMALL_STATE(5125)] = 272399, + [SMALL_STATE(5126)] = 272447, + [SMALL_STATE(5127)] = 272483, + [SMALL_STATE(5128)] = 272519, + [SMALL_STATE(5129)] = 272555, + [SMALL_STATE(5130)] = 272591, + [SMALL_STATE(5131)] = 272627, + [SMALL_STATE(5132)] = 272663, + [SMALL_STATE(5133)] = 272699, + [SMALL_STATE(5134)] = 272735, + [SMALL_STATE(5135)] = 272771, + [SMALL_STATE(5136)] = 272827, + [SMALL_STATE(5137)] = 272858, + [SMALL_STATE(5138)] = 272889, + [SMALL_STATE(5139)] = 272920, + [SMALL_STATE(5140)] = 272949, + [SMALL_STATE(5141)] = 272982, + [SMALL_STATE(5142)] = 273011, + [SMALL_STATE(5143)] = 273040, + [SMALL_STATE(5144)] = 273069, + [SMALL_STATE(5145)] = 273098, + [SMALL_STATE(5146)] = 273129, + [SMALL_STATE(5147)] = 273160, + [SMALL_STATE(5148)] = 273193, + [SMALL_STATE(5149)] = 273228, + [SMALL_STATE(5150)] = 273257, + [SMALL_STATE(5151)] = 273290, + [SMALL_STATE(5152)] = 273321, + [SMALL_STATE(5153)] = 273366, + [SMALL_STATE(5154)] = 273399, + [SMALL_STATE(5155)] = 273432, + [SMALL_STATE(5156)] = 273493, + [SMALL_STATE(5157)] = 273534, + [SMALL_STATE(5158)] = 273567, + [SMALL_STATE(5159)] = 273602, + [SMALL_STATE(5160)] = 273635, + [SMALL_STATE(5161)] = 273666, + [SMALL_STATE(5162)] = 273697, + [SMALL_STATE(5163)] = 273730, + [SMALL_STATE(5164)] = 273763, + [SMALL_STATE(5165)] = 273792, + [SMALL_STATE(5166)] = 273853, + [SMALL_STATE(5167)] = 273886, + [SMALL_STATE(5168)] = 273921, + [SMALL_STATE(5169)] = 273956, + [SMALL_STATE(5170)] = 273989, + [SMALL_STATE(5171)] = 274056, + [SMALL_STATE(5172)] = 274089, + [SMALL_STATE(5173)] = 274118, + [SMALL_STATE(5174)] = 274147, + [SMALL_STATE(5175)] = 274188, + [SMALL_STATE(5176)] = 274217, + [SMALL_STATE(5177)] = 274246, + [SMALL_STATE(5178)] = 274275, + [SMALL_STATE(5179)] = 274304, + [SMALL_STATE(5180)] = 274333, + [SMALL_STATE(5181)] = 274368, + [SMALL_STATE(5182)] = 274403, + [SMALL_STATE(5183)] = 274444, + [SMALL_STATE(5184)] = 274477, + [SMALL_STATE(5185)] = 274506, + [SMALL_STATE(5186)] = 274539, + [SMALL_STATE(5187)] = 274568, + [SMALL_STATE(5188)] = 274601, + [SMALL_STATE(5189)] = 274634, + [SMALL_STATE(5190)] = 274667, + [SMALL_STATE(5191)] = 274700, + [SMALL_STATE(5192)] = 274733, + [SMALL_STATE(5193)] = 274762, + [SMALL_STATE(5194)] = 274791, + [SMALL_STATE(5195)] = 274820, + [SMALL_STATE(5196)] = 274849, + [SMALL_STATE(5197)] = 274880, + [SMALL_STATE(5198)] = 274909, + [SMALL_STATE(5199)] = 274938, + [SMALL_STATE(5200)] = 274967, + [SMALL_STATE(5201)] = 274996, + [SMALL_STATE(5202)] = 275029, + [SMALL_STATE(5203)] = 275062, + [SMALL_STATE(5204)] = 275095, + [SMALL_STATE(5205)] = 275128, + [SMALL_STATE(5206)] = 275157, + [SMALL_STATE(5207)] = 275186, + [SMALL_STATE(5208)] = 275215, + [SMALL_STATE(5209)] = 275246, + [SMALL_STATE(5210)] = 275277, + [SMALL_STATE(5211)] = 275310, + [SMALL_STATE(5212)] = 275345, + [SMALL_STATE(5213)] = 275380, + [SMALL_STATE(5214)] = 275411, + [SMALL_STATE(5215)] = 275444, + [SMALL_STATE(5216)] = 275475, + [SMALL_STATE(5217)] = 275506, + [SMALL_STATE(5218)] = 275537, + [SMALL_STATE(5219)] = 275566, + [SMALL_STATE(5220)] = 275597, + [SMALL_STATE(5221)] = 275640, + [SMALL_STATE(5222)] = 275683, + [SMALL_STATE(5223)] = 275714, + [SMALL_STATE(5224)] = 275749, + [SMALL_STATE(5225)] = 275780, + [SMALL_STATE(5226)] = 275811, + [SMALL_STATE(5227)] = 275840, + [SMALL_STATE(5228)] = 275873, + [SMALL_STATE(5229)] = 275902, + [SMALL_STATE(5230)] = 275931, + [SMALL_STATE(5231)] = 275962, + [SMALL_STATE(5232)] = 275993, + [SMALL_STATE(5233)] = 276024, + [SMALL_STATE(5234)] = 276059, + [SMALL_STATE(5235)] = 276090, + [SMALL_STATE(5236)] = 276119, + [SMALL_STATE(5237)] = 276150, + [SMALL_STATE(5238)] = 276185, + [SMALL_STATE(5239)] = 276220, + [SMALL_STATE(5240)] = 276255, + [SMALL_STATE(5241)] = 276290, + [SMALL_STATE(5242)] = 276325, + [SMALL_STATE(5243)] = 276360, + [SMALL_STATE(5244)] = 276395, + [SMALL_STATE(5245)] = 276430, + [SMALL_STATE(5246)] = 276459, + [SMALL_STATE(5247)] = 276492, + [SMALL_STATE(5248)] = 276521, + [SMALL_STATE(5249)] = 276550, + [SMALL_STATE(5250)] = 276585, + [SMALL_STATE(5251)] = 276614, + [SMALL_STATE(5252)] = 276645, + [SMALL_STATE(5253)] = 276674, + [SMALL_STATE(5254)] = 276703, + [SMALL_STATE(5255)] = 276731, + [SMALL_STATE(5256)] = 276759, + [SMALL_STATE(5257)] = 276791, + [SMALL_STATE(5258)] = 276823, + [SMALL_STATE(5259)] = 276855, + [SMALL_STATE(5260)] = 276883, + [SMALL_STATE(5261)] = 276911, + [SMALL_STATE(5262)] = 276943, + [SMALL_STATE(5263)] = 276971, + [SMALL_STATE(5264)] = 276999, + [SMALL_STATE(5265)] = 277027, + [SMALL_STATE(5266)] = 277055, + [SMALL_STATE(5267)] = 277083, + [SMALL_STATE(5268)] = 277123, + [SMALL_STATE(5269)] = 277155, + [SMALL_STATE(5270)] = 277183, + [SMALL_STATE(5271)] = 277211, + [SMALL_STATE(5272)] = 277239, + [SMALL_STATE(5273)] = 277267, + [SMALL_STATE(5274)] = 277295, + [SMALL_STATE(5275)] = 277327, + [SMALL_STATE(5276)] = 277359, + [SMALL_STATE(5277)] = 277391, + [SMALL_STATE(5278)] = 277419, + [SMALL_STATE(5279)] = 277451, + [SMALL_STATE(5280)] = 277483, + [SMALL_STATE(5281)] = 277515, + [SMALL_STATE(5282)] = 277543, + [SMALL_STATE(5283)] = 277583, + [SMALL_STATE(5284)] = 277623, + [SMALL_STATE(5285)] = 277655, + [SMALL_STATE(5286)] = 277683, + [SMALL_STATE(5287)] = 277711, + [SMALL_STATE(5288)] = 277743, + [SMALL_STATE(5289)] = 277771, + [SMALL_STATE(5290)] = 277815, + [SMALL_STATE(5291)] = 277855, + [SMALL_STATE(5292)] = 277887, + [SMALL_STATE(5293)] = 277925, + [SMALL_STATE(5294)] = 277953, + [SMALL_STATE(5295)] = 277981, + [SMALL_STATE(5296)] = 278019, + [SMALL_STATE(5297)] = 278047, + [SMALL_STATE(5298)] = 278075, + [SMALL_STATE(5299)] = 278103, + [SMALL_STATE(5300)] = 278143, + [SMALL_STATE(5301)] = 278183, + [SMALL_STATE(5302)] = 278211, + [SMALL_STATE(5303)] = 278239, + [SMALL_STATE(5304)] = 278267, + [SMALL_STATE(5305)] = 278295, + [SMALL_STATE(5306)] = 278323, + [SMALL_STATE(5307)] = 278351, + [SMALL_STATE(5308)] = 278379, + [SMALL_STATE(5309)] = 278407, + [SMALL_STATE(5310)] = 278435, + [SMALL_STATE(5311)] = 278463, + [SMALL_STATE(5312)] = 278491, + [SMALL_STATE(5313)] = 278519, + [SMALL_STATE(5314)] = 278547, + [SMALL_STATE(5315)] = 278587, + [SMALL_STATE(5316)] = 278615, + [SMALL_STATE(5317)] = 278655, + [SMALL_STATE(5318)] = 278687, + [SMALL_STATE(5319)] = 278715, + [SMALL_STATE(5320)] = 278747, + [SMALL_STATE(5321)] = 278775, + [SMALL_STATE(5322)] = 278803, + [SMALL_STATE(5323)] = 278831, + [SMALL_STATE(5324)] = 278871, + [SMALL_STATE(5325)] = 278911, + [SMALL_STATE(5326)] = 278939, + [SMALL_STATE(5327)] = 278967, + [SMALL_STATE(5328)] = 278999, + [SMALL_STATE(5329)] = 279031, + [SMALL_STATE(5330)] = 279059, + [SMALL_STATE(5331)] = 279087, + [SMALL_STATE(5332)] = 279115, + [SMALL_STATE(5333)] = 279143, + [SMALL_STATE(5334)] = 279171, + [SMALL_STATE(5335)] = 279199, + [SMALL_STATE(5336)] = 279227, + [SMALL_STATE(5337)] = 279255, + [SMALL_STATE(5338)] = 279283, + [SMALL_STATE(5339)] = 279311, + [SMALL_STATE(5340)] = 279339, + [SMALL_STATE(5341)] = 279367, + [SMALL_STATE(5342)] = 279395, + [SMALL_STATE(5343)] = 279423, + [SMALL_STATE(5344)] = 279451, + [SMALL_STATE(5345)] = 279483, + [SMALL_STATE(5346)] = 279511, + [SMALL_STATE(5347)] = 279539, + [SMALL_STATE(5348)] = 279567, + [SMALL_STATE(5349)] = 279595, + [SMALL_STATE(5350)] = 279623, + [SMALL_STATE(5351)] = 279651, + [SMALL_STATE(5352)] = 279679, + [SMALL_STATE(5353)] = 279711, + [SMALL_STATE(5354)] = 279739, + [SMALL_STATE(5355)] = 279771, + [SMALL_STATE(5356)] = 279799, + [SMALL_STATE(5357)] = 279827, + [SMALL_STATE(5358)] = 279855, + [SMALL_STATE(5359)] = 279883, + [SMALL_STATE(5360)] = 279911, + [SMALL_STATE(5361)] = 279939, + [SMALL_STATE(5362)] = 279997, + [SMALL_STATE(5363)] = 280031, + [SMALL_STATE(5364)] = 280065, + [SMALL_STATE(5365)] = 280097, + [SMALL_STATE(5366)] = 280125, + [SMALL_STATE(5367)] = 280153, + [SMALL_STATE(5368)] = 280181, + [SMALL_STATE(5369)] = 280209, + [SMALL_STATE(5370)] = 280237, + [SMALL_STATE(5371)] = 280265, + [SMALL_STATE(5372)] = 280293, + [SMALL_STATE(5373)] = 280321, + [SMALL_STATE(5374)] = 280349, + [SMALL_STATE(5375)] = 280377, + [SMALL_STATE(5376)] = 280405, + [SMALL_STATE(5377)] = 280433, + [SMALL_STATE(5378)] = 280461, + [SMALL_STATE(5379)] = 280489, + [SMALL_STATE(5380)] = 280517, + [SMALL_STATE(5381)] = 280545, + [SMALL_STATE(5382)] = 280573, + [SMALL_STATE(5383)] = 280601, + [SMALL_STATE(5384)] = 280629, + [SMALL_STATE(5385)] = 280657, + [SMALL_STATE(5386)] = 280685, + [SMALL_STATE(5387)] = 280713, + [SMALL_STATE(5388)] = 280741, + [SMALL_STATE(5389)] = 280769, + [SMALL_STATE(5390)] = 280797, + [SMALL_STATE(5391)] = 280825, + [SMALL_STATE(5392)] = 280853, + [SMALL_STATE(5393)] = 280881, + [SMALL_STATE(5394)] = 280909, + [SMALL_STATE(5395)] = 280937, + [SMALL_STATE(5396)] = 280965, + [SMALL_STATE(5397)] = 280993, + [SMALL_STATE(5398)] = 281025, + [SMALL_STATE(5399)] = 281053, + [SMALL_STATE(5400)] = 281081, + [SMALL_STATE(5401)] = 281109, + [SMALL_STATE(5402)] = 281137, + [SMALL_STATE(5403)] = 281165, + [SMALL_STATE(5404)] = 281193, + [SMALL_STATE(5405)] = 281221, + [SMALL_STATE(5406)] = 281249, + [SMALL_STATE(5407)] = 281277, + [SMALL_STATE(5408)] = 281305, + [SMALL_STATE(5409)] = 281333, + [SMALL_STATE(5410)] = 281361, + [SMALL_STATE(5411)] = 281389, + [SMALL_STATE(5412)] = 281417, + [SMALL_STATE(5413)] = 281445, + [SMALL_STATE(5414)] = 281473, + [SMALL_STATE(5415)] = 281501, + [SMALL_STATE(5416)] = 281533, + [SMALL_STATE(5417)] = 281560, + [SMALL_STATE(5418)] = 281591, + [SMALL_STATE(5419)] = 281618, + [SMALL_STATE(5420)] = 281649, + [SMALL_STATE(5421)] = 281680, + [SMALL_STATE(5422)] = 281707, + [SMALL_STATE(5423)] = 281744, + [SMALL_STATE(5424)] = 281799, + [SMALL_STATE(5425)] = 281838, + [SMALL_STATE(5426)] = 281869, + [SMALL_STATE(5427)] = 281896, + [SMALL_STATE(5428)] = 281923, + [SMALL_STATE(5429)] = 281950, + [SMALL_STATE(5430)] = 281977, + [SMALL_STATE(5431)] = 282032, + [SMALL_STATE(5432)] = 282059, + [SMALL_STATE(5433)] = 282086, + [SMALL_STATE(5434)] = 282113, + [SMALL_STATE(5435)] = 282174, + [SMALL_STATE(5436)] = 282207, + [SMALL_STATE(5437)] = 282234, + [SMALL_STATE(5438)] = 282261, + [SMALL_STATE(5439)] = 282300, + [SMALL_STATE(5440)] = 282327, + [SMALL_STATE(5441)] = 282354, + [SMALL_STATE(5442)] = 282381, + [SMALL_STATE(5443)] = 282408, + [SMALL_STATE(5444)] = 282435, + [SMALL_STATE(5445)] = 282462, + [SMALL_STATE(5446)] = 282501, + [SMALL_STATE(5447)] = 282528, + [SMALL_STATE(5448)] = 282555, + [SMALL_STATE(5449)] = 282582, + [SMALL_STATE(5450)] = 282621, + [SMALL_STATE(5451)] = 282648, + [SMALL_STATE(5452)] = 282675, + [SMALL_STATE(5453)] = 282706, + [SMALL_STATE(5454)] = 282745, + [SMALL_STATE(5455)] = 282784, + [SMALL_STATE(5456)] = 282811, + [SMALL_STATE(5457)] = 282838, + [SMALL_STATE(5458)] = 282869, + [SMALL_STATE(5459)] = 282900, + [SMALL_STATE(5460)] = 282939, + [SMALL_STATE(5461)] = 282978, + [SMALL_STATE(5462)] = 283017, + [SMALL_STATE(5463)] = 283044, + [SMALL_STATE(5464)] = 283071, + [SMALL_STATE(5465)] = 283098, + [SMALL_STATE(5466)] = 283124, + [SMALL_STATE(5467)] = 283150, + [SMALL_STATE(5468)] = 283176, + [SMALL_STATE(5469)] = 283202, + [SMALL_STATE(5470)] = 283234, + [SMALL_STATE(5471)] = 283260, + [SMALL_STATE(5472)] = 283286, + [SMALL_STATE(5473)] = 283312, + [SMALL_STATE(5474)] = 283338, + [SMALL_STATE(5475)] = 283370, + [SMALL_STATE(5476)] = 283396, + [SMALL_STATE(5477)] = 283422, + [SMALL_STATE(5478)] = 283448, + [SMALL_STATE(5479)] = 283474, + [SMALL_STATE(5480)] = 283506, + [SMALL_STATE(5481)] = 283532, + [SMALL_STATE(5482)] = 283558, + [SMALL_STATE(5483)] = 283584, + [SMALL_STATE(5484)] = 283610, + [SMALL_STATE(5485)] = 283636, + [SMALL_STATE(5486)] = 283662, + [SMALL_STATE(5487)] = 283688, + [SMALL_STATE(5488)] = 283714, + [SMALL_STATE(5489)] = 283740, + [SMALL_STATE(5490)] = 283766, + [SMALL_STATE(5491)] = 283792, + [SMALL_STATE(5492)] = 283818, + [SMALL_STATE(5493)] = 283844, + [SMALL_STATE(5494)] = 283870, + [SMALL_STATE(5495)] = 283896, + [SMALL_STATE(5496)] = 283922, + [SMALL_STATE(5497)] = 283948, + [SMALL_STATE(5498)] = 283974, + [SMALL_STATE(5499)] = 284000, + [SMALL_STATE(5500)] = 284026, + [SMALL_STATE(5501)] = 284052, + [SMALL_STATE(5502)] = 284078, + [SMALL_STATE(5503)] = 284110, + [SMALL_STATE(5504)] = 284144, + [SMALL_STATE(5505)] = 284170, + [SMALL_STATE(5506)] = 284196, + [SMALL_STATE(5507)] = 284222, + [SMALL_STATE(5508)] = 284248, + [SMALL_STATE(5509)] = 284274, + [SMALL_STATE(5510)] = 284308, + [SMALL_STATE(5511)] = 284334, + [SMALL_STATE(5512)] = 284366, + [SMALL_STATE(5513)] = 284398, + [SMALL_STATE(5514)] = 284424, + [SMALL_STATE(5515)] = 284456, + [SMALL_STATE(5516)] = 284488, + [SMALL_STATE(5517)] = 284514, + [SMALL_STATE(5518)] = 284546, + [SMALL_STATE(5519)] = 284578, + [SMALL_STATE(5520)] = 284604, + [SMALL_STATE(5521)] = 284630, + [SMALL_STATE(5522)] = 284662, + [SMALL_STATE(5523)] = 284694, + [SMALL_STATE(5524)] = 284720, + [SMALL_STATE(5525)] = 284746, + [SMALL_STATE(5526)] = 284778, + [SMALL_STATE(5527)] = 284810, + [SMALL_STATE(5528)] = 284836, + [SMALL_STATE(5529)] = 284862, + [SMALL_STATE(5530)] = 284891, + [SMALL_STATE(5531)] = 284916, + [SMALL_STATE(5532)] = 284941, + [SMALL_STATE(5533)] = 284966, + [SMALL_STATE(5534)] = 284991, + [SMALL_STATE(5535)] = 285020, + [SMALL_STATE(5536)] = 285045, + [SMALL_STATE(5537)] = 285070, + [SMALL_STATE(5538)] = 285095, + [SMALL_STATE(5539)] = 285120, + [SMALL_STATE(5540)] = 285145, + [SMALL_STATE(5541)] = 285170, + [SMALL_STATE(5542)] = 285195, + [SMALL_STATE(5543)] = 285220, + [SMALL_STATE(5544)] = 285245, + [SMALL_STATE(5545)] = 285270, + [SMALL_STATE(5546)] = 285295, + [SMALL_STATE(5547)] = 285320, + [SMALL_STATE(5548)] = 285345, + [SMALL_STATE(5549)] = 285370, + [SMALL_STATE(5550)] = 285395, + [SMALL_STATE(5551)] = 285420, + [SMALL_STATE(5552)] = 285445, + [SMALL_STATE(5553)] = 285470, + [SMALL_STATE(5554)] = 285495, + [SMALL_STATE(5555)] = 285520, + [SMALL_STATE(5556)] = 285545, + [SMALL_STATE(5557)] = 285570, + [SMALL_STATE(5558)] = 285595, + [SMALL_STATE(5559)] = 285620, + [SMALL_STATE(5560)] = 285645, + [SMALL_STATE(5561)] = 285670, + [SMALL_STATE(5562)] = 285695, + [SMALL_STATE(5563)] = 285720, + [SMALL_STATE(5564)] = 285745, + [SMALL_STATE(5565)] = 285770, + [SMALL_STATE(5566)] = 285795, + [SMALL_STATE(5567)] = 285820, + [SMALL_STATE(5568)] = 285845, + [SMALL_STATE(5569)] = 285870, + [SMALL_STATE(5570)] = 285895, + [SMALL_STATE(5571)] = 285920, + [SMALL_STATE(5572)] = 285945, + [SMALL_STATE(5573)] = 285974, + [SMALL_STATE(5574)] = 285999, + [SMALL_STATE(5575)] = 286024, + [SMALL_STATE(5576)] = 286049, + [SMALL_STATE(5577)] = 286074, + [SMALL_STATE(5578)] = 286099, + [SMALL_STATE(5579)] = 286124, + [SMALL_STATE(5580)] = 286149, + [SMALL_STATE(5581)] = 286174, + [SMALL_STATE(5582)] = 286199, + [SMALL_STATE(5583)] = 286224, + [SMALL_STATE(5584)] = 286253, + [SMALL_STATE(5585)] = 286278, + [SMALL_STATE(5586)] = 286303, + [SMALL_STATE(5587)] = 286328, + [SMALL_STATE(5588)] = 286353, + [SMALL_STATE(5589)] = 286378, + [SMALL_STATE(5590)] = 286403, + [SMALL_STATE(5591)] = 286428, + [SMALL_STATE(5592)] = 286453, + [SMALL_STATE(5593)] = 286478, + [SMALL_STATE(5594)] = 286503, + [SMALL_STATE(5595)] = 286528, + [SMALL_STATE(5596)] = 286553, + [SMALL_STATE(5597)] = 286578, + [SMALL_STATE(5598)] = 286603, + [SMALL_STATE(5599)] = 286632, + [SMALL_STATE(5600)] = 286657, + [SMALL_STATE(5601)] = 286682, + [SMALL_STATE(5602)] = 286707, + [SMALL_STATE(5603)] = 286732, + [SMALL_STATE(5604)] = 286757, + [SMALL_STATE(5605)] = 286782, + [SMALL_STATE(5606)] = 286807, + [SMALL_STATE(5607)] = 286832, + [SMALL_STATE(5608)] = 286857, + [SMALL_STATE(5609)] = 286882, + [SMALL_STATE(5610)] = 286907, + [SMALL_STATE(5611)] = 286931, + [SMALL_STATE(5612)] = 286954, + [SMALL_STATE(5613)] = 286985, + [SMALL_STATE(5614)] = 287016, + [SMALL_STATE(5615)] = 287039, + [SMALL_STATE(5616)] = 287076, + [SMALL_STATE(5617)] = 287111, + [SMALL_STATE(5618)] = 287134, + [SMALL_STATE(5619)] = 287157, + [SMALL_STATE(5620)] = 287197, + [SMALL_STATE(5621)] = 287237, + [SMALL_STATE(5622)] = 287277, + [SMALL_STATE(5623)] = 287317, + [SMALL_STATE(5624)] = 287357, + [SMALL_STATE(5625)] = 287397, + [SMALL_STATE(5626)] = 287437, + [SMALL_STATE(5627)] = 287477, + [SMALL_STATE(5628)] = 287517, + [SMALL_STATE(5629)] = 287557, + [SMALL_STATE(5630)] = 287597, + [SMALL_STATE(5631)] = 287637, + [SMALL_STATE(5632)] = 287677, + [SMALL_STATE(5633)] = 287717, + [SMALL_STATE(5634)] = 287757, + [SMALL_STATE(5635)] = 287797, + [SMALL_STATE(5636)] = 287837, + [SMALL_STATE(5637)] = 287877, + [SMALL_STATE(5638)] = 287917, + [SMALL_STATE(5639)] = 287957, + [SMALL_STATE(5640)] = 287997, + [SMALL_STATE(5641)] = 288037, + [SMALL_STATE(5642)] = 288077, + [SMALL_STATE(5643)] = 288117, + [SMALL_STATE(5644)] = 288157, + [SMALL_STATE(5645)] = 288197, + [SMALL_STATE(5646)] = 288237, + [SMALL_STATE(5647)] = 288277, + [SMALL_STATE(5648)] = 288317, + [SMALL_STATE(5649)] = 288357, + [SMALL_STATE(5650)] = 288397, + [SMALL_STATE(5651)] = 288437, + [SMALL_STATE(5652)] = 288477, + [SMALL_STATE(5653)] = 288517, + [SMALL_STATE(5654)] = 288557, + [SMALL_STATE(5655)] = 288597, + [SMALL_STATE(5656)] = 288637, + [SMALL_STATE(5657)] = 288677, + [SMALL_STATE(5658)] = 288717, + [SMALL_STATE(5659)] = 288757, + [SMALL_STATE(5660)] = 288797, + [SMALL_STATE(5661)] = 288837, + [SMALL_STATE(5662)] = 288877, + [SMALL_STATE(5663)] = 288917, + [SMALL_STATE(5664)] = 288957, + [SMALL_STATE(5665)] = 288997, + [SMALL_STATE(5666)] = 289037, + [SMALL_STATE(5667)] = 289077, + [SMALL_STATE(5668)] = 289117, + [SMALL_STATE(5669)] = 289157, + [SMALL_STATE(5670)] = 289197, + [SMALL_STATE(5671)] = 289237, + [SMALL_STATE(5672)] = 289277, + [SMALL_STATE(5673)] = 289317, + [SMALL_STATE(5674)] = 289357, + [SMALL_STATE(5675)] = 289397, + [SMALL_STATE(5676)] = 289437, + [SMALL_STATE(5677)] = 289477, + [SMALL_STATE(5678)] = 289517, + [SMALL_STATE(5679)] = 289557, + [SMALL_STATE(5680)] = 289597, + [SMALL_STATE(5681)] = 289637, + [SMALL_STATE(5682)] = 289677, + [SMALL_STATE(5683)] = 289717, + [SMALL_STATE(5684)] = 289757, + [SMALL_STATE(5685)] = 289797, + [SMALL_STATE(5686)] = 289837, + [SMALL_STATE(5687)] = 289877, + [SMALL_STATE(5688)] = 289917, + [SMALL_STATE(5689)] = 289957, + [SMALL_STATE(5690)] = 289997, + [SMALL_STATE(5691)] = 290037, + [SMALL_STATE(5692)] = 290077, + [SMALL_STATE(5693)] = 290117, + [SMALL_STATE(5694)] = 290157, + [SMALL_STATE(5695)] = 290197, + [SMALL_STATE(5696)] = 290237, + [SMALL_STATE(5697)] = 290277, + [SMALL_STATE(5698)] = 290317, + [SMALL_STATE(5699)] = 290357, + [SMALL_STATE(5700)] = 290397, + [SMALL_STATE(5701)] = 290437, + [SMALL_STATE(5702)] = 290477, + [SMALL_STATE(5703)] = 290517, + [SMALL_STATE(5704)] = 290557, + [SMALL_STATE(5705)] = 290597, + [SMALL_STATE(5706)] = 290637, + [SMALL_STATE(5707)] = 290677, + [SMALL_STATE(5708)] = 290717, + [SMALL_STATE(5709)] = 290757, + [SMALL_STATE(5710)] = 290797, + [SMALL_STATE(5711)] = 290837, + [SMALL_STATE(5712)] = 290877, + [SMALL_STATE(5713)] = 290917, + [SMALL_STATE(5714)] = 290957, + [SMALL_STATE(5715)] = 290997, + [SMALL_STATE(5716)] = 291037, + [SMALL_STATE(5717)] = 291077, + [SMALL_STATE(5718)] = 291117, + [SMALL_STATE(5719)] = 291157, + [SMALL_STATE(5720)] = 291197, + [SMALL_STATE(5721)] = 291237, + [SMALL_STATE(5722)] = 291277, + [SMALL_STATE(5723)] = 291317, + [SMALL_STATE(5724)] = 291357, + [SMALL_STATE(5725)] = 291397, + [SMALL_STATE(5726)] = 291437, + [SMALL_STATE(5727)] = 291477, + [SMALL_STATE(5728)] = 291517, + [SMALL_STATE(5729)] = 291557, + [SMALL_STATE(5730)] = 291597, + [SMALL_STATE(5731)] = 291637, + [SMALL_STATE(5732)] = 291677, + [SMALL_STATE(5733)] = 291717, + [SMALL_STATE(5734)] = 291757, + [SMALL_STATE(5735)] = 291797, + [SMALL_STATE(5736)] = 291837, + [SMALL_STATE(5737)] = 291877, + [SMALL_STATE(5738)] = 291917, + [SMALL_STATE(5739)] = 291957, + [SMALL_STATE(5740)] = 291997, + [SMALL_STATE(5741)] = 292037, + [SMALL_STATE(5742)] = 292077, + [SMALL_STATE(5743)] = 292117, + [SMALL_STATE(5744)] = 292157, + [SMALL_STATE(5745)] = 292197, + [SMALL_STATE(5746)] = 292237, + [SMALL_STATE(5747)] = 292277, + [SMALL_STATE(5748)] = 292317, + [SMALL_STATE(5749)] = 292357, + [SMALL_STATE(5750)] = 292397, + [SMALL_STATE(5751)] = 292437, + [SMALL_STATE(5752)] = 292477, + [SMALL_STATE(5753)] = 292517, + [SMALL_STATE(5754)] = 292557, + [SMALL_STATE(5755)] = 292597, + [SMALL_STATE(5756)] = 292637, + [SMALL_STATE(5757)] = 292677, + [SMALL_STATE(5758)] = 292717, + [SMALL_STATE(5759)] = 292757, + [SMALL_STATE(5760)] = 292797, + [SMALL_STATE(5761)] = 292837, + [SMALL_STATE(5762)] = 292877, + [SMALL_STATE(5763)] = 292917, + [SMALL_STATE(5764)] = 292957, + [SMALL_STATE(5765)] = 292997, + [SMALL_STATE(5766)] = 293037, + [SMALL_STATE(5767)] = 293077, + [SMALL_STATE(5768)] = 293117, + [SMALL_STATE(5769)] = 293157, + [SMALL_STATE(5770)] = 293197, + [SMALL_STATE(5771)] = 293237, + [SMALL_STATE(5772)] = 293277, + [SMALL_STATE(5773)] = 293317, + [SMALL_STATE(5774)] = 293357, + [SMALL_STATE(5775)] = 293386, + [SMALL_STATE(5776)] = 293413, + [SMALL_STATE(5777)] = 293440, + [SMALL_STATE(5778)] = 293467, + [SMALL_STATE(5779)] = 293494, + [SMALL_STATE(5780)] = 293521, + [SMALL_STATE(5781)] = 293548, + [SMALL_STATE(5782)] = 293575, + [SMALL_STATE(5783)] = 293602, + [SMALL_STATE(5784)] = 293629, + [SMALL_STATE(5785)] = 293656, + [SMALL_STATE(5786)] = 293683, + [SMALL_STATE(5787)] = 293710, + [SMALL_STATE(5788)] = 293737, + [SMALL_STATE(5789)] = 293764, + [SMALL_STATE(5790)] = 293791, + [SMALL_STATE(5791)] = 293818, + [SMALL_STATE(5792)] = 293845, + [SMALL_STATE(5793)] = 293872, + [SMALL_STATE(5794)] = 293899, + [SMALL_STATE(5795)] = 293926, + [SMALL_STATE(5796)] = 293955, + [SMALL_STATE(5797)] = 293982, + [SMALL_STATE(5798)] = 294009, + [SMALL_STATE(5799)] = 294036, + [SMALL_STATE(5800)] = 294063, + [SMALL_STATE(5801)] = 294090, + [SMALL_STATE(5802)] = 294117, + [SMALL_STATE(5803)] = 294144, + [SMALL_STATE(5804)] = 294171, + [SMALL_STATE(5805)] = 294198, + [SMALL_STATE(5806)] = 294225, + [SMALL_STATE(5807)] = 294252, + [SMALL_STATE(5808)] = 294279, + [SMALL_STATE(5809)] = 294306, + [SMALL_STATE(5810)] = 294333, + [SMALL_STATE(5811)] = 294360, + [SMALL_STATE(5812)] = 294387, + [SMALL_STATE(5813)] = 294414, + [SMALL_STATE(5814)] = 294441, + [SMALL_STATE(5815)] = 294468, + [SMALL_STATE(5816)] = 294495, + [SMALL_STATE(5817)] = 294522, + [SMALL_STATE(5818)] = 294549, + [SMALL_STATE(5819)] = 294576, + [SMALL_STATE(5820)] = 294603, + [SMALL_STATE(5821)] = 294630, + [SMALL_STATE(5822)] = 294657, + [SMALL_STATE(5823)] = 294684, + [SMALL_STATE(5824)] = 294711, + [SMALL_STATE(5825)] = 294738, + [SMALL_STATE(5826)] = 294765, + [SMALL_STATE(5827)] = 294792, + [SMALL_STATE(5828)] = 294819, + [SMALL_STATE(5829)] = 294846, + [SMALL_STATE(5830)] = 294873, + [SMALL_STATE(5831)] = 294900, + [SMALL_STATE(5832)] = 294927, + [SMALL_STATE(5833)] = 294954, + [SMALL_STATE(5834)] = 294981, + [SMALL_STATE(5835)] = 295008, + [SMALL_STATE(5836)] = 295035, + [SMALL_STATE(5837)] = 295062, + [SMALL_STATE(5838)] = 295089, + [SMALL_STATE(5839)] = 295116, + [SMALL_STATE(5840)] = 295143, + [SMALL_STATE(5841)] = 295170, + [SMALL_STATE(5842)] = 295197, + [SMALL_STATE(5843)] = 295224, + [SMALL_STATE(5844)] = 295251, + [SMALL_STATE(5845)] = 295278, + [SMALL_STATE(5846)] = 295305, + [SMALL_STATE(5847)] = 295332, + [SMALL_STATE(5848)] = 295359, + [SMALL_STATE(5849)] = 295386, + [SMALL_STATE(5850)] = 295413, + [SMALL_STATE(5851)] = 295440, + [SMALL_STATE(5852)] = 295467, + [SMALL_STATE(5853)] = 295494, + [SMALL_STATE(5854)] = 295521, + [SMALL_STATE(5855)] = 295548, + [SMALL_STATE(5856)] = 295575, + [SMALL_STATE(5857)] = 295602, + [SMALL_STATE(5858)] = 295629, + [SMALL_STATE(5859)] = 295656, + [SMALL_STATE(5860)] = 295683, + [SMALL_STATE(5861)] = 295710, + [SMALL_STATE(5862)] = 295737, + [SMALL_STATE(5863)] = 295764, + [SMALL_STATE(5864)] = 295791, + [SMALL_STATE(5865)] = 295818, + [SMALL_STATE(5866)] = 295845, + [SMALL_STATE(5867)] = 295872, + [SMALL_STATE(5868)] = 295899, + [SMALL_STATE(5869)] = 295926, + [SMALL_STATE(5870)] = 295953, + [SMALL_STATE(5871)] = 295980, + [SMALL_STATE(5872)] = 296007, + [SMALL_STATE(5873)] = 296034, + [SMALL_STATE(5874)] = 296061, + [SMALL_STATE(5875)] = 296088, + [SMALL_STATE(5876)] = 296115, + [SMALL_STATE(5877)] = 296142, + [SMALL_STATE(5878)] = 296169, + [SMALL_STATE(5879)] = 296196, + [SMALL_STATE(5880)] = 296223, + [SMALL_STATE(5881)] = 296250, + [SMALL_STATE(5882)] = 296277, + [SMALL_STATE(5883)] = 296304, + [SMALL_STATE(5884)] = 296331, + [SMALL_STATE(5885)] = 296358, + [SMALL_STATE(5886)] = 296385, + [SMALL_STATE(5887)] = 296412, + [SMALL_STATE(5888)] = 296439, + [SMALL_STATE(5889)] = 296466, + [SMALL_STATE(5890)] = 296493, + [SMALL_STATE(5891)] = 296520, + [SMALL_STATE(5892)] = 296547, + [SMALL_STATE(5893)] = 296574, + [SMALL_STATE(5894)] = 296601, + [SMALL_STATE(5895)] = 296628, + [SMALL_STATE(5896)] = 296655, + [SMALL_STATE(5897)] = 296682, + [SMALL_STATE(5898)] = 296709, + [SMALL_STATE(5899)] = 296736, + [SMALL_STATE(5900)] = 296763, + [SMALL_STATE(5901)] = 296790, + [SMALL_STATE(5902)] = 296817, + [SMALL_STATE(5903)] = 296844, + [SMALL_STATE(5904)] = 296871, + [SMALL_STATE(5905)] = 296898, + [SMALL_STATE(5906)] = 296925, + [SMALL_STATE(5907)] = 296952, + [SMALL_STATE(5908)] = 296979, + [SMALL_STATE(5909)] = 297006, + [SMALL_STATE(5910)] = 297033, + [SMALL_STATE(5911)] = 297062, + [SMALL_STATE(5912)] = 297089, + [SMALL_STATE(5913)] = 297116, + [SMALL_STATE(5914)] = 297143, + [SMALL_STATE(5915)] = 297170, + [SMALL_STATE(5916)] = 297197, + [SMALL_STATE(5917)] = 297224, + [SMALL_STATE(5918)] = 297251, + [SMALL_STATE(5919)] = 297278, + [SMALL_STATE(5920)] = 297305, + [SMALL_STATE(5921)] = 297334, + [SMALL_STATE(5922)] = 297361, + [SMALL_STATE(5923)] = 297388, + [SMALL_STATE(5924)] = 297415, + [SMALL_STATE(5925)] = 297442, + [SMALL_STATE(5926)] = 297469, + [SMALL_STATE(5927)] = 297496, + [SMALL_STATE(5928)] = 297523, + [SMALL_STATE(5929)] = 297550, + [SMALL_STATE(5930)] = 297577, + [SMALL_STATE(5931)] = 297604, + [SMALL_STATE(5932)] = 297631, + [SMALL_STATE(5933)] = 297658, + [SMALL_STATE(5934)] = 297685, + [SMALL_STATE(5935)] = 297712, + [SMALL_STATE(5936)] = 297739, + [SMALL_STATE(5937)] = 297766, + [SMALL_STATE(5938)] = 297793, + [SMALL_STATE(5939)] = 297820, + [SMALL_STATE(5940)] = 297847, + [SMALL_STATE(5941)] = 297874, + [SMALL_STATE(5942)] = 297901, + [SMALL_STATE(5943)] = 297928, + [SMALL_STATE(5944)] = 297957, + [SMALL_STATE(5945)] = 297984, + [SMALL_STATE(5946)] = 298011, + [SMALL_STATE(5947)] = 298038, + [SMALL_STATE(5948)] = 298065, + [SMALL_STATE(5949)] = 298092, + [SMALL_STATE(5950)] = 298119, + [SMALL_STATE(5951)] = 298146, + [SMALL_STATE(5952)] = 298175, + [SMALL_STATE(5953)] = 298202, + [SMALL_STATE(5954)] = 298229, + [SMALL_STATE(5955)] = 298256, + [SMALL_STATE(5956)] = 298283, + [SMALL_STATE(5957)] = 298310, + [SMALL_STATE(5958)] = 298337, + [SMALL_STATE(5959)] = 298364, + [SMALL_STATE(5960)] = 298391, + [SMALL_STATE(5961)] = 298418, + [SMALL_STATE(5962)] = 298445, + [SMALL_STATE(5963)] = 298472, + [SMALL_STATE(5964)] = 298499, + [SMALL_STATE(5965)] = 298526, + [SMALL_STATE(5966)] = 298553, + [SMALL_STATE(5967)] = 298580, + [SMALL_STATE(5968)] = 298607, + [SMALL_STATE(5969)] = 298634, + [SMALL_STATE(5970)] = 298661, + [SMALL_STATE(5971)] = 298688, + [SMALL_STATE(5972)] = 298715, + [SMALL_STATE(5973)] = 298742, + [SMALL_STATE(5974)] = 298771, + [SMALL_STATE(5975)] = 298798, + [SMALL_STATE(5976)] = 298825, + [SMALL_STATE(5977)] = 298852, + [SMALL_STATE(5978)] = 298879, + [SMALL_STATE(5979)] = 298906, + [SMALL_STATE(5980)] = 298933, + [SMALL_STATE(5981)] = 298960, + [SMALL_STATE(5982)] = 298987, + [SMALL_STATE(5983)] = 299014, + [SMALL_STATE(5984)] = 299041, + [SMALL_STATE(5985)] = 299068, + [SMALL_STATE(5986)] = 299095, + [SMALL_STATE(5987)] = 299122, + [SMALL_STATE(5988)] = 299149, + [SMALL_STATE(5989)] = 299176, + [SMALL_STATE(5990)] = 299203, + [SMALL_STATE(5991)] = 299230, + [SMALL_STATE(5992)] = 299257, + [SMALL_STATE(5993)] = 299284, + [SMALL_STATE(5994)] = 299311, + [SMALL_STATE(5995)] = 299338, + [SMALL_STATE(5996)] = 299365, + [SMALL_STATE(5997)] = 299394, + [SMALL_STATE(5998)] = 299421, + [SMALL_STATE(5999)] = 299448, + [SMALL_STATE(6000)] = 299475, + [SMALL_STATE(6001)] = 299501, + [SMALL_STATE(6002)] = 299527, + [SMALL_STATE(6003)] = 299553, + [SMALL_STATE(6004)] = 299579, + [SMALL_STATE(6005)] = 299605, + [SMALL_STATE(6006)] = 299631, + [SMALL_STATE(6007)] = 299651, + [SMALL_STATE(6008)] = 299671, + [SMALL_STATE(6009)] = 299697, + [SMALL_STATE(6010)] = 299723, + [SMALL_STATE(6011)] = 299749, + [SMALL_STATE(6012)] = 299773, + [SMALL_STATE(6013)] = 299796, + [SMALL_STATE(6014)] = 299819, + [SMALL_STATE(6015)] = 299840, + [SMALL_STATE(6016)] = 299863, + [SMALL_STATE(6017)] = 299884, + [SMALL_STATE(6018)] = 299907, + [SMALL_STATE(6019)] = 299930, + [SMALL_STATE(6020)] = 299951, + [SMALL_STATE(6021)] = 299974, + [SMALL_STATE(6022)] = 299997, + [SMALL_STATE(6023)] = 300020, + [SMALL_STATE(6024)] = 300043, + [SMALL_STATE(6025)] = 300066, + [SMALL_STATE(6026)] = 300089, + [SMALL_STATE(6027)] = 300112, + [SMALL_STATE(6028)] = 300135, + [SMALL_STATE(6029)] = 300158, + [SMALL_STATE(6030)] = 300179, + [SMALL_STATE(6031)] = 300202, + [SMALL_STATE(6032)] = 300225, + [SMALL_STATE(6033)] = 300248, + [SMALL_STATE(6034)] = 300271, + [SMALL_STATE(6035)] = 300292, + [SMALL_STATE(6036)] = 300315, + [SMALL_STATE(6037)] = 300346, + [SMALL_STATE(6038)] = 300369, + [SMALL_STATE(6039)] = 300390, + [SMALL_STATE(6040)] = 300413, + [SMALL_STATE(6041)] = 300436, + [SMALL_STATE(6042)] = 300457, + [SMALL_STATE(6043)] = 300478, + [SMALL_STATE(6044)] = 300497, + [SMALL_STATE(6045)] = 300520, + [SMALL_STATE(6046)] = 300551, + [SMALL_STATE(6047)] = 300574, + [SMALL_STATE(6048)] = 300605, + [SMALL_STATE(6049)] = 300628, + [SMALL_STATE(6050)] = 300651, + [SMALL_STATE(6051)] = 300674, + [SMALL_STATE(6052)] = 300695, + [SMALL_STATE(6053)] = 300723, + [SMALL_STATE(6054)] = 300751, + [SMALL_STATE(6055)] = 300779, + [SMALL_STATE(6056)] = 300807, + [SMALL_STATE(6057)] = 300825, + [SMALL_STATE(6058)] = 300843, + [SMALL_STATE(6059)] = 300871, + [SMALL_STATE(6060)] = 300899, + [SMALL_STATE(6061)] = 300927, + [SMALL_STATE(6062)] = 300955, + [SMALL_STATE(6063)] = 300983, + [SMALL_STATE(6064)] = 301011, + [SMALL_STATE(6065)] = 301029, + [SMALL_STATE(6066)] = 301057, + [SMALL_STATE(6067)] = 301085, + [SMALL_STATE(6068)] = 301113, + [SMALL_STATE(6069)] = 301141, + [SMALL_STATE(6070)] = 301157, + [SMALL_STATE(6071)] = 301175, + [SMALL_STATE(6072)] = 301203, + [SMALL_STATE(6073)] = 301231, + [SMALL_STATE(6074)] = 301259, + [SMALL_STATE(6075)] = 301277, + [SMALL_STATE(6076)] = 301305, + [SMALL_STATE(6077)] = 301323, + [SMALL_STATE(6078)] = 301351, + [SMALL_STATE(6079)] = 301379, + [SMALL_STATE(6080)] = 301397, + [SMALL_STATE(6081)] = 301415, + [SMALL_STATE(6082)] = 301433, + [SMALL_STATE(6083)] = 301461, + [SMALL_STATE(6084)] = 301489, + [SMALL_STATE(6085)] = 301517, + [SMALL_STATE(6086)] = 301545, + [SMALL_STATE(6087)] = 301563, + [SMALL_STATE(6088)] = 301591, + [SMALL_STATE(6089)] = 301609, + [SMALL_STATE(6090)] = 301632, + [SMALL_STATE(6091)] = 301663, + [SMALL_STATE(6092)] = 301678, + [SMALL_STATE(6093)] = 301693, + [SMALL_STATE(6094)] = 301717, + [SMALL_STATE(6095)] = 301739, + [SMALL_STATE(6096)] = 301763, + [SMALL_STATE(6097)] = 301785, + [SMALL_STATE(6098)] = 301811, + [SMALL_STATE(6099)] = 301837, + [SMALL_STATE(6100)] = 301861, + [SMALL_STATE(6101)] = 301885, + [SMALL_STATE(6102)] = 301909, + [SMALL_STATE(6103)] = 301933, + [SMALL_STATE(6104)] = 301957, + [SMALL_STATE(6105)] = 301981, + [SMALL_STATE(6106)] = 302003, + [SMALL_STATE(6107)] = 302029, + [SMALL_STATE(6108)] = 302053, + [SMALL_STATE(6109)] = 302077, + [SMALL_STATE(6110)] = 302092, + [SMALL_STATE(6111)] = 302107, + [SMALL_STATE(6112)] = 302122, + [SMALL_STATE(6113)] = 302137, + [SMALL_STATE(6114)] = 302152, + [SMALL_STATE(6115)] = 302165, + [SMALL_STATE(6116)] = 302180, + [SMALL_STATE(6117)] = 302201, + [SMALL_STATE(6118)] = 302218, + [SMALL_STATE(6119)] = 302233, + [SMALL_STATE(6120)] = 302248, + [SMALL_STATE(6121)] = 302263, + [SMALL_STATE(6122)] = 302278, + [SMALL_STATE(6123)] = 302293, + [SMALL_STATE(6124)] = 302306, + [SMALL_STATE(6125)] = 302327, + [SMALL_STATE(6126)] = 302340, + [SMALL_STATE(6127)] = 302355, + [SMALL_STATE(6128)] = 302370, + [SMALL_STATE(6129)] = 302385, + [SMALL_STATE(6130)] = 302406, + [SMALL_STATE(6131)] = 302421, + [SMALL_STATE(6132)] = 302436, + [SMALL_STATE(6133)] = 302449, + [SMALL_STATE(6134)] = 302464, + [SMALL_STATE(6135)] = 302479, + [SMALL_STATE(6136)] = 302492, + [SMALL_STATE(6137)] = 302509, + [SMALL_STATE(6138)] = 302522, + [SMALL_STATE(6139)] = 302537, + [SMALL_STATE(6140)] = 302550, + [SMALL_STATE(6141)] = 302565, + [SMALL_STATE(6142)] = 302580, + [SMALL_STATE(6143)] = 302595, + [SMALL_STATE(6144)] = 302616, + [SMALL_STATE(6145)] = 302629, + [SMALL_STATE(6146)] = 302644, + [SMALL_STATE(6147)] = 302657, + [SMALL_STATE(6148)] = 302672, + [SMALL_STATE(6149)] = 302687, + [SMALL_STATE(6150)] = 302706, + [SMALL_STATE(6151)] = 302721, + [SMALL_STATE(6152)] = 302736, + [SMALL_STATE(6153)] = 302756, + [SMALL_STATE(6154)] = 302776, + [SMALL_STATE(6155)] = 302796, + [SMALL_STATE(6156)] = 302810, + [SMALL_STATE(6157)] = 302830, + [SMALL_STATE(6158)] = 302844, + [SMALL_STATE(6159)] = 302864, + [SMALL_STATE(6160)] = 302886, + [SMALL_STATE(6161)] = 302900, + [SMALL_STATE(6162)] = 302920, + [SMALL_STATE(6163)] = 302940, + [SMALL_STATE(6164)] = 302960, + [SMALL_STATE(6165)] = 302974, + [SMALL_STATE(6166)] = 302994, + [SMALL_STATE(6167)] = 303016, + [SMALL_STATE(6168)] = 303030, + [SMALL_STATE(6169)] = 303050, + [SMALL_STATE(6170)] = 303070, + [SMALL_STATE(6171)] = 303090, + [SMALL_STATE(6172)] = 303110, + [SMALL_STATE(6173)] = 303130, + [SMALL_STATE(6174)] = 303150, + [SMALL_STATE(6175)] = 303170, + [SMALL_STATE(6176)] = 303190, + [SMALL_STATE(6177)] = 303210, + [SMALL_STATE(6178)] = 303230, + [SMALL_STATE(6179)] = 303250, + [SMALL_STATE(6180)] = 303270, + [SMALL_STATE(6181)] = 303290, + [SMALL_STATE(6182)] = 303310, + [SMALL_STATE(6183)] = 303330, + [SMALL_STATE(6184)] = 303350, + [SMALL_STATE(6185)] = 303370, + [SMALL_STATE(6186)] = 303390, + [SMALL_STATE(6187)] = 303410, + [SMALL_STATE(6188)] = 303430, + [SMALL_STATE(6189)] = 303450, + [SMALL_STATE(6190)] = 303464, + [SMALL_STATE(6191)] = 303478, + [SMALL_STATE(6192)] = 303492, + [SMALL_STATE(6193)] = 303506, + [SMALL_STATE(6194)] = 303526, + [SMALL_STATE(6195)] = 303546, + [SMALL_STATE(6196)] = 303566, + [SMALL_STATE(6197)] = 303586, + [SMALL_STATE(6198)] = 303600, + [SMALL_STATE(6199)] = 303614, + [SMALL_STATE(6200)] = 303634, + [SMALL_STATE(6201)] = 303648, + [SMALL_STATE(6202)] = 303662, + [SMALL_STATE(6203)] = 303676, + [SMALL_STATE(6204)] = 303696, + [SMALL_STATE(6205)] = 303716, + [SMALL_STATE(6206)] = 303736, + [SMALL_STATE(6207)] = 303756, + [SMALL_STATE(6208)] = 303776, + [SMALL_STATE(6209)] = 303790, + [SMALL_STATE(6210)] = 303810, + [SMALL_STATE(6211)] = 303830, + [SMALL_STATE(6212)] = 303850, + [SMALL_STATE(6213)] = 303866, + [SMALL_STATE(6214)] = 303886, + [SMALL_STATE(6215)] = 303906, + [SMALL_STATE(6216)] = 303926, + [SMALL_STATE(6217)] = 303946, + [SMALL_STATE(6218)] = 303966, + [SMALL_STATE(6219)] = 303986, + [SMALL_STATE(6220)] = 304006, + [SMALL_STATE(6221)] = 304026, + [SMALL_STATE(6222)] = 304046, + [SMALL_STATE(6223)] = 304066, + [SMALL_STATE(6224)] = 304086, + [SMALL_STATE(6225)] = 304100, + [SMALL_STATE(6226)] = 304120, + [SMALL_STATE(6227)] = 304134, + [SMALL_STATE(6228)] = 304156, + [SMALL_STATE(6229)] = 304176, + [SMALL_STATE(6230)] = 304196, + [SMALL_STATE(6231)] = 304216, + [SMALL_STATE(6232)] = 304236, + [SMALL_STATE(6233)] = 304256, + [SMALL_STATE(6234)] = 304276, + [SMALL_STATE(6235)] = 304296, + [SMALL_STATE(6236)] = 304316, + [SMALL_STATE(6237)] = 304330, + [SMALL_STATE(6238)] = 304350, + [SMALL_STATE(6239)] = 304370, + [SMALL_STATE(6240)] = 304390, + [SMALL_STATE(6241)] = 304410, + [SMALL_STATE(6242)] = 304424, + [SMALL_STATE(6243)] = 304444, + [SMALL_STATE(6244)] = 304464, + [SMALL_STATE(6245)] = 304484, + [SMALL_STATE(6246)] = 304504, + [SMALL_STATE(6247)] = 304524, + [SMALL_STATE(6248)] = 304544, + [SMALL_STATE(6249)] = 304564, + [SMALL_STATE(6250)] = 304584, + [SMALL_STATE(6251)] = 304604, + [SMALL_STATE(6252)] = 304624, + [SMALL_STATE(6253)] = 304644, + [SMALL_STATE(6254)] = 304664, + [SMALL_STATE(6255)] = 304684, + [SMALL_STATE(6256)] = 304704, + [SMALL_STATE(6257)] = 304724, + [SMALL_STATE(6258)] = 304744, + [SMALL_STATE(6259)] = 304764, + [SMALL_STATE(6260)] = 304778, + [SMALL_STATE(6261)] = 304798, + [SMALL_STATE(6262)] = 304818, + [SMALL_STATE(6263)] = 304838, + [SMALL_STATE(6264)] = 304860, + [SMALL_STATE(6265)] = 304880, + [SMALL_STATE(6266)] = 304900, + [SMALL_STATE(6267)] = 304920, + [SMALL_STATE(6268)] = 304940, + [SMALL_STATE(6269)] = 304954, + [SMALL_STATE(6270)] = 304974, + [SMALL_STATE(6271)] = 304994, + [SMALL_STATE(6272)] = 305014, + [SMALL_STATE(6273)] = 305034, + [SMALL_STATE(6274)] = 305054, + [SMALL_STATE(6275)] = 305074, + [SMALL_STATE(6276)] = 305091, + [SMALL_STATE(6277)] = 305110, + [SMALL_STATE(6278)] = 305125, + [SMALL_STATE(6279)] = 305140, + [SMALL_STATE(6280)] = 305157, + [SMALL_STATE(6281)] = 305174, + [SMALL_STATE(6282)] = 305189, + [SMALL_STATE(6283)] = 305204, + [SMALL_STATE(6284)] = 305221, + [SMALL_STATE(6285)] = 305238, + [SMALL_STATE(6286)] = 305255, + [SMALL_STATE(6287)] = 305268, + [SMALL_STATE(6288)] = 305283, + [SMALL_STATE(6289)] = 305296, + [SMALL_STATE(6290)] = 305311, + [SMALL_STATE(6291)] = 305326, + [SMALL_STATE(6292)] = 305341, + [SMALL_STATE(6293)] = 305358, + [SMALL_STATE(6294)] = 305377, + [SMALL_STATE(6295)] = 305392, + [SMALL_STATE(6296)] = 305411, + [SMALL_STATE(6297)] = 305428, + [SMALL_STATE(6298)] = 305443, + [SMALL_STATE(6299)] = 305458, + [SMALL_STATE(6300)] = 305473, + [SMALL_STATE(6301)] = 305488, + [SMALL_STATE(6302)] = 305505, + [SMALL_STATE(6303)] = 305520, + [SMALL_STATE(6304)] = 305535, + [SMALL_STATE(6305)] = 305550, + [SMALL_STATE(6306)] = 305565, + [SMALL_STATE(6307)] = 305580, + [SMALL_STATE(6308)] = 305593, + [SMALL_STATE(6309)] = 305608, + [SMALL_STATE(6310)] = 305623, + [SMALL_STATE(6311)] = 305642, + [SMALL_STATE(6312)] = 305659, + [SMALL_STATE(6313)] = 305676, + [SMALL_STATE(6314)] = 305695, + [SMALL_STATE(6315)] = 305712, + [SMALL_STATE(6316)] = 305727, + [SMALL_STATE(6317)] = 305740, + [SMALL_STATE(6318)] = 305757, + [SMALL_STATE(6319)] = 305776, + [SMALL_STATE(6320)] = 305793, + [SMALL_STATE(6321)] = 305810, + [SMALL_STATE(6322)] = 305829, + [SMALL_STATE(6323)] = 305848, + [SMALL_STATE(6324)] = 305865, + [SMALL_STATE(6325)] = 305882, + [SMALL_STATE(6326)] = 305901, + [SMALL_STATE(6327)] = 305918, + [SMALL_STATE(6328)] = 305937, + [SMALL_STATE(6329)] = 305956, + [SMALL_STATE(6330)] = 305969, + [SMALL_STATE(6331)] = 305984, + [SMALL_STATE(6332)] = 305999, + [SMALL_STATE(6333)] = 306016, + [SMALL_STATE(6334)] = 306035, + [SMALL_STATE(6335)] = 306054, + [SMALL_STATE(6336)] = 306071, + [SMALL_STATE(6337)] = 306086, + [SMALL_STATE(6338)] = 306105, + [SMALL_STATE(6339)] = 306122, + [SMALL_STATE(6340)] = 306141, + [SMALL_STATE(6341)] = 306158, + [SMALL_STATE(6342)] = 306175, + [SMALL_STATE(6343)] = 306194, + [SMALL_STATE(6344)] = 306213, + [SMALL_STATE(6345)] = 306230, + [SMALL_STATE(6346)] = 306247, + [SMALL_STATE(6347)] = 306266, + [SMALL_STATE(6348)] = 306285, + [SMALL_STATE(6349)] = 306302, + [SMALL_STATE(6350)] = 306321, + [SMALL_STATE(6351)] = 306340, + [SMALL_STATE(6352)] = 306351, + [SMALL_STATE(6353)] = 306366, + [SMALL_STATE(6354)] = 306385, + [SMALL_STATE(6355)] = 306396, + [SMALL_STATE(6356)] = 306407, + [SMALL_STATE(6357)] = 306426, + [SMALL_STATE(6358)] = 306443, + [SMALL_STATE(6359)] = 306462, + [SMALL_STATE(6360)] = 306479, + [SMALL_STATE(6361)] = 306496, + [SMALL_STATE(6362)] = 306515, + [SMALL_STATE(6363)] = 306534, + [SMALL_STATE(6364)] = 306551, + [SMALL_STATE(6365)] = 306568, + [SMALL_STATE(6366)] = 306587, + [SMALL_STATE(6367)] = 306606, + [SMALL_STATE(6368)] = 306623, + [SMALL_STATE(6369)] = 306642, + [SMALL_STATE(6370)] = 306661, + [SMALL_STATE(6371)] = 306678, + [SMALL_STATE(6372)] = 306695, + [SMALL_STATE(6373)] = 306712, + [SMALL_STATE(6374)] = 306729, + [SMALL_STATE(6375)] = 306748, + [SMALL_STATE(6376)] = 306767, + [SMALL_STATE(6377)] = 306784, + [SMALL_STATE(6378)] = 306801, + [SMALL_STATE(6379)] = 306820, + [SMALL_STATE(6380)] = 306839, + [SMALL_STATE(6381)] = 306856, + [SMALL_STATE(6382)] = 306875, + [SMALL_STATE(6383)] = 306894, + [SMALL_STATE(6384)] = 306909, + [SMALL_STATE(6385)] = 306928, + [SMALL_STATE(6386)] = 306943, + [SMALL_STATE(6387)] = 306962, + [SMALL_STATE(6388)] = 306972, + [SMALL_STATE(6389)] = 306988, + [SMALL_STATE(6390)] = 307000, + [SMALL_STATE(6391)] = 307010, + [SMALL_STATE(6392)] = 307020, + [SMALL_STATE(6393)] = 307030, + [SMALL_STATE(6394)] = 307040, + [SMALL_STATE(6395)] = 307050, + [SMALL_STATE(6396)] = 307060, + [SMALL_STATE(6397)] = 307070, + [SMALL_STATE(6398)] = 307080, + [SMALL_STATE(6399)] = 307096, + [SMALL_STATE(6400)] = 307106, + [SMALL_STATE(6401)] = 307116, + [SMALL_STATE(6402)] = 307128, + [SMALL_STATE(6403)] = 307142, + [SMALL_STATE(6404)] = 307152, + [SMALL_STATE(6405)] = 307162, + [SMALL_STATE(6406)] = 307172, + [SMALL_STATE(6407)] = 307186, + [SMALL_STATE(6408)] = 307200, + [SMALL_STATE(6409)] = 307214, + [SMALL_STATE(6410)] = 307230, + [SMALL_STATE(6411)] = 307246, + [SMALL_STATE(6412)] = 307262, + [SMALL_STATE(6413)] = 307276, + [SMALL_STATE(6414)] = 307286, + [SMALL_STATE(6415)] = 307296, + [SMALL_STATE(6416)] = 307306, + [SMALL_STATE(6417)] = 307322, + [SMALL_STATE(6418)] = 307332, + [SMALL_STATE(6419)] = 307346, + [SMALL_STATE(6420)] = 307356, + [SMALL_STATE(6421)] = 307366, + [SMALL_STATE(6422)] = 307376, + [SMALL_STATE(6423)] = 307386, + [SMALL_STATE(6424)] = 307396, + [SMALL_STATE(6425)] = 307410, + [SMALL_STATE(6426)] = 307420, + [SMALL_STATE(6427)] = 307430, + [SMALL_STATE(6428)] = 307446, + [SMALL_STATE(6429)] = 307456, + [SMALL_STATE(6430)] = 307466, + [SMALL_STATE(6431)] = 307482, + [SMALL_STATE(6432)] = 307492, + [SMALL_STATE(6433)] = 307502, + [SMALL_STATE(6434)] = 307512, + [SMALL_STATE(6435)] = 307522, + [SMALL_STATE(6436)] = 307532, + [SMALL_STATE(6437)] = 307548, + [SMALL_STATE(6438)] = 307558, + [SMALL_STATE(6439)] = 307568, + [SMALL_STATE(6440)] = 307578, + [SMALL_STATE(6441)] = 307588, + [SMALL_STATE(6442)] = 307604, + [SMALL_STATE(6443)] = 307616, + [SMALL_STATE(6444)] = 307632, + [SMALL_STATE(6445)] = 307646, + [SMALL_STATE(6446)] = 307656, + [SMALL_STATE(6447)] = 307666, + [SMALL_STATE(6448)] = 307676, + [SMALL_STATE(6449)] = 307686, + [SMALL_STATE(6450)] = 307696, + [SMALL_STATE(6451)] = 307709, + [SMALL_STATE(6452)] = 307720, + [SMALL_STATE(6453)] = 307731, + [SMALL_STATE(6454)] = 307744, + [SMALL_STATE(6455)] = 307755, + [SMALL_STATE(6456)] = 307768, + [SMALL_STATE(6457)] = 307779, + [SMALL_STATE(6458)] = 307788, + [SMALL_STATE(6459)] = 307801, + [SMALL_STATE(6460)] = 307812, + [SMALL_STATE(6461)] = 307825, + [SMALL_STATE(6462)] = 307836, + [SMALL_STATE(6463)] = 307847, + [SMALL_STATE(6464)] = 307856, + [SMALL_STATE(6465)] = 307869, + [SMALL_STATE(6466)] = 307882, + [SMALL_STATE(6467)] = 307891, + [SMALL_STATE(6468)] = 307902, + [SMALL_STATE(6469)] = 307913, + [SMALL_STATE(6470)] = 307926, + [SMALL_STATE(6471)] = 307939, + [SMALL_STATE(6472)] = 307952, + [SMALL_STATE(6473)] = 307965, + [SMALL_STATE(6474)] = 307978, + [SMALL_STATE(6475)] = 307991, + [SMALL_STATE(6476)] = 308004, + [SMALL_STATE(6477)] = 308017, + [SMALL_STATE(6478)] = 308030, + [SMALL_STATE(6479)] = 308043, + [SMALL_STATE(6480)] = 308056, + [SMALL_STATE(6481)] = 308069, + [SMALL_STATE(6482)] = 308082, + [SMALL_STATE(6483)] = 308095, + [SMALL_STATE(6484)] = 308108, + [SMALL_STATE(6485)] = 308121, + [SMALL_STATE(6486)] = 308134, + [SMALL_STATE(6487)] = 308147, + [SMALL_STATE(6488)] = 308158, + [SMALL_STATE(6489)] = 308171, + [SMALL_STATE(6490)] = 308184, + [SMALL_STATE(6491)] = 308197, + [SMALL_STATE(6492)] = 308210, + [SMALL_STATE(6493)] = 308223, + [SMALL_STATE(6494)] = 308236, + [SMALL_STATE(6495)] = 308249, + [SMALL_STATE(6496)] = 308262, + [SMALL_STATE(6497)] = 308275, + [SMALL_STATE(6498)] = 308286, + [SMALL_STATE(6499)] = 308299, + [SMALL_STATE(6500)] = 308312, + [SMALL_STATE(6501)] = 308325, + [SMALL_STATE(6502)] = 308338, + [SMALL_STATE(6503)] = 308351, + [SMALL_STATE(6504)] = 308364, + [SMALL_STATE(6505)] = 308377, + [SMALL_STATE(6506)] = 308388, + [SMALL_STATE(6507)] = 308399, + [SMALL_STATE(6508)] = 308412, + [SMALL_STATE(6509)] = 308425, + [SMALL_STATE(6510)] = 308438, + [SMALL_STATE(6511)] = 308449, + [SMALL_STATE(6512)] = 308458, + [SMALL_STATE(6513)] = 308471, + [SMALL_STATE(6514)] = 308484, + [SMALL_STATE(6515)] = 308493, + [SMALL_STATE(6516)] = 308504, + [SMALL_STATE(6517)] = 308515, + [SMALL_STATE(6518)] = 308528, + [SMALL_STATE(6519)] = 308537, + [SMALL_STATE(6520)] = 308550, + [SMALL_STATE(6521)] = 308563, + [SMALL_STATE(6522)] = 308576, + [SMALL_STATE(6523)] = 308589, + [SMALL_STATE(6524)] = 308602, + [SMALL_STATE(6525)] = 308615, + [SMALL_STATE(6526)] = 308628, + [SMALL_STATE(6527)] = 308641, + [SMALL_STATE(6528)] = 308654, + [SMALL_STATE(6529)] = 308667, + [SMALL_STATE(6530)] = 308680, + [SMALL_STATE(6531)] = 308693, + [SMALL_STATE(6532)] = 308706, + [SMALL_STATE(6533)] = 308719, + [SMALL_STATE(6534)] = 308732, + [SMALL_STATE(6535)] = 308745, + [SMALL_STATE(6536)] = 308758, + [SMALL_STATE(6537)] = 308769, + [SMALL_STATE(6538)] = 308782, + [SMALL_STATE(6539)] = 308795, + [SMALL_STATE(6540)] = 308806, + [SMALL_STATE(6541)] = 308819, + [SMALL_STATE(6542)] = 308832, + [SMALL_STATE(6543)] = 308845, + [SMALL_STATE(6544)] = 308858, + [SMALL_STATE(6545)] = 308871, + [SMALL_STATE(6546)] = 308884, + [SMALL_STATE(6547)] = 308897, + [SMALL_STATE(6548)] = 308910, + [SMALL_STATE(6549)] = 308923, + [SMALL_STATE(6550)] = 308936, + [SMALL_STATE(6551)] = 308949, + [SMALL_STATE(6552)] = 308960, + [SMALL_STATE(6553)] = 308971, + [SMALL_STATE(6554)] = 308984, + [SMALL_STATE(6555)] = 308997, + [SMALL_STATE(6556)] = 309010, + [SMALL_STATE(6557)] = 309023, + [SMALL_STATE(6558)] = 309036, + [SMALL_STATE(6559)] = 309049, + [SMALL_STATE(6560)] = 309062, + [SMALL_STATE(6561)] = 309075, + [SMALL_STATE(6562)] = 309088, + [SMALL_STATE(6563)] = 309101, + [SMALL_STATE(6564)] = 309114, + [SMALL_STATE(6565)] = 309127, + [SMALL_STATE(6566)] = 309140, + [SMALL_STATE(6567)] = 309153, + [SMALL_STATE(6568)] = 309166, + [SMALL_STATE(6569)] = 309179, + [SMALL_STATE(6570)] = 309190, + [SMALL_STATE(6571)] = 309203, + [SMALL_STATE(6572)] = 309216, + [SMALL_STATE(6573)] = 309229, + [SMALL_STATE(6574)] = 309242, + [SMALL_STATE(6575)] = 309253, + [SMALL_STATE(6576)] = 309264, + [SMALL_STATE(6577)] = 309277, + [SMALL_STATE(6578)] = 309290, + [SMALL_STATE(6579)] = 309301, + [SMALL_STATE(6580)] = 309310, + [SMALL_STATE(6581)] = 309319, + [SMALL_STATE(6582)] = 309332, + [SMALL_STATE(6583)] = 309341, + [SMALL_STATE(6584)] = 309350, + [SMALL_STATE(6585)] = 309363, + [SMALL_STATE(6586)] = 309372, + [SMALL_STATE(6587)] = 309385, + [SMALL_STATE(6588)] = 309398, + [SMALL_STATE(6589)] = 309411, + [SMALL_STATE(6590)] = 309424, + [SMALL_STATE(6591)] = 309437, + [SMALL_STATE(6592)] = 309448, + [SMALL_STATE(6593)] = 309459, + [SMALL_STATE(6594)] = 309472, + [SMALL_STATE(6595)] = 309485, + [SMALL_STATE(6596)] = 309496, + [SMALL_STATE(6597)] = 309509, + [SMALL_STATE(6598)] = 309522, + [SMALL_STATE(6599)] = 309535, + [SMALL_STATE(6600)] = 309548, + [SMALL_STATE(6601)] = 309559, + [SMALL_STATE(6602)] = 309572, + [SMALL_STATE(6603)] = 309581, + [SMALL_STATE(6604)] = 309590, + [SMALL_STATE(6605)] = 309599, + [SMALL_STATE(6606)] = 309610, + [SMALL_STATE(6607)] = 309621, + [SMALL_STATE(6608)] = 309632, + [SMALL_STATE(6609)] = 309645, + [SMALL_STATE(6610)] = 309658, + [SMALL_STATE(6611)] = 309671, + [SMALL_STATE(6612)] = 309684, + [SMALL_STATE(6613)] = 309697, + [SMALL_STATE(6614)] = 309710, + [SMALL_STATE(6615)] = 309723, + [SMALL_STATE(6616)] = 309736, + [SMALL_STATE(6617)] = 309747, + [SMALL_STATE(6618)] = 309758, + [SMALL_STATE(6619)] = 309771, + [SMALL_STATE(6620)] = 309784, + [SMALL_STATE(6621)] = 309797, + [SMALL_STATE(6622)] = 309810, + [SMALL_STATE(6623)] = 309823, + [SMALL_STATE(6624)] = 309836, + [SMALL_STATE(6625)] = 309849, + [SMALL_STATE(6626)] = 309862, + [SMALL_STATE(6627)] = 309875, + [SMALL_STATE(6628)] = 309886, + [SMALL_STATE(6629)] = 309894, + [SMALL_STATE(6630)] = 309902, + [SMALL_STATE(6631)] = 309912, + [SMALL_STATE(6632)] = 309920, + [SMALL_STATE(6633)] = 309930, + [SMALL_STATE(6634)] = 309940, + [SMALL_STATE(6635)] = 309948, + [SMALL_STATE(6636)] = 309956, + [SMALL_STATE(6637)] = 309966, + [SMALL_STATE(6638)] = 309974, + [SMALL_STATE(6639)] = 309984, + [SMALL_STATE(6640)] = 309992, + [SMALL_STATE(6641)] = 310000, + [SMALL_STATE(6642)] = 310008, + [SMALL_STATE(6643)] = 310018, + [SMALL_STATE(6644)] = 310028, + [SMALL_STATE(6645)] = 310036, + [SMALL_STATE(6646)] = 310046, + [SMALL_STATE(6647)] = 310054, + [SMALL_STATE(6648)] = 310062, + [SMALL_STATE(6649)] = 310070, + [SMALL_STATE(6650)] = 310078, + [SMALL_STATE(6651)] = 310088, + [SMALL_STATE(6652)] = 310098, + [SMALL_STATE(6653)] = 310106, + [SMALL_STATE(6654)] = 310116, + [SMALL_STATE(6655)] = 310124, + [SMALL_STATE(6656)] = 310134, + [SMALL_STATE(6657)] = 310142, + [SMALL_STATE(6658)] = 310150, + [SMALL_STATE(6659)] = 310160, + [SMALL_STATE(6660)] = 310170, + [SMALL_STATE(6661)] = 310178, + [SMALL_STATE(6662)] = 310186, + [SMALL_STATE(6663)] = 310194, + [SMALL_STATE(6664)] = 310204, + [SMALL_STATE(6665)] = 310214, + [SMALL_STATE(6666)] = 310222, + [SMALL_STATE(6667)] = 310232, + [SMALL_STATE(6668)] = 310240, + [SMALL_STATE(6669)] = 310250, + [SMALL_STATE(6670)] = 310258, + [SMALL_STATE(6671)] = 310266, + [SMALL_STATE(6672)] = 310274, + [SMALL_STATE(6673)] = 310282, + [SMALL_STATE(6674)] = 310290, + [SMALL_STATE(6675)] = 310298, + [SMALL_STATE(6676)] = 310308, + [SMALL_STATE(6677)] = 310316, + [SMALL_STATE(6678)] = 310324, + [SMALL_STATE(6679)] = 310334, + [SMALL_STATE(6680)] = 310344, + [SMALL_STATE(6681)] = 310352, + [SMALL_STATE(6682)] = 310362, + [SMALL_STATE(6683)] = 310370, + [SMALL_STATE(6684)] = 310380, + [SMALL_STATE(6685)] = 310390, + [SMALL_STATE(6686)] = 310400, + [SMALL_STATE(6687)] = 310408, + [SMALL_STATE(6688)] = 310416, + [SMALL_STATE(6689)] = 310426, + [SMALL_STATE(6690)] = 310434, + [SMALL_STATE(6691)] = 310444, + [SMALL_STATE(6692)] = 310454, + [SMALL_STATE(6693)] = 310462, + [SMALL_STATE(6694)] = 310470, + [SMALL_STATE(6695)] = 310480, + [SMALL_STATE(6696)] = 310488, + [SMALL_STATE(6697)] = 310496, + [SMALL_STATE(6698)] = 310504, + [SMALL_STATE(6699)] = 310512, + [SMALL_STATE(6700)] = 310520, + [SMALL_STATE(6701)] = 310528, + [SMALL_STATE(6702)] = 310536, + [SMALL_STATE(6703)] = 310546, + [SMALL_STATE(6704)] = 310556, + [SMALL_STATE(6705)] = 310563, + [SMALL_STATE(6706)] = 310570, + [SMALL_STATE(6707)] = 310577, + [SMALL_STATE(6708)] = 310584, + [SMALL_STATE(6709)] = 310591, + [SMALL_STATE(6710)] = 310598, + [SMALL_STATE(6711)] = 310605, + [SMALL_STATE(6712)] = 310612, + [SMALL_STATE(6713)] = 310619, + [SMALL_STATE(6714)] = 310626, + [SMALL_STATE(6715)] = 310633, + [SMALL_STATE(6716)] = 310640, + [SMALL_STATE(6717)] = 310647, + [SMALL_STATE(6718)] = 310654, + [SMALL_STATE(6719)] = 310661, + [SMALL_STATE(6720)] = 310668, + [SMALL_STATE(6721)] = 310675, + [SMALL_STATE(6722)] = 310682, + [SMALL_STATE(6723)] = 310689, + [SMALL_STATE(6724)] = 310696, + [SMALL_STATE(6725)] = 310703, + [SMALL_STATE(6726)] = 310710, + [SMALL_STATE(6727)] = 310717, + [SMALL_STATE(6728)] = 310724, + [SMALL_STATE(6729)] = 310731, + [SMALL_STATE(6730)] = 310738, + [SMALL_STATE(6731)] = 310745, + [SMALL_STATE(6732)] = 310752, + [SMALL_STATE(6733)] = 310759, + [SMALL_STATE(6734)] = 310766, + [SMALL_STATE(6735)] = 310773, + [SMALL_STATE(6736)] = 310780, + [SMALL_STATE(6737)] = 310787, + [SMALL_STATE(6738)] = 310794, + [SMALL_STATE(6739)] = 310801, + [SMALL_STATE(6740)] = 310808, + [SMALL_STATE(6741)] = 310815, + [SMALL_STATE(6742)] = 310822, + [SMALL_STATE(6743)] = 310829, + [SMALL_STATE(6744)] = 310836, + [SMALL_STATE(6745)] = 310843, + [SMALL_STATE(6746)] = 310850, + [SMALL_STATE(6747)] = 310857, + [SMALL_STATE(6748)] = 310864, + [SMALL_STATE(6749)] = 310871, + [SMALL_STATE(6750)] = 310878, + [SMALL_STATE(6751)] = 310885, + [SMALL_STATE(6752)] = 310892, + [SMALL_STATE(6753)] = 310899, + [SMALL_STATE(6754)] = 310906, + [SMALL_STATE(6755)] = 310913, + [SMALL_STATE(6756)] = 310920, + [SMALL_STATE(6757)] = 310927, + [SMALL_STATE(6758)] = 310934, + [SMALL_STATE(6759)] = 310941, + [SMALL_STATE(6760)] = 310948, + [SMALL_STATE(6761)] = 310955, + [SMALL_STATE(6762)] = 310962, + [SMALL_STATE(6763)] = 310969, + [SMALL_STATE(6764)] = 310976, + [SMALL_STATE(6765)] = 310983, + [SMALL_STATE(6766)] = 310990, + [SMALL_STATE(6767)] = 310997, + [SMALL_STATE(6768)] = 311004, + [SMALL_STATE(6769)] = 311011, + [SMALL_STATE(6770)] = 311018, + [SMALL_STATE(6771)] = 311025, + [SMALL_STATE(6772)] = 311032, + [SMALL_STATE(6773)] = 311039, + [SMALL_STATE(6774)] = 311046, + [SMALL_STATE(6775)] = 311053, + [SMALL_STATE(6776)] = 311060, + [SMALL_STATE(6777)] = 311067, + [SMALL_STATE(6778)] = 311074, + [SMALL_STATE(6779)] = 311081, + [SMALL_STATE(6780)] = 311088, + [SMALL_STATE(6781)] = 311095, + [SMALL_STATE(6782)] = 311102, + [SMALL_STATE(6783)] = 311109, + [SMALL_STATE(6784)] = 311116, + [SMALL_STATE(6785)] = 311123, + [SMALL_STATE(6786)] = 311130, + [SMALL_STATE(6787)] = 311137, + [SMALL_STATE(6788)] = 311144, + [SMALL_STATE(6789)] = 311151, + [SMALL_STATE(6790)] = 311158, + [SMALL_STATE(6791)] = 311165, + [SMALL_STATE(6792)] = 311172, + [SMALL_STATE(6793)] = 311179, + [SMALL_STATE(6794)] = 311186, + [SMALL_STATE(6795)] = 311193, + [SMALL_STATE(6796)] = 311200, + [SMALL_STATE(6797)] = 311207, + [SMALL_STATE(6798)] = 311214, + [SMALL_STATE(6799)] = 311221, + [SMALL_STATE(6800)] = 311228, + [SMALL_STATE(6801)] = 311235, + [SMALL_STATE(6802)] = 311242, + [SMALL_STATE(6803)] = 311249, + [SMALL_STATE(6804)] = 311256, + [SMALL_STATE(6805)] = 311263, + [SMALL_STATE(6806)] = 311270, + [SMALL_STATE(6807)] = 311277, + [SMALL_STATE(6808)] = 311284, + [SMALL_STATE(6809)] = 311291, + [SMALL_STATE(6810)] = 311298, + [SMALL_STATE(6811)] = 311305, + [SMALL_STATE(6812)] = 311312, + [SMALL_STATE(6813)] = 311319, + [SMALL_STATE(6814)] = 311326, + [SMALL_STATE(6815)] = 311333, + [SMALL_STATE(6816)] = 311340, + [SMALL_STATE(6817)] = 311347, + [SMALL_STATE(6818)] = 311354, + [SMALL_STATE(6819)] = 311361, + [SMALL_STATE(6820)] = 311368, + [SMALL_STATE(6821)] = 311375, + [SMALL_STATE(6822)] = 311382, + [SMALL_STATE(6823)] = 311389, + [SMALL_STATE(6824)] = 311396, + [SMALL_STATE(6825)] = 311403, + [SMALL_STATE(6826)] = 311410, + [SMALL_STATE(6827)] = 311417, + [SMALL_STATE(6828)] = 311424, + [SMALL_STATE(6829)] = 311431, + [SMALL_STATE(6830)] = 311438, + [SMALL_STATE(6831)] = 311445, + [SMALL_STATE(6832)] = 311452, + [SMALL_STATE(6833)] = 311459, + [SMALL_STATE(6834)] = 311466, + [SMALL_STATE(6835)] = 311473, + [SMALL_STATE(6836)] = 311480, + [SMALL_STATE(6837)] = 311487, + [SMALL_STATE(6838)] = 311494, + [SMALL_STATE(6839)] = 311501, + [SMALL_STATE(6840)] = 311508, + [SMALL_STATE(6841)] = 311515, + [SMALL_STATE(6842)] = 311522, + [SMALL_STATE(6843)] = 311529, + [SMALL_STATE(6844)] = 311536, + [SMALL_STATE(6845)] = 311543, + [SMALL_STATE(6846)] = 311550, + [SMALL_STATE(6847)] = 311557, + [SMALL_STATE(6848)] = 311564, + [SMALL_STATE(6849)] = 311571, + [SMALL_STATE(6850)] = 311578, + [SMALL_STATE(6851)] = 311585, + [SMALL_STATE(6852)] = 311592, + [SMALL_STATE(6853)] = 311599, + [SMALL_STATE(6854)] = 311606, + [SMALL_STATE(6855)] = 311613, + [SMALL_STATE(6856)] = 311620, + [SMALL_STATE(6857)] = 311627, + [SMALL_STATE(6858)] = 311634, + [SMALL_STATE(6859)] = 311641, + [SMALL_STATE(6860)] = 311648, + [SMALL_STATE(6861)] = 311655, + [SMALL_STATE(6862)] = 311662, + [SMALL_STATE(6863)] = 311669, + [SMALL_STATE(6864)] = 311676, + [SMALL_STATE(6865)] = 311683, + [SMALL_STATE(6866)] = 311690, + [SMALL_STATE(6867)] = 311697, + [SMALL_STATE(6868)] = 311704, + [SMALL_STATE(6869)] = 311711, + [SMALL_STATE(6870)] = 311718, + [SMALL_STATE(6871)] = 311725, + [SMALL_STATE(6872)] = 311732, + [SMALL_STATE(6873)] = 311739, + [SMALL_STATE(6874)] = 311746, + [SMALL_STATE(6875)] = 311753, + [SMALL_STATE(6876)] = 311760, + [SMALL_STATE(6877)] = 311767, + [SMALL_STATE(6878)] = 311774, + [SMALL_STATE(6879)] = 311781, + [SMALL_STATE(6880)] = 311788, + [SMALL_STATE(6881)] = 311795, + [SMALL_STATE(6882)] = 311802, + [SMALL_STATE(6883)] = 311809, + [SMALL_STATE(6884)] = 311816, + [SMALL_STATE(6885)] = 311823, + [SMALL_STATE(6886)] = 311830, + [SMALL_STATE(6887)] = 311837, + [SMALL_STATE(6888)] = 311844, + [SMALL_STATE(6889)] = 311851, + [SMALL_STATE(6890)] = 311858, + [SMALL_STATE(6891)] = 311865, + [SMALL_STATE(6892)] = 311872, + [SMALL_STATE(6893)] = 311879, + [SMALL_STATE(6894)] = 311886, + [SMALL_STATE(6895)] = 311893, + [SMALL_STATE(6896)] = 311900, + [SMALL_STATE(6897)] = 311907, + [SMALL_STATE(6898)] = 311914, + [SMALL_STATE(6899)] = 311921, + [SMALL_STATE(6900)] = 311928, + [SMALL_STATE(6901)] = 311935, + [SMALL_STATE(6902)] = 311942, + [SMALL_STATE(6903)] = 311949, + [SMALL_STATE(6904)] = 311956, + [SMALL_STATE(6905)] = 311963, + [SMALL_STATE(6906)] = 311970, + [SMALL_STATE(6907)] = 311977, + [SMALL_STATE(6908)] = 311984, + [SMALL_STATE(6909)] = 311991, + [SMALL_STATE(6910)] = 311998, + [SMALL_STATE(6911)] = 312005, + [SMALL_STATE(6912)] = 312012, + [SMALL_STATE(6913)] = 312019, + [SMALL_STATE(6914)] = 312026, + [SMALL_STATE(6915)] = 312033, + [SMALL_STATE(6916)] = 312040, + [SMALL_STATE(6917)] = 312047, + [SMALL_STATE(6918)] = 312054, + [SMALL_STATE(6919)] = 312061, + [SMALL_STATE(6920)] = 312068, + [SMALL_STATE(6921)] = 312075, + [SMALL_STATE(6922)] = 312082, + [SMALL_STATE(6923)] = 312089, + [SMALL_STATE(6924)] = 312096, + [SMALL_STATE(6925)] = 312103, + [SMALL_STATE(6926)] = 312110, + [SMALL_STATE(6927)] = 312117, + [SMALL_STATE(6928)] = 312124, + [SMALL_STATE(6929)] = 312131, + [SMALL_STATE(6930)] = 312138, + [SMALL_STATE(6931)] = 312145, + [SMALL_STATE(6932)] = 312152, + [SMALL_STATE(6933)] = 312159, + [SMALL_STATE(6934)] = 312166, + [SMALL_STATE(6935)] = 312173, + [SMALL_STATE(6936)] = 312180, + [SMALL_STATE(6937)] = 312187, + [SMALL_STATE(6938)] = 312194, + [SMALL_STATE(6939)] = 312201, + [SMALL_STATE(6940)] = 312208, + [SMALL_STATE(6941)] = 312215, + [SMALL_STATE(6942)] = 312222, + [SMALL_STATE(6943)] = 312229, + [SMALL_STATE(6944)] = 312236, + [SMALL_STATE(6945)] = 312243, + [SMALL_STATE(6946)] = 312250, + [SMALL_STATE(6947)] = 312257, + [SMALL_STATE(6948)] = 312264, + [SMALL_STATE(6949)] = 312271, + [SMALL_STATE(6950)] = 312278, + [SMALL_STATE(6951)] = 312285, + [SMALL_STATE(6952)] = 312292, + [SMALL_STATE(6953)] = 312299, + [SMALL_STATE(6954)] = 312306, + [SMALL_STATE(6955)] = 312313, + [SMALL_STATE(6956)] = 312320, + [SMALL_STATE(6957)] = 312327, + [SMALL_STATE(6958)] = 312334, + [SMALL_STATE(6959)] = 312341, + [SMALL_STATE(6960)] = 312348, + [SMALL_STATE(6961)] = 312355, + [SMALL_STATE(6962)] = 312362, + [SMALL_STATE(6963)] = 312369, + [SMALL_STATE(6964)] = 312376, + [SMALL_STATE(6965)] = 312383, + [SMALL_STATE(6966)] = 312390, + [SMALL_STATE(6967)] = 312397, + [SMALL_STATE(6968)] = 312404, + [SMALL_STATE(6969)] = 312411, + [SMALL_STATE(6970)] = 312418, + [SMALL_STATE(6971)] = 312425, + [SMALL_STATE(6972)] = 312432, + [SMALL_STATE(6973)] = 312439, + [SMALL_STATE(6974)] = 312446, + [SMALL_STATE(6975)] = 312453, + [SMALL_STATE(6976)] = 312460, + [SMALL_STATE(6977)] = 312467, + [SMALL_STATE(6978)] = 312474, + [SMALL_STATE(6979)] = 312481, + [SMALL_STATE(6980)] = 312488, + [SMALL_STATE(6981)] = 312495, + [SMALL_STATE(6982)] = 312502, + [SMALL_STATE(6983)] = 312509, + [SMALL_STATE(6984)] = 312516, + [SMALL_STATE(6985)] = 312523, + [SMALL_STATE(6986)] = 312530, + [SMALL_STATE(6987)] = 312537, + [SMALL_STATE(6988)] = 312544, + [SMALL_STATE(6989)] = 312551, + [SMALL_STATE(6990)] = 312558, + [SMALL_STATE(6991)] = 312565, + [SMALL_STATE(6992)] = 312572, + [SMALL_STATE(6993)] = 312579, + [SMALL_STATE(6994)] = 312586, + [SMALL_STATE(6995)] = 312593, + [SMALL_STATE(6996)] = 312600, + [SMALL_STATE(6997)] = 312607, + [SMALL_STATE(6998)] = 312614, + [SMALL_STATE(6999)] = 312621, + [SMALL_STATE(7000)] = 312628, + [SMALL_STATE(7001)] = 312635, + [SMALL_STATE(7002)] = 312642, + [SMALL_STATE(7003)] = 312649, + [SMALL_STATE(7004)] = 312656, + [SMALL_STATE(7005)] = 312663, + [SMALL_STATE(7006)] = 312670, + [SMALL_STATE(7007)] = 312677, + [SMALL_STATE(7008)] = 312684, + [SMALL_STATE(7009)] = 312691, + [SMALL_STATE(7010)] = 312698, + [SMALL_STATE(7011)] = 312705, + [SMALL_STATE(7012)] = 312712, + [SMALL_STATE(7013)] = 312719, + [SMALL_STATE(7014)] = 312726, + [SMALL_STATE(7015)] = 312733, + [SMALL_STATE(7016)] = 312740, + [SMALL_STATE(7017)] = 312747, + [SMALL_STATE(7018)] = 312754, + [SMALL_STATE(7019)] = 312761, + [SMALL_STATE(7020)] = 312768, + [SMALL_STATE(7021)] = 312775, + [SMALL_STATE(7022)] = 312782, + [SMALL_STATE(7023)] = 312789, + [SMALL_STATE(7024)] = 312796, + [SMALL_STATE(7025)] = 312803, + [SMALL_STATE(7026)] = 312810, + [SMALL_STATE(7027)] = 312817, + [SMALL_STATE(7028)] = 312824, + [SMALL_STATE(7029)] = 312831, + [SMALL_STATE(7030)] = 312838, + [SMALL_STATE(7031)] = 312845, + [SMALL_STATE(7032)] = 312852, + [SMALL_STATE(7033)] = 312859, + [SMALL_STATE(7034)] = 312866, + [SMALL_STATE(7035)] = 312873, + [SMALL_STATE(7036)] = 312880, + [SMALL_STATE(7037)] = 312887, + [SMALL_STATE(7038)] = 312894, + [SMALL_STATE(7039)] = 312901, + [SMALL_STATE(7040)] = 312908, + [SMALL_STATE(7041)] = 312915, + [SMALL_STATE(7042)] = 312922, + [SMALL_STATE(7043)] = 312929, + [SMALL_STATE(7044)] = 312936, + [SMALL_STATE(7045)] = 312943, + [SMALL_STATE(7046)] = 312950, + [SMALL_STATE(7047)] = 312957, + [SMALL_STATE(7048)] = 312964, + [SMALL_STATE(7049)] = 312971, + [SMALL_STATE(7050)] = 312978, + [SMALL_STATE(7051)] = 312985, + [SMALL_STATE(7052)] = 312992, + [SMALL_STATE(7053)] = 312999, + [SMALL_STATE(7054)] = 313006, + [SMALL_STATE(7055)] = 313013, + [SMALL_STATE(7056)] = 313020, + [SMALL_STATE(7057)] = 313027, + [SMALL_STATE(7058)] = 313034, + [SMALL_STATE(7059)] = 313041, + [SMALL_STATE(7060)] = 313048, + [SMALL_STATE(7061)] = 313055, + [SMALL_STATE(7062)] = 313062, + [SMALL_STATE(7063)] = 313069, + [SMALL_STATE(7064)] = 313076, + [SMALL_STATE(7065)] = 313083, + [SMALL_STATE(7066)] = 313090, + [SMALL_STATE(7067)] = 313097, + [SMALL_STATE(7068)] = 313104, + [SMALL_STATE(7069)] = 313111, + [SMALL_STATE(7070)] = 313118, + [SMALL_STATE(7071)] = 313125, + [SMALL_STATE(7072)] = 313132, + [SMALL_STATE(7073)] = 313139, + [SMALL_STATE(7074)] = 313146, + [SMALL_STATE(7075)] = 313153, + [SMALL_STATE(7076)] = 313160, + [SMALL_STATE(7077)] = 313167, + [SMALL_STATE(7078)] = 313174, + [SMALL_STATE(7079)] = 313181, + [SMALL_STATE(7080)] = 313188, + [SMALL_STATE(7081)] = 313195, + [SMALL_STATE(7082)] = 313202, + [SMALL_STATE(7083)] = 313209, + [SMALL_STATE(7084)] = 313216, + [SMALL_STATE(7085)] = 313223, + [SMALL_STATE(7086)] = 313230, + [SMALL_STATE(7087)] = 313237, + [SMALL_STATE(7088)] = 313244, + [SMALL_STATE(7089)] = 313251, + [SMALL_STATE(7090)] = 313258, + [SMALL_STATE(7091)] = 313265, + [SMALL_STATE(7092)] = 313272, + [SMALL_STATE(7093)] = 313279, + [SMALL_STATE(7094)] = 313286, + [SMALL_STATE(7095)] = 313293, + [SMALL_STATE(7096)] = 313300, + [SMALL_STATE(7097)] = 313307, + [SMALL_STATE(7098)] = 313314, + [SMALL_STATE(7099)] = 313321, + [SMALL_STATE(7100)] = 313328, + [SMALL_STATE(7101)] = 313335, + [SMALL_STATE(7102)] = 313342, + [SMALL_STATE(7103)] = 313349, + [SMALL_STATE(7104)] = 313356, + [SMALL_STATE(7105)] = 313363, + [SMALL_STATE(7106)] = 313370, + [SMALL_STATE(7107)] = 313377, + [SMALL_STATE(7108)] = 313384, + [SMALL_STATE(7109)] = 313391, + [SMALL_STATE(7110)] = 313398, + [SMALL_STATE(7111)] = 313405, + [SMALL_STATE(7112)] = 313412, + [SMALL_STATE(7113)] = 313419, + [SMALL_STATE(7114)] = 313426, + [SMALL_STATE(7115)] = 313433, + [SMALL_STATE(7116)] = 313440, + [SMALL_STATE(7117)] = 313447, + [SMALL_STATE(7118)] = 313454, + [SMALL_STATE(7119)] = 313461, + [SMALL_STATE(7120)] = 313468, + [SMALL_STATE(7121)] = 313475, + [SMALL_STATE(7122)] = 313482, + [SMALL_STATE(7123)] = 313489, + [SMALL_STATE(7124)] = 313496, + [SMALL_STATE(7125)] = 313503, + [SMALL_STATE(7126)] = 313510, + [SMALL_STATE(7127)] = 313517, + [SMALL_STATE(7128)] = 313524, + [SMALL_STATE(7129)] = 313531, + [SMALL_STATE(7130)] = 313538, + [SMALL_STATE(7131)] = 313545, + [SMALL_STATE(7132)] = 313552, + [SMALL_STATE(7133)] = 313559, + [SMALL_STATE(7134)] = 313566, + [SMALL_STATE(7135)] = 313573, + [SMALL_STATE(7136)] = 313580, + [SMALL_STATE(7137)] = 313587, + [SMALL_STATE(7138)] = 313594, + [SMALL_STATE(7139)] = 313601, + [SMALL_STATE(7140)] = 313608, + [SMALL_STATE(7141)] = 313615, + [SMALL_STATE(7142)] = 313622, + [SMALL_STATE(7143)] = 313629, + [SMALL_STATE(7144)] = 313636, + [SMALL_STATE(7145)] = 313643, + [SMALL_STATE(7146)] = 313650, + [SMALL_STATE(7147)] = 313657, + [SMALL_STATE(7148)] = 313664, + [SMALL_STATE(7149)] = 313671, + [SMALL_STATE(7150)] = 313678, + [SMALL_STATE(7151)] = 313685, + [SMALL_STATE(7152)] = 313692, + [SMALL_STATE(7153)] = 313699, + [SMALL_STATE(7154)] = 313706, + [SMALL_STATE(7155)] = 313713, + [SMALL_STATE(7156)] = 313720, + [SMALL_STATE(7157)] = 313727, + [SMALL_STATE(7158)] = 313734, + [SMALL_STATE(7159)] = 313741, + [SMALL_STATE(7160)] = 313748, + [SMALL_STATE(7161)] = 313755, + [SMALL_STATE(7162)] = 313762, + [SMALL_STATE(7163)] = 313769, + [SMALL_STATE(7164)] = 313776, + [SMALL_STATE(7165)] = 313783, + [SMALL_STATE(7166)] = 313790, + [SMALL_STATE(7167)] = 313797, + [SMALL_STATE(7168)] = 313804, + [SMALL_STATE(7169)] = 313811, + [SMALL_STATE(7170)] = 313818, + [SMALL_STATE(7171)] = 313825, + [SMALL_STATE(7172)] = 313832, + [SMALL_STATE(7173)] = 313839, + [SMALL_STATE(7174)] = 313846, + [SMALL_STATE(7175)] = 313853, + [SMALL_STATE(7176)] = 313860, + [SMALL_STATE(7177)] = 313867, + [SMALL_STATE(7178)] = 313874, + [SMALL_STATE(7179)] = 313881, + [SMALL_STATE(7180)] = 313888, + [SMALL_STATE(7181)] = 313895, + [SMALL_STATE(7182)] = 313902, + [SMALL_STATE(7183)] = 313909, + [SMALL_STATE(7184)] = 313916, + [SMALL_STATE(7185)] = 313923, + [SMALL_STATE(7186)] = 313930, + [SMALL_STATE(7187)] = 313937, + [SMALL_STATE(7188)] = 313944, + [SMALL_STATE(7189)] = 313951, + [SMALL_STATE(7190)] = 313958, + [SMALL_STATE(7191)] = 313965, + [SMALL_STATE(7192)] = 313972, + [SMALL_STATE(7193)] = 313979, + [SMALL_STATE(7194)] = 313986, + [SMALL_STATE(7195)] = 313993, + [SMALL_STATE(7196)] = 314000, + [SMALL_STATE(7197)] = 314007, + [SMALL_STATE(7198)] = 314014, + [SMALL_STATE(7199)] = 314021, + [SMALL_STATE(7200)] = 314028, + [SMALL_STATE(7201)] = 314035, + [SMALL_STATE(7202)] = 314042, + [SMALL_STATE(7203)] = 314049, + [SMALL_STATE(7204)] = 314056, + [SMALL_STATE(7205)] = 314063, + [SMALL_STATE(7206)] = 314070, + [SMALL_STATE(7207)] = 314077, + [SMALL_STATE(7208)] = 314084, + [SMALL_STATE(7209)] = 314091, + [SMALL_STATE(7210)] = 314098, + [SMALL_STATE(7211)] = 314105, + [SMALL_STATE(7212)] = 314112, + [SMALL_STATE(7213)] = 314119, + [SMALL_STATE(7214)] = 314126, + [SMALL_STATE(7215)] = 314133, + [SMALL_STATE(7216)] = 314140, + [SMALL_STATE(7217)] = 314147, + [SMALL_STATE(7218)] = 314154, + [SMALL_STATE(7219)] = 314161, + [SMALL_STATE(7220)] = 314168, + [SMALL_STATE(7221)] = 314175, + [SMALL_STATE(7222)] = 314182, + [SMALL_STATE(7223)] = 314189, + [SMALL_STATE(7224)] = 314196, + [SMALL_STATE(7225)] = 314203, + [SMALL_STATE(7226)] = 314210, + [SMALL_STATE(7227)] = 314217, + [SMALL_STATE(7228)] = 314224, + [SMALL_STATE(7229)] = 314231, + [SMALL_STATE(7230)] = 314238, + [SMALL_STATE(7231)] = 314245, + [SMALL_STATE(7232)] = 314252, + [SMALL_STATE(7233)] = 314259, + [SMALL_STATE(7234)] = 314266, + [SMALL_STATE(7235)] = 314273, + [SMALL_STATE(7236)] = 314280, + [SMALL_STATE(7237)] = 314287, + [SMALL_STATE(7238)] = 314294, + [SMALL_STATE(7239)] = 314301, + [SMALL_STATE(7240)] = 314308, + [SMALL_STATE(7241)] = 314315, + [SMALL_STATE(7242)] = 314322, + [SMALL_STATE(7243)] = 314329, + [SMALL_STATE(7244)] = 314336, + [SMALL_STATE(7245)] = 314343, + [SMALL_STATE(7246)] = 314350, + [SMALL_STATE(7247)] = 314357, + [SMALL_STATE(7248)] = 314364, + [SMALL_STATE(7249)] = 314371, + [SMALL_STATE(7250)] = 314378, + [SMALL_STATE(7251)] = 314385, + [SMALL_STATE(7252)] = 314392, + [SMALL_STATE(7253)] = 314399, + [SMALL_STATE(7254)] = 314406, + [SMALL_STATE(7255)] = 314413, + [SMALL_STATE(7256)] = 314420, + [SMALL_STATE(7257)] = 314427, + [SMALL_STATE(7258)] = 314434, + [SMALL_STATE(7259)] = 314441, + [SMALL_STATE(7260)] = 314448, + [SMALL_STATE(7261)] = 314455, + [SMALL_STATE(7262)] = 314462, + [SMALL_STATE(7263)] = 314469, + [SMALL_STATE(7264)] = 314476, + [SMALL_STATE(7265)] = 314483, + [SMALL_STATE(7266)] = 314490, + [SMALL_STATE(7267)] = 314497, + [SMALL_STATE(7268)] = 314504, + [SMALL_STATE(7269)] = 314511, + [SMALL_STATE(7270)] = 314518, + [SMALL_STATE(7271)] = 314525, + [SMALL_STATE(7272)] = 314532, + [SMALL_STATE(7273)] = 314539, + [SMALL_STATE(7274)] = 314546, + [SMALL_STATE(7275)] = 314553, + [SMALL_STATE(7276)] = 314560, + [SMALL_STATE(7277)] = 314567, + [SMALL_STATE(7278)] = 314574, + [SMALL_STATE(7279)] = 314581, + [SMALL_STATE(7280)] = 314588, + [SMALL_STATE(7281)] = 314595, + [SMALL_STATE(7282)] = 314602, + [SMALL_STATE(7283)] = 314609, + [SMALL_STATE(7284)] = 314616, + [SMALL_STATE(7285)] = 314623, + [SMALL_STATE(7286)] = 314630, + [SMALL_STATE(7287)] = 314637, + [SMALL_STATE(7288)] = 314644, + [SMALL_STATE(7289)] = 314651, + [SMALL_STATE(7290)] = 314658, + [SMALL_STATE(7291)] = 314665, + [SMALL_STATE(7292)] = 314672, + [SMALL_STATE(7293)] = 314679, + [SMALL_STATE(7294)] = 314686, + [SMALL_STATE(7295)] = 314693, + [SMALL_STATE(7296)] = 314700, + [SMALL_STATE(7297)] = 314707, + [SMALL_STATE(7298)] = 314714, + [SMALL_STATE(7299)] = 314721, + [SMALL_STATE(7300)] = 314728, + [SMALL_STATE(7301)] = 314735, + [SMALL_STATE(7302)] = 314742, + [SMALL_STATE(7303)] = 314749, + [SMALL_STATE(7304)] = 314756, + [SMALL_STATE(7305)] = 314763, + [SMALL_STATE(7306)] = 314770, + [SMALL_STATE(7307)] = 314777, + [SMALL_STATE(7308)] = 314784, + [SMALL_STATE(7309)] = 314791, + [SMALL_STATE(7310)] = 314798, + [SMALL_STATE(7311)] = 314805, + [SMALL_STATE(7312)] = 314812, + [SMALL_STATE(7313)] = 314819, + [SMALL_STATE(7314)] = 314826, + [SMALL_STATE(7315)] = 314833, + [SMALL_STATE(7316)] = 314840, + [SMALL_STATE(7317)] = 314847, + [SMALL_STATE(7318)] = 314854, + [SMALL_STATE(7319)] = 314861, + [SMALL_STATE(7320)] = 314868, + [SMALL_STATE(7321)] = 314875, + [SMALL_STATE(7322)] = 314882, + [SMALL_STATE(7323)] = 314889, + [SMALL_STATE(7324)] = 314896, + [SMALL_STATE(7325)] = 314903, + [SMALL_STATE(7326)] = 314910, + [SMALL_STATE(7327)] = 314917, + [SMALL_STATE(7328)] = 314924, + [SMALL_STATE(7329)] = 314931, + [SMALL_STATE(7330)] = 314938, + [SMALL_STATE(7331)] = 314945, + [SMALL_STATE(7332)] = 314952, + [SMALL_STATE(7333)] = 314959, + [SMALL_STATE(7334)] = 314966, + [SMALL_STATE(7335)] = 314973, + [SMALL_STATE(7336)] = 314980, + [SMALL_STATE(7337)] = 314987, + [SMALL_STATE(7338)] = 314994, + [SMALL_STATE(7339)] = 315001, + [SMALL_STATE(7340)] = 315008, + [SMALL_STATE(7341)] = 315015, + [SMALL_STATE(7342)] = 315022, + [SMALL_STATE(7343)] = 315029, + [SMALL_STATE(7344)] = 315036, + [SMALL_STATE(7345)] = 315043, + [SMALL_STATE(7346)] = 315050, + [SMALL_STATE(7347)] = 315057, + [SMALL_STATE(7348)] = 315064, + [SMALL_STATE(7349)] = 315071, + [SMALL_STATE(7350)] = 315078, + [SMALL_STATE(7351)] = 315085, + [SMALL_STATE(7352)] = 315092, + [SMALL_STATE(7353)] = 315099, + [SMALL_STATE(7354)] = 315106, + [SMALL_STATE(7355)] = 315113, + [SMALL_STATE(7356)] = 315120, + [SMALL_STATE(7357)] = 315127, + [SMALL_STATE(7358)] = 315134, + [SMALL_STATE(7359)] = 315141, + [SMALL_STATE(7360)] = 315148, + [SMALL_STATE(7361)] = 315155, + [SMALL_STATE(7362)] = 315162, + [SMALL_STATE(7363)] = 315169, + [SMALL_STATE(7364)] = 315176, + [SMALL_STATE(7365)] = 315183, + [SMALL_STATE(7366)] = 315190, + [SMALL_STATE(7367)] = 315197, + [SMALL_STATE(7368)] = 315204, + [SMALL_STATE(7369)] = 315211, + [SMALL_STATE(7370)] = 315218, + [SMALL_STATE(7371)] = 315225, + [SMALL_STATE(7372)] = 315232, + [SMALL_STATE(7373)] = 315239, + [SMALL_STATE(7374)] = 315246, + [SMALL_STATE(7375)] = 315253, + [SMALL_STATE(7376)] = 315260, + [SMALL_STATE(7377)] = 315267, + [SMALL_STATE(7378)] = 315274, + [SMALL_STATE(7379)] = 315281, + [SMALL_STATE(7380)] = 315288, + [SMALL_STATE(7381)] = 315295, + [SMALL_STATE(7382)] = 315302, + [SMALL_STATE(7383)] = 315309, + [SMALL_STATE(7384)] = 315316, + [SMALL_STATE(7385)] = 315323, + [SMALL_STATE(7386)] = 315330, + [SMALL_STATE(7387)] = 315337, + [SMALL_STATE(7388)] = 315344, + [SMALL_STATE(7389)] = 315351, + [SMALL_STATE(7390)] = 315358, + [SMALL_STATE(7391)] = 315365, + [SMALL_STATE(7392)] = 315372, + [SMALL_STATE(7393)] = 315379, + [SMALL_STATE(7394)] = 315386, + [SMALL_STATE(7395)] = 315393, + [SMALL_STATE(7396)] = 315400, + [SMALL_STATE(7397)] = 315407, + [SMALL_STATE(7398)] = 315414, + [SMALL_STATE(7399)] = 315421, + [SMALL_STATE(7400)] = 315428, + [SMALL_STATE(7401)] = 315435, + [SMALL_STATE(7402)] = 315442, + [SMALL_STATE(7403)] = 315449, + [SMALL_STATE(7404)] = 315456, + [SMALL_STATE(7405)] = 315463, + [SMALL_STATE(7406)] = 315470, + [SMALL_STATE(7407)] = 315477, + [SMALL_STATE(7408)] = 315484, + [SMALL_STATE(7409)] = 315491, + [SMALL_STATE(7410)] = 315498, + [SMALL_STATE(7411)] = 315505, + [SMALL_STATE(7412)] = 315512, + [SMALL_STATE(7413)] = 315519, + [SMALL_STATE(7414)] = 315526, + [SMALL_STATE(7415)] = 315533, + [SMALL_STATE(7416)] = 315540, + [SMALL_STATE(7417)] = 315547, + [SMALL_STATE(7418)] = 315554, + [SMALL_STATE(7419)] = 315561, + [SMALL_STATE(7420)] = 315568, + [SMALL_STATE(7421)] = 315575, + [SMALL_STATE(7422)] = 315582, + [SMALL_STATE(7423)] = 315589, + [SMALL_STATE(7424)] = 315596, + [SMALL_STATE(7425)] = 315603, + [SMALL_STATE(7426)] = 315610, + [SMALL_STATE(7427)] = 315617, + [SMALL_STATE(7428)] = 315624, + [SMALL_STATE(7429)] = 315631, + [SMALL_STATE(7430)] = 315638, + [SMALL_STATE(7431)] = 315645, + [SMALL_STATE(7432)] = 315652, + [SMALL_STATE(7433)] = 315659, + [SMALL_STATE(7434)] = 315666, + [SMALL_STATE(7435)] = 315673, + [SMALL_STATE(7436)] = 315680, + [SMALL_STATE(7437)] = 315687, + [SMALL_STATE(7438)] = 315694, + [SMALL_STATE(7439)] = 315701, + [SMALL_STATE(7440)] = 315708, + [SMALL_STATE(7441)] = 315715, + [SMALL_STATE(7442)] = 315722, + [SMALL_STATE(7443)] = 315729, + [SMALL_STATE(7444)] = 315736, + [SMALL_STATE(7445)] = 315743, + [SMALL_STATE(7446)] = 315750, + [SMALL_STATE(7447)] = 315757, + [SMALL_STATE(7448)] = 315764, + [SMALL_STATE(7449)] = 315771, + [SMALL_STATE(7450)] = 315778, + [SMALL_STATE(7451)] = 315785, + [SMALL_STATE(7452)] = 315792, + [SMALL_STATE(7453)] = 315799, + [SMALL_STATE(7454)] = 315806, + [SMALL_STATE(7455)] = 315813, + [SMALL_STATE(7456)] = 315820, + [SMALL_STATE(7457)] = 315827, + [SMALL_STATE(7458)] = 315834, + [SMALL_STATE(7459)] = 315841, + [SMALL_STATE(7460)] = 315848, + [SMALL_STATE(7461)] = 315855, + [SMALL_STATE(7462)] = 315862, + [SMALL_STATE(7463)] = 315869, + [SMALL_STATE(7464)] = 315876, + [SMALL_STATE(7465)] = 315883, + [SMALL_STATE(7466)] = 315890, + [SMALL_STATE(7467)] = 315897, + [SMALL_STATE(7468)] = 315904, + [SMALL_STATE(7469)] = 315911, + [SMALL_STATE(7470)] = 315918, + [SMALL_STATE(7471)] = 315925, + [SMALL_STATE(7472)] = 315932, + [SMALL_STATE(7473)] = 315939, + [SMALL_STATE(7474)] = 315946, + [SMALL_STATE(7475)] = 315953, + [SMALL_STATE(7476)] = 315960, + [SMALL_STATE(7477)] = 315967, + [SMALL_STATE(7478)] = 315974, + [SMALL_STATE(7479)] = 315981, + [SMALL_STATE(7480)] = 315988, + [SMALL_STATE(7481)] = 315995, + [SMALL_STATE(7482)] = 316002, + [SMALL_STATE(7483)] = 316009, + [SMALL_STATE(7484)] = 316016, + [SMALL_STATE(7485)] = 316023, + [SMALL_STATE(7486)] = 316030, + [SMALL_STATE(7487)] = 316037, + [SMALL_STATE(7488)] = 316044, + [SMALL_STATE(7489)] = 316051, + [SMALL_STATE(7490)] = 316058, + [SMALL_STATE(7491)] = 316065, + [SMALL_STATE(7492)] = 316072, + [SMALL_STATE(7493)] = 316079, + [SMALL_STATE(7494)] = 316086, + [SMALL_STATE(7495)] = 316093, + [SMALL_STATE(7496)] = 316100, + [SMALL_STATE(7497)] = 316107, + [SMALL_STATE(7498)] = 316114, + [SMALL_STATE(7499)] = 316121, + [SMALL_STATE(7500)] = 316128, + [SMALL_STATE(7501)] = 316135, + [SMALL_STATE(7502)] = 316142, + [SMALL_STATE(7503)] = 316149, + [SMALL_STATE(7504)] = 316156, + [SMALL_STATE(7505)] = 316163, + [SMALL_STATE(7506)] = 316170, + [SMALL_STATE(7507)] = 316177, + [SMALL_STATE(7508)] = 316184, + [SMALL_STATE(7509)] = 316191, + [SMALL_STATE(7510)] = 316198, + [SMALL_STATE(7511)] = 316205, + [SMALL_STATE(7512)] = 316212, + [SMALL_STATE(7513)] = 316219, + [SMALL_STATE(7514)] = 316226, + [SMALL_STATE(7515)] = 316233, + [SMALL_STATE(7516)] = 316240, + [SMALL_STATE(7517)] = 316247, + [SMALL_STATE(7518)] = 316254, + [SMALL_STATE(7519)] = 316261, + [SMALL_STATE(7520)] = 316268, + [SMALL_STATE(7521)] = 316275, + [SMALL_STATE(7522)] = 316282, + [SMALL_STATE(7523)] = 316289, + [SMALL_STATE(7524)] = 316296, + [SMALL_STATE(7525)] = 316303, + [SMALL_STATE(7526)] = 316310, + [SMALL_STATE(7527)] = 316317, + [SMALL_STATE(7528)] = 316324, + [SMALL_STATE(7529)] = 316331, + [SMALL_STATE(7530)] = 316338, + [SMALL_STATE(7531)] = 316345, + [SMALL_STATE(7532)] = 316352, + [SMALL_STATE(7533)] = 316359, + [SMALL_STATE(7534)] = 316366, + [SMALL_STATE(7535)] = 316373, + [SMALL_STATE(7536)] = 316380, + [SMALL_STATE(7537)] = 316387, + [SMALL_STATE(7538)] = 316394, + [SMALL_STATE(7539)] = 316401, + [SMALL_STATE(7540)] = 316408, + [SMALL_STATE(7541)] = 316415, + [SMALL_STATE(7542)] = 316422, + [SMALL_STATE(7543)] = 316429, + [SMALL_STATE(7544)] = 316436, + [SMALL_STATE(7545)] = 316443, + [SMALL_STATE(7546)] = 316450, + [SMALL_STATE(7547)] = 316457, + [SMALL_STATE(7548)] = 316464, + [SMALL_STATE(7549)] = 316471, + [SMALL_STATE(7550)] = 316478, + [SMALL_STATE(7551)] = 316485, + [SMALL_STATE(7552)] = 316492, + [SMALL_STATE(7553)] = 316499, + [SMALL_STATE(7554)] = 316506, + [SMALL_STATE(7555)] = 316513, + [SMALL_STATE(7556)] = 316520, + [SMALL_STATE(7557)] = 316527, + [SMALL_STATE(7558)] = 316534, + [SMALL_STATE(7559)] = 316541, + [SMALL_STATE(7560)] = 316548, + [SMALL_STATE(7561)] = 316555, + [SMALL_STATE(7562)] = 316562, + [SMALL_STATE(7563)] = 316569, + [SMALL_STATE(7564)] = 316576, + [SMALL_STATE(7565)] = 316583, + [SMALL_STATE(7566)] = 316590, + [SMALL_STATE(7567)] = 316597, + [SMALL_STATE(7568)] = 316604, + [SMALL_STATE(7569)] = 316611, + [SMALL_STATE(7570)] = 316618, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -341661,7944 +343594,7945 @@ 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(954), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 1), [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 1), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 109), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 59), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 112), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1127), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6684), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7369), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3438), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3769), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3769), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(103), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(416), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(414), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3913), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7281), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(64), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(631), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(9), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1805), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(607), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(736), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(737), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4090), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3522), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3523), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5895), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1129), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5737), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1126), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1054), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6155), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4834), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(115), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(116), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(117), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(112), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6048), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6587), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1125), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7502), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 60), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 45), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 79), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 46), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 83), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 0), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6684), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7369), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3769), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3769), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(631), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(737), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4090), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5895), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1054), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6155), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4834), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(117), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6048), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6587), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7502), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 112), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1162), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6633), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6811), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3498), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(709), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(709), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(380), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(418), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(419), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4072), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7279), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(254), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(612), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(8), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1952), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(598), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(766), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(767), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4108), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3719), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3726), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5904), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1166), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5738), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1161), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1136), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6240), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4815), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(113), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(114), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(115), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(109), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6049), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6591), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1160), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7500), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 59), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 109), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 60), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 79), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 45), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 46), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 83), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 1), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 0), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6633), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6811), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4072), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7279), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5904), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5738), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1136), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6240), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4815), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6049), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6591), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7500), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 1), [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 1), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3989), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3989), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 1), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 1), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 1), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 1), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7144), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 0, 0), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 11), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 11), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 31), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 31), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 35), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 35), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 11), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 11), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 31), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 31), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 35), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 35), [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4024), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7356), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7306), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 19), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 19), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 18), [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 18), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(839), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3790), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3998), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3652), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3653), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5912), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(826), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5769), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(903), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6183), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4816), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(360), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(361), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(362), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(303), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6859), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(828), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1196), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7554), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(877), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3775), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3828), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3648), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3649), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5857), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(889), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5748), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(949), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6204), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4761), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(360), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(361), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(362), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(303), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7017), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(876), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1302), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7554), [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 39), [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 39), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(952), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3728), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4026), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3674), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3675), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5968), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(912), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5640), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1024), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6196), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4890), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(391), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(392), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(393), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(343), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7093), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(951), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1330), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7564), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(941), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3770), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3844), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3683), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3684), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5925), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(958), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5631), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1091), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6235), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4935), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(391), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(392), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(393), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(343), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7166), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(940), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1504), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7564), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5901), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(992), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5763), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6258), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4803), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3643), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5740), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6264), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4926), [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(352), [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(353), [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(354), [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6481), - [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7552), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1227), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5956), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5635), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1319), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6251), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4872), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6491), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1226), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7562), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1095), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3713), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3841), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3555), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3556), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5830), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1112), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5658), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1260), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6262), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4686), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(156), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(157), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(158), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(143), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7375), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1094), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1606), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7514), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1118), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3795), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3897), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3567), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3568), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5972), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1119), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5711), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1148), - [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6203), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4925), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(184), - [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(185), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(186), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(163), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7357), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1117), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1649), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7519), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1445), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5970), - [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5772), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6269), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), - [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6559), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7512), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), - [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5841), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5675), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6192), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4809), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6460), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7517), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 8), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 8), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 21), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 21), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3647), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5893), - [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(991), - [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5758), - [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6238), - [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4796), - [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1270), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3772), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4094), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1283), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7273), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1269), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1165), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5925), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5623), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6220), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4836), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7557), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1210), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5949), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5633), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6263), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4868), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7561), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5906), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5766), - [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), - [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4810), - [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [2485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(598), - [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7553), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6588), - [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), - [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5975), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5662), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6254), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4738), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5990), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5647), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6266), - [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4903), - [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), - [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7567), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), - [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), - [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), - [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5718), - [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6230), - [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4691), - [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7493), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1402), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5638), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6228), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4884), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(389), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(390), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), - [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3655), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5917), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5703), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6201), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4826), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(366), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7555), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), - [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3565), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5948), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), - [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5691), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6212), - [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7518), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3602), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5793), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5683), - [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6156), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), - [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7534), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5995), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5689), - [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), - [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4940), - [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [3190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7513), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5976), - [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), - [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5643), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6210), - [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(395), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(396), - [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7565), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3587), - [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3588), - [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5951), - [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5667), - [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), - [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6186), - [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4939), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7529), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), - [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), - [3452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1890), - [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3789), - [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4124), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1902), - [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7376), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1889), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2177), - [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3743), - [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3919), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3709), - [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3580), - [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5929), - [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2078), - [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5656), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2177), - [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2258), - [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6211), - [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4830), - [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(208), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(209), - [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(210), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(187), - [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6981), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2142), - [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2449), - [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7525), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5681), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4807), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(244), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), - [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7533), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3583), - [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3584), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5799), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5663), - [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6259), - [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4895), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7527), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1761), - [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), - [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), - [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), - [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6608), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), - [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), - [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3576), - [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5880), - [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2354), - [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5624), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2494), - [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6160), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4754), - [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6469), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [4108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), - [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6486), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6979), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3571), - [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), - [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5804), - [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5739), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), - [4198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2370), - [4201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6170), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4695), - [4207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2282), - [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7521), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [4262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), - [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4117), - [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4117), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 10), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 10), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6495), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 23), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 23), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 4), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 4), - [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3807), - [4318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3807), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), - [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2425), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), - [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), - [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3616), - [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3617), - [4381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), - [4384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2350), - [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), - [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2454), - [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6271), - [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4751), - [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(269), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7539), - [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6856), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [4431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2335), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), - [4462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5807), - [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), - [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5688), - [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2335), - [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2510), - [4477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6187), - [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4799), - [4483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7536), - [4501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), - [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), - [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6624), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2540), - [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), - [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5883), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), - [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5747), - [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2540), - [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), - [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6163), - [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4757), - [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(336), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), - [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), - [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6463), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(984), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3902), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3902), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3826), - [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3826), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3577), - [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3578), - [4711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), - [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), - [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5652), - [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), - [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6167), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4793), - [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2526), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7524), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2556), - [4780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2561), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2555), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7338), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3958), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3958), - [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), - [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5812), - [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2490), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5692), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), - [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6209), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4703), - [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2536), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7537), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [4969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3799), - [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3799), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [4981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [4984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6474), - [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), - [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2655), - [5044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), - [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [5050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5873), - [5053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), - [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5741), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2655), - [5062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [5065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6273), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4721), - [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [5077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(330), - [5080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), - [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7547), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [5127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), - [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [5142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7387), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1, 0, 0), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6465), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [5256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3906), - [5259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3906), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 25), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 25), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 24), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 24), - [5272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7285), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [5297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [5311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3813), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3813), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), - [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), - [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3819), - [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3819), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), - [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), - [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3805), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3805), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [5504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3082), - [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), - [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), - [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5850), - [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3073), - [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), - [5522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), - [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6215), - [5528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4692), - [5531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), - [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7544), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 22), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 22), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [5567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [5596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [5613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3809), - [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3809), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), - [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [5677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), - [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 9), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 9), - [5691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), - [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), - [5697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3829), - [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3829), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), - [5725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3948), - [5728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3948), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [5737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1776), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), - [5749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [5807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4038), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4038), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4061), - [5842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4061), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, 0, 66), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6480), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2, 0, 0), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), - [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), - [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), - [5883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7412), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [5903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), - [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6470), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [5961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [5966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), - [5969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [5976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [5982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), - [5985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5994), - [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5722), - [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [5997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6264), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4679), - [6006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3358), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7520), - [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2122), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [6029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [6037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6056), - [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4463), - [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4471), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [6059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2785), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1050), - [6073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), - [6076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1573), - [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2298), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1080), - [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3835), - [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4011), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [6095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6126), - [6098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(503), - [6101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2242), - [6104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1640), - [6107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1863), - [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), - [6113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3193), - [6116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4559), - [6119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1581), - [6122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1238), - [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2459), - [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2950), - [6131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3184), - [6134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1700), - [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), - [6140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1486), - [6143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1731), - [6146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1229), - [6149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3414), - [6152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2316), - [6155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(483), - [6158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2554), - [6161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2763), - [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2220), - [6167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2063), - [6170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1950), - [6173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4425), - [6176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1795), - [6179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4208), - [6182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5155), - [6185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3237), - [6188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4824), - [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2038), - [6194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1822), - [6197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6411), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [6204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2553), - [6207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2574), - [6210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5319), - [6213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2464), - [6216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5215), - [6219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6115), - [6222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6431), - [6225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4220), - [6228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3233), - [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6593), - [6234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5246), - [6237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2276), - [6240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2598), - [6243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2415), - [6246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6304), - [6249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3337), - [6252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5531), - [6255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2537), - [6258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(847), - [6261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2848), - [6264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5404), - [6267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2621), - [6270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5304), - [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6119), - [6276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1141), - [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1145), - [6282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1342), - [6285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(923), - [6288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1545), - [6291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4468), - [6294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1434), - [6297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4298), - [6300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(935), - [6303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4178), - [6306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1302), - [6309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1315), - [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1570), - [6315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1039), - [6318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1735), - [6321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6392), - [6324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2352), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [6359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [6428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2, 0, 0), - [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2, 0, 0), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2568), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4091), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2522), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [6611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 43), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 43), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2658), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4079), - [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4005), - [6636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2666), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 41), - [6641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 41), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), - [6647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 40), - [6653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 40), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3, 0, 0), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3, 0, 0), - [6665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 40), - [6675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 40), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [6686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 12), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 12), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 41), - [6705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 41), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [6709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 27), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 27), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 40), - [6726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 40), - [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 41), - [6730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 41), - [6732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), - [6744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), - [6770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), - [6792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), - [6930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), - [6938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), - [6964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), - [6983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 76), - [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 76), - [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), - [6989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), - [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), - [6993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), - [6995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2991), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3007), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, 0, 43), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, 0, 43), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [7131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [7138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), - [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 0), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 0), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), - [7214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3151), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, 0, 12), - [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, 0, 12), - [7255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [7311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [7452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), - [7454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3741), - [7457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3741), - [7460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(2148), - [7463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3861), - [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), - [7468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6036), - [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6457), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [7570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [7581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4110), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4110), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [7619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6152), - [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), - [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3605), - [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5801), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6198), - [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5685), - [7640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6152), - [7643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6387), - [7646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6162), - [7649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4889), - [7652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6190), - [7667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), - [7670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7535), - [7673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), - [7676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4614), - [7679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3593), - [7682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), - [7685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5781), - [7688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4661), - [7691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), - [7694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4740), - [7697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6217), - [7700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4755), - [7703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [7706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [7709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [7712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4610), - [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7532), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [7723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3419), - [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 12), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 51), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 49), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 89), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 13), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 0), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 33), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [8490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), - [8493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [8496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3496), - [8499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), - [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5693), - [8511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3214), - [8514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), - [8517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6221), - [8520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4864), - [8523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [8526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [8529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [8532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3214), - [8535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2491), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [8558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5021), - [8742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), - [8745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [8748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5777), - [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5046), - [8754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5673), - [8757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5021), - [8760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5142), - [8763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6166), - [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4865), - [8769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [8775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [8778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [8781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5020), - [8784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7531), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [8791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5043), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), - [8796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(3593), - [8799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(3594), - [8802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5781), - [8805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5055), - [8808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5679), - [8811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4740), - [8814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6217), - [8817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4755), - [8820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(240), - [8823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(241), - [8826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(242), - [8829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(215), - [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5042), - [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(7532), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [9024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [9900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [11532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [11544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [11552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [11656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), - [11658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), - [11660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6486), - [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [11671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), - [11673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3711), - [11676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(640), - [11679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), - [11681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4008), - [11684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6042), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [11689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3817), - [11692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3817), - [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [11699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), - [11702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), - [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [11713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 3), - [11715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [11717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [11719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 3), - [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [11733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), - [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), - [11739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), - [11741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [11747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [11753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), - [11756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [11769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), - [11772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [11777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4486), - [11780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 14), - [11782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 14), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [11790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 29), - [11792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 29), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [11800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [11806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6495), - [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [11815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4029), - [11818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4029), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [11849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3832), - [11852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3832), - [11855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3724), - [11858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(664), - [11861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4032), - [11864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6021), - [11867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4465), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [11872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), - [11874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3753), - [11877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7388), - [11880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [11883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), - [11885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [11892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 54), - [11894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 54), - [11896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [11898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [11902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 61), - [11904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 61), - [11906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), - [11909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), - [11912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4505), - [11915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [11917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4396), - [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [11922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [11924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [11938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [11940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [11942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [11946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6624), - [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [11957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [11965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4615), - [11968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [11970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), - [11973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), - [11976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [11980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [11982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [11984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [11988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3737), - [11991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(703), - [11994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3872), - [11997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6049), - [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [12008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4513), - [12011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), - [12014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7413), - [12017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [12020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6011), - [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [12025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3726), - [12028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(762), - [12031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3887), - [12034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6038), - [12037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4664), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [12046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6463), - [12049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [12062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6474), - [12065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3779), - [12068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(684), - [12071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3859), - [12074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6022), - [12077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 71), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [12085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [12091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [12101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), - [12103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), - [12105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [12107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [12113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), - [12115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), - [12117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 73), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [12121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), - [12123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [12127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 44), - [12129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 44), - [12131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [12133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(433), - [12136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [12140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), - [12142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), - [12144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [12146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [12152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3717), - [12155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(769), - [12158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3876), - [12161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6044), - [12164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [12167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7422), - [12170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [12173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6006), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [12178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [12180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [12184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 44), - [12186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 44), - [12188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [12193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), - [12196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [12199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6001), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [12204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 97), - [12206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [12208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [12210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 30), - [12212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 30), - [12214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [12218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), - [12220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [12222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [12228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), - [12230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), - [12232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 44), - [12234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 44), - [12236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4052), - [12239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4052), - [12242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), - [12244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), - [12246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4694), - [12249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [12251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2, 0, 0), - [12253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3752), - [12256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [12259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6002), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [12264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6465), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [12273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 99), - [12275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 44), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [12279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), - [12281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), - [12283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 131), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [12289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 69), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [12293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 57), - [12295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), - [12297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [12323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [12337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [12341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 84), - [12343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 84), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [12347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), - [12349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), - [12351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), - [12353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), - [12355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 46), - [12357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 46), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [12361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), - [12363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [12373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), - [12375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [12385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 19), - [12387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 19), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [12391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 75), - [12393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 75), - [12395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), - [12397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [12401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 65), - [12403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 65), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [12409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), - [12411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), - [12413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [12416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), - [12418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [12424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), - [12426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [12434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), - [12436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [12442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [12445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [12448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6000), - [12451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), - [12453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), - [12455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 46), - [12457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 46), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [12487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), - [12489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), - [12491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 45), - [12493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 45), - [12495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 45), - [12497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 45), - [12499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 46), - [12501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 46), - [12503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 45), - [12505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 45), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [12509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), - [12511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [12519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 42), - [12521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 42), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [12525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 46), - [12527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 46), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [12531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 45), - [12533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 45), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [12537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), - [12539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [12553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 15), - [12555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 15), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [12559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 47), - [12561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 47), - [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [12577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 2), - [12579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 2), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [12591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 45), - [12593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 45), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [12597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 46), - [12599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 46), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [12637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), - [12639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), - [12641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2, 0, 0), - [12643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2, 0, 0), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [12665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5050), - [12668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [12670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [12672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [12674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [12678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [12681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [12683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [12686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [12688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [12690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [12721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [12735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4048), - [12738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), - [12740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), - [12742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), - [12744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), - [12746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3734), - [12749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3734), - [12752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(966), - [12755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3930), - [12758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6029), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [12769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [12771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [12773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [12777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3793), - [12780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(975), - [12783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3895), - [12786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6012), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [12813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4093), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [12852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [12864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [12866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [12873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [12875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, 0, 12), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [12889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6480), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [12896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 134), - [12898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 134), - [12900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 79), - [12902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [12908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [12910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [12912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [12914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, 0, 49), - [12916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [12920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [12922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [12924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 142), - [12926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 142), - [12928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 112), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [12932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [12936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 138), - [12938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 138), - [12940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 109), - [12942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 144), - [12944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 144), - [12946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 83), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [12950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 51), - [12952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [12960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 64), - [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [12964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), - [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [12969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3783), - [12972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), - [12975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6003), - [12978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [12981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7145), - [12984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [12987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [12990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7145), - [12993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6008), - [12996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6470), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [13003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 136), - [13005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 136), - [13007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 45), - [13009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 153), - [13011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 153), - [13013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 109), - [13015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 155), - [13017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 155), - [13019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 112), - [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [13025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), - [13028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4103), - [13031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 77), - [13033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 77), - [13035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 59), - [13037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 81), - [13039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 81), - [13041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 60), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [13049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [13062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 140), - [13064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 140), - [13066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 46), - [13068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 103), - [13070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 103), - [13072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 59), - [13074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 105), - [13076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 105), - [13078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 79), - [13080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 107), - [13082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 107), - [13084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 45), - [13086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 110), - [13088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 110), - [13090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 46), - [13092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 113), - [13094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 113), - [13096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 60), - [13098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 115), - [13100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 115), - [13102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 83), - [13104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3763), - [13107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3763), - [13110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1001), - [13113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4132), - [13116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6039), - [13119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), - [13122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 139), - [13124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 139), - [13126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 135), - [13128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 135), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [13132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 137), - [13134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 137), - [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [13138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 154), - [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 154), - [13142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 156), - [13144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 156), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [13148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 78), - [13150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 78), - [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [13160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 145), - [13162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 145), - [13164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 82), - [13166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 82), - [13168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), - [13171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 143), - [13173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 143), - [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [13181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [13188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, 0, 12), - [13190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [13192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5438), - [13195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 104), - [13197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 104), - [13199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 106), - [13201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 106), - [13203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 108), - [13205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 108), - [13207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 111), - [13209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 111), - [13211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 114), - [13213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 114), - [13215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 116), - [13217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 116), - [13219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [13227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5409), - [13230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), - [13233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7286), - [13236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), - [13239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), - [13242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7286), - [13245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6007), - [13248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 141), - [13250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 141), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [13256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [13268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5492), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [13273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 64), - [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [13281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [13283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [13294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 49), - [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [13300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 51), - [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [13304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3744), - [13307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1541), - [13310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3953), - [13313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6018), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [13326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), - [13329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), - [13332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), - [13334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), - [13336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [13338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [13356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(433), - [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [13373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [13377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [13380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [13399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5610), - [13402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [13414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [13420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [13428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [13430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [13432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [13436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [13438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [13450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [13452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [13536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [13564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [13566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [13572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [13574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [13582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [13584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [13590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [13596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [13600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [13604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [13610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [13614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [13616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [13620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [13628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [13630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [13634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [13636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [13640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [13646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [13652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [13676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [13678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [13688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [13690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [13696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [13698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [13700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [13716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [13720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [13732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [13736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [13740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [13742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [13748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [13750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [13754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [13758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [13760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [13762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [13764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [13768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [13772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [13774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [13776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [13778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [13782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [13784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [13786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [13792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), - [13796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [13798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [13814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [13818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [13820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [13822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [13824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [13826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [13828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [13830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [13838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [13840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [13842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [13848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [13850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [13856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [13858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [13860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [13866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [13868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [13870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [13872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [13878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [13880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [13882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [13884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [13886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [13888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [13892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [13894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [13896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [13898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [13900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [13902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [13904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [13906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [13908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [13910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [13912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [13914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [13916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [13918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [13920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [13922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [13924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [13926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [13930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [13932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [13934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [13936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [13938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [13940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), - [13943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), - [13946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6010), - [13949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [13951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6063), - [13954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4760), - [13957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [13960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [13963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [13966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [13968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [13970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [13972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [13974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [13976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [13978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [13980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [13982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [13984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [13986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [13988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [13992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [13994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [13998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [14000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [14006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [14008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), - [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [14012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [14016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [14018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [14022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [14026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [14028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [14034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [14040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [14042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [14044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [14046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [14048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [14050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [14052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [14054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [14056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [14058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [14060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [14062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [14064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [14066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [14068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [14070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [14072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [14074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [14076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [14078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [14080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [14082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [14084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [14086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [14090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [14092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [14094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [14104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [14106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [14108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [14116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [14118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [14120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [14122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [14124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [14126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [14134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [14136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [14138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [14142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [14144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [14146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [14148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [14150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [14152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [14154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [14156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [14158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [14160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [14162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [14164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [14166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [14168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [14170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [14172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [14176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [14178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [14180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [14182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [14190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [14192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [14194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [14196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [14198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [14200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [14202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [14204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [14206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), - [14208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [14210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [14212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [14214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [14216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [14218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [14220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [14222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [14224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [14226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [14236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [14238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [14240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [14242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [14244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [14246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [14248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [14250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [14252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [14254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [14262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [14266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [14268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [14272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [14274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [14276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [14278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [14280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [14282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [14284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [14286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [14288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), - [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [14298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [14300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [14302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [14308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [14310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), - [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [14320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [14322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [14324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [14326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [14328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [14330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [14332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [14334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [14342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [14350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [14362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), - [14364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 51), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [14368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [14370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [14374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [14382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [14390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [14392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [14398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [14406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [14414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), - [14417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4790), - [14420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [14423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [14426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [14429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6023), - [14432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), - [14434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [14436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [14440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [14448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [14450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [14456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), - [14458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [14460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [14464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [14472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [14480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [14488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [14496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [14504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [14506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [14510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [14518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [14526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [14534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [14536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [14540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [14548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [14556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [14564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [14572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [14574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [14578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [14588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [14594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [14600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [14606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [14612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [14618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [14622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [14624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [14626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [14630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [14634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [14640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [14646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [14658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [14660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [14662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [14664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [14666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [14674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, 0, 12), - [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [14684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), - [14686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [14688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), - [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [14692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [14694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [14696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [14698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, 0, 12), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [14706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [14708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [14710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [14714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), - [14717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5704), - [14720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6097), - [14723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), - [14725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), - [14728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6097), - [14731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [14734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [14739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [14741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, 0, 12), - [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [14747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [14749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [14753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [14755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [14759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [14761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [14763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [14767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [14769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [14773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [14775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [14779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [14781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [14785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [14787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6233), - [14790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, 0, 27), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [14794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 0), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [14798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 12), - [14800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 7), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [14804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 50), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1058), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3786), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4081), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3519), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3520), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5789), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1076), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5741), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1245), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6270), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4927), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(156), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(157), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(158), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(143), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7003), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1047), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1659), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7514), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5909), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6194), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4932), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(335), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6461), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7562), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1098), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3789), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4103), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3533), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3534), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5954), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1113), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5690), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1291), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6176), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4875), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(184), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(185), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(186), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(163), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7309), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1053), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1612), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7519), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_redirect, 1, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_redirect, 1, 0, 0), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_redirect, 2, 0, 4), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_redirect, 2, 0, 4), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3745), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5980), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5768), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6220), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4806), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6487), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7512), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1140), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5836), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5735), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1325), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6269), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4867), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1139), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7551), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5673), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1637), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6243), + [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6569), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7517), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1319), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3773), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4114), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1331), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7271), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1318), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1307), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5873), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5761), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6186), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4842), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(371), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7557), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5902), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5624), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7561), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6592), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5849), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5744), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6232), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4721), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(299), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7553), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5927), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6258), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4699), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3652), + [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1419), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5752), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6162), + [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4786), + [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7555), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5919), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5628), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6211), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5950), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5639), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6260), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4942), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7567), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5727), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6158), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7489), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1921), + [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3797), + [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4133), + [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1943), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7372), + [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1920), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), + [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3576), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5992), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5654), + [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6205), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4711), + [3177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1636), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7529), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), + [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5932), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5634), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6253), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4937), + [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7565), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5885), + [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5686), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6213), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4897), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(678), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7518), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), + [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), + [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), + [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5747), + [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), + [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6174), + [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(249), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7534), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3758), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5777), + [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), + [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), + [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4841), + [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7513), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2131), + [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3785), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4126), + [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3555), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3556), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5901), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1982), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5770), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2131), + [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2295), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6257), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4863), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(208), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(209), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(210), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(187), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7386), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2270), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2626), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7525), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1903), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3587), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3588), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5914), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2032), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6188), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), + [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7533), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1794), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3567), + [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5948), + [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), + [3973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5719), + [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), + [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6256), + [3982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4884), + [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [3991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7527), + [4003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), + [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6617), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), + [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3550), + [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), + [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2485), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5746), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6165), + [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4794), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6595), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2435), + [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6456), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6462), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7375), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [4380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5797), + [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5725), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2466), + [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6250), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4690), + [4426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), + [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7521), + [4444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2347), + [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), + [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6575), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6536), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7016), + [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), + [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5936), + [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2364), + [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5664), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), + [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2536), + [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6265), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4709), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2410), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7539), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2463), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2483), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2462), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3888), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3888), + [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2418), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), + [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5815), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5648), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2418), + [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), + [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6261), + [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4791), + [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2417), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7536), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2477), + [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), + [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2474), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6578), + [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6606), + [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3904), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3904), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6707), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [4906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2516), + [4909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [4954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [4957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), + [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5847), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2624), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2750), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6246), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4865), + [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7524), + [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2591), + [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3599), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [5022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5859), + [5025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2507), + [5028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5653), + [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2591), + [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6214), + [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4895), + [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2590), + [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7537), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [5101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), + [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), + [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5823), + [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2552), + [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5726), + [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [5122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6237), + [5128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4814), + [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(336), + [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [5137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [5143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [5146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3864), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3864), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), + [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [5256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3883), + [5259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3883), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [5284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [5342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), + [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3630), + [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3631), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5808), + [5361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), + [5364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5720), + [5367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2821), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), + [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), + [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4823), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7547), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7283), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7383), + [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3887), + [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3887), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3902), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3902), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [5658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3891), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 9), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 9), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 22), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 22), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [5759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), + [5762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3309), + [5773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3623), + [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [5779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5988), + [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5708), + [5788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3377), + [5791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6206), + [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4727), + [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [5800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), + [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7544), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3909), + [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3909), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), + [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [5856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, 0, 66), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6452), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2, 0, 0), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), + [5879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3803), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3803), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [5922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), + [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), + [5933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [5960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), + [5963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), + [5966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6600), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3807), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3807), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [6030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3858), + [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3858), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [6058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7408), + [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), + [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), + [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2239), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [6115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [6179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [6182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [6185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [6188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), + [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [6194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), + [6208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5779), + [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), + [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5702), + [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [6220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), + [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6177), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), + [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [6238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7520), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3840), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3843), + [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3843), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3835), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [6285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [6288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [6291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2282), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), + [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2787), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [6306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1583), + [6309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1172), + [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6138), + [6315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(502), + [6318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2329), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [6323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1752), + [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1816), + [6329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3262), + [6332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6081), + [6335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6400), + [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1265), + [6341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2614), + [6344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2992), + [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3343), + [6350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1667), + [6353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1681), + [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1840), + [6359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1321), + [6362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2460), + [6365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(486), + [6368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2559), + [6371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2764), + [6374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2276), + [6377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2018), + [6380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2025), + [6383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4500), + [6386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1776), + [6389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4279), + [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5142), + [6395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3103), + [6398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4900), + [6401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2042), + [6404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1842), + [6407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6414), + [6410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2534), + [6413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2666), + [6416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5359), + [6419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2547), + [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5206), + [6425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6144), + [6428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6404), + [6431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4260), + [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3215), + [6437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6603), + [6440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5408), + [6443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2754), + [6446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2481), + [6449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6354), + [6452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3368), + [6455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5533), + [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2583), + [6461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(855), + [6464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2924), + [6467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5450), + [6470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2812), + [6473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5271), + [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6110), + [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1281), + [6482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1286), + [6485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1429), + [6488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(970), + [6491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1538), + [6494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4465), + [6497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1493), + [6500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4309), + [6503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(981), + [6506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4246), + [6509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1474), + [6512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1432), + [6515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1608), + [6518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1167), + [6521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1852), + [6524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4632), + [6527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1626), + [6530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4352), + [6533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4359), + [6536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2298), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [6543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), + [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1174), + [6549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3447), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2376), + [6565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [6568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [6589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3819), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), + [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3861), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [6808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3867), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [6841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), + [6853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 12), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 12), + [6889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), + [6892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 40), + [6900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 40), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 41), + [6906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 41), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 43), + [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 43), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 40), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 40), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 41), + [6926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 41), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2839), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [6943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [6985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [7047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2952), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [7066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [7155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3009), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [7170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 40), + [7194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 40), + [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 41), + [7198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 41), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [7460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(1959), + [7463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(1959), + [7466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(2248), + [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3995), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [7474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6030), + [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6551), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3208), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 0), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 0), + [7557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3106), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), + [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4549), + [7846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3584), + [7849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5874), + [7855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4565), + [7858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5707), + [7861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4695), + [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6254), + [7867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4912), + [7870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [7873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [7876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [7879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [7882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [7885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7532), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [7892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6219), + [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), + [7905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3593), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), + [7911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5794), + [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6212), + [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5633), + [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6219), + [7923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6417), + [7926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6187), + [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), + [7932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [7938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [7944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6163), + [7947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6083), + [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7535), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 89), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 49), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 51), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 12), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 33), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 0), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 13), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [8574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [8609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3694), + [8612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [8618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3741), + [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3741), + [8624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6014), + [8627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5695), + [8630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [8633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), + [8636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6154), + [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4741), + [8642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [8645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [8648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [8651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2616), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [9503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5033), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), + [9509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [9512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5856), + [9515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5061), + [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5676), + [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5033), + [9524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5175), + [9527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6203), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4725), + [9533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [9539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [9545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5032), + [9548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7531), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [9669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5051), + [9672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), + [9674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(3584), + [9677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(3585), + [9680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5874), + [9683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5070), + [9686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5707), + [9689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4695), + [9692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6254), + [9695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4912), + [9698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(240), + [9701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(241), + [9704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(242), + [9707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(215), + [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5050), + [9713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(7532), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [9940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [10546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [10548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(591), + [10551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(631), + [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [10556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3832), + [10559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6048), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [11312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [11318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [11504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [11532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [11544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [11554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [11564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [11686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [11688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(653), + [11691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7384), + [11694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [11697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [11699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6010), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [11708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [11711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [11718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 29), + [11720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 29), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [11724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [11726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [11734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(634), + [11737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(674), + [11740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3847), + [11743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6022), + [11746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3850), + [11749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3850), + [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [11754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [11762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [11764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [11766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6456), + [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [11775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 61), + [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 61), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [11789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 54), + [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 54), + [11793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), + [11796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), + [11799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), + [11802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), + [11805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [11831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [11833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [11835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [11837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [11863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [11867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [11870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7409), + [11873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [11876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6000), + [11879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), + [11882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), + [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [11909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3846), + [11912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3846), + [11915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), + [11918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), + [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [11927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(664), + [11930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(725), + [11933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3929), + [11936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6033), + [11939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(714), + [11942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(779), + [11945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3956), + [11948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6044), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [11953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4484), + [11956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4470), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [11963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6462), + [11966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3890), + [11969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3890), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [11976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(699), + [11979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(759), + [11982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4095), + [11985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6027), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [11990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4463), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [11995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [12003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4429), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [12024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), + [12027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), + [12030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [12036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [12042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [12045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6881), + [12048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [12051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6004), + [12054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4653), + [12057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [12059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4563), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [12074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [12076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [12080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(738), + [12083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(801), + [12086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3946), + [12089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6037), + [12092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [12095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [12098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6001), + [12101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4600), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [12106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6536), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [12111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6575), + [12114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [12116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [12119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [12122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6003), + [12125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4650), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [12134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6606), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [12141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [12143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), + [12145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [12151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 44), + [12153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 44), + [12155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), + [12157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [12163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 30), + [12165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 30), + [12167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [12169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [12171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), + [12173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), + [12175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [12177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [12179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 44), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [12193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [12203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 44), + [12205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 44), + [12207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 44), + [12209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 44), + [12211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [12213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [12215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), + [12217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), + [12219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), + [12221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [12231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [12234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [12237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6005), + [12240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 97), + [12242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 57), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [12246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [12248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(437), + [12251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [12255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), + [12257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [12261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [12264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [12266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [12268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [12270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [12273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [12276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), + [12278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [12284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 99), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [12288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6578), + [12291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 69), + [12293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 71), + [12295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 73), + [12297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2, 0, 0), + [12299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 131), + [12301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4849), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [12312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [12334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [12336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [12342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [12344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [12350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [12358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 47), + [12360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 47), + [12362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 46), + [12364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 46), + [12366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 45), + [12368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 45), + [12370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [12372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [12376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [12378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [12392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [12398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [12412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [12418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 46), + [12420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 46), + [12422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 46), + [12424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 46), + [12426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [12428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [12432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [12434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 46), + [12436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 46), + [12438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 19), + [12440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 19), + [12442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 2), + [12444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 2), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [12448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 84), + [12450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 84), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [12454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 65), + [12456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 65), + [12458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [12460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [12464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [12470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [12472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [12474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 45), + [12476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 45), + [12478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 45), + [12480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 45), + [12482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [12484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [12490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 42), + [12492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 42), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [12496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [12498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [12500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 75), + [12502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 75), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [12510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [12512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [12518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [12520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [12522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [12524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [12528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 46), + [12530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 46), + [12532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [12534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [12544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 45), + [12546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 45), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [12550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [12552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [12554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [12562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 45), + [12564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 45), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [12574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [12576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [12636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [12675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(891), + [12678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1033), + [12681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3967), + [12684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6021), + [12687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [12689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(858), + [12692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(858), + [12695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1008), + [12698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4137), + [12701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6040), + [12704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [12706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(435), + [12709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5066), + [12712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [12716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [12720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [12723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [12733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [12743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [12746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [12748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [12750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [12782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [12784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [12786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [12788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [12796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3852), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [12825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(998), + [12828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7145), + [12831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(998), + [12834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1075), + [12837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7145), + [12840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6002), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [12867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [12870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [12873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [12890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [12897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [12909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [12911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, 0, 12), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [12921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [12923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1018), + [12931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1018), + [12934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1124), + [12937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3817), + [12940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6012), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [12949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6452), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [12954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 136), + [12956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 136), + [12958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 45), + [12960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 155), + [12962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 155), + [12964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 112), + [12966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 153), + [12968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 153), + [12970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 109), + [12972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [12974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 144), + [12976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 144), + [12978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 83), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [12982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 134), + [12984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 134), + [12986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 79), + [12988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [12992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [12994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [12996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [12998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [13000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, 0, 49), + [13002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [13004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [13010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [13020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3866), + [13023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 77), + [13025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 77), + [13027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 59), + [13029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 81), + [13031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 81), + [13033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 60), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [13037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 51), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [13047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 64), + [13049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [13055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5335), + [13058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3873), + [13061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 138), + [13063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 138), + [13065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 109), + [13067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 103), + [13069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 103), + [13071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 59), + [13073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 105), + [13075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 105), + [13077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 79), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [13085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 107), + [13087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 107), + [13089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 45), + [13091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3880), + [13094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 110), + [13096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 110), + [13098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 46), + [13100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 113), + [13102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 113), + [13104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 60), + [13106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 115), + [13108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 115), + [13110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 83), + [13112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [13115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [13118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [13121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1275), + [13124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [13127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6008), + [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [13138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 142), + [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 142), + [13142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 112), + [13144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 140), + [13146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 140), + [13148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 46), + [13150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6600), + [13153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 154), + [13155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 154), + [13157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 143), + [13159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 143), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [13163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [13165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 135), + [13167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 135), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [13173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 139), + [13175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 139), + [13177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5429), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [13186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 145), + [13188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 145), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [13194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 156), + [13196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 156), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [13204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 78), + [13206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 78), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [13210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 82), + [13212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 82), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [13218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5418), + [13221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5431), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [13226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [13228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, 0, 12), + [13230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [13236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), + [13239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 104), + [13241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 104), + [13243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 106), + [13245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 106), + [13247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 108), + [13249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 108), + [13251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 111), + [13253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 111), + [13255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 114), + [13257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 114), + [13259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 116), + [13261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 116), + [13263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5455), + [13266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 137), + [13268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 137), + [13270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 141), + [13272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 141), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [13276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1496), + [13279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), + [13282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3808), + [13285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6026), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [13290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [13292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [13304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [13306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [13310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [13330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [13339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [13341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [13370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [13373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [13376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [13379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [13382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), + [13384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [13386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [13390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(437), + [13393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [13397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [13399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [13401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [13403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5610), + [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [13408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [13414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [13428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [13430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [13432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [13436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [13438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [13450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [13452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [13536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [13564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [13566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [13572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [13574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [13582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [13584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [13590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [13596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [13600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [13604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [13610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [13614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [13616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [13620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [13628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [13630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [13634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [13636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [13640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [13646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [13652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [13676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [13678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [13688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [13690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [13696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [13698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [13700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [13716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [13720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [13732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [13736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [13738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3515), + [13741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), + [13744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6011), + [13747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [13749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), + [13752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), + [13755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [13758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [13761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [13764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [13768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [13772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [13774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [13776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [13778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [13782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [13784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [13786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [13792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [13796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [13798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [13814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [13818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [13820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [13822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [13824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [13826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [13828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [13830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [13838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [13840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [13842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [13848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [13850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [13856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [13858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [13860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [13866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [13868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [13870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [13872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [13878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [13880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [13882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [13884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [13886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [13888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [13892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [13894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [13896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [13898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [13900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [13902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [13904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [13906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [13908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [13910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [13912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [13914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [13916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [13918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [13920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [13922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [13924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [13926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [13930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [13932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [13934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [13936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [13938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [13940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [13942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [13944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [13946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [13948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [13950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [13952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [13954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [13956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [13958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [13960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [13962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [13964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [13966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [13968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [13970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [13972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [13974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [13976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [13978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [13980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [13982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [13984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [13986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [13988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [13992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [13994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [13998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [14000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [14006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [14008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [14012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [14016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [14018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [14022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [14026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [14028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [14034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [14040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [14042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [14044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [14046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [14048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [14050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [14052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [14054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [14056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [14058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [14060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [14062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [14064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [14066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [14068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [14070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [14072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [14074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [14076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [14078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [14080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [14082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [14084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [14086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [14096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [14098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [14100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [14102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [14106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [14108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [14110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [14112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [14114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [14116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [14118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [14120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [14128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [14130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [14132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [14134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [14136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [14138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [14142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [14144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [14146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [14148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [14150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [14152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [14154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [14156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [14158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [14160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [14162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [14164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [14166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [14168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [14170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [14172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [14174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [14176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [14178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [14180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [14182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [14184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [14186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [14188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [14190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [14192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [14194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [14196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [14198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [14200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [14202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [14204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [14206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [14208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [14210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [14220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [14222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [14224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [14226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [14234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [14236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), + [14238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [14240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [14242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [14244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [14246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [14248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [14250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [14254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [14256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [14266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [14268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [14278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [14280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [14282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [14284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [14286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [14288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [14298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [14300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [14302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [14308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [14310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [14312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [14314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [14316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [14318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [14320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [14322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [14332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [14334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [14336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [14344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [14352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [14360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [14362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [14366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [14368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [14372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [14380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [14382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [14386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [14394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [14402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [14410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [14418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [14426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [14434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [14436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [14440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [14450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [14458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [14466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [14474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6029), + [14477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4772), + [14480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [14483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [14486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [14489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6036), + [14492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [14494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [14502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [14504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [14508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [14516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [14518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [14522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [14524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [14528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 51), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [14532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [14540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [14552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [14556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [14558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [14566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [14574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [14582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [14584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [14590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [14596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [14602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [14608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [14612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [14616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [14622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [14628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [14634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [14638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [14640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [14642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [14644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [14646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [14648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [14662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [14664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [14668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [14676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, 0, 12), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [14686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), + [14688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [14696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [14698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [14702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4010), + [14705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4010), + [14708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [14711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5675), + [14714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6097), + [14717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), + [14719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [14722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6097), + [14725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [14727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [14729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [14731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, 0, 12), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [14737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [14739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [14743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [14745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [14749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [14751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [14757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [14759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [14761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [14765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [14767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [14773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [14775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, 0, 12), + [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [14779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [14781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [14783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [14787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [14789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 7), + [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [14793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 50), + [14795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, 0, 27), + [14797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 0), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [14801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 12), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [14805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), [14820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 49), - [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [14824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 51), - [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [14828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 122), - [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [14836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 91), - [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [14842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [14844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [14852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 64), - [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [14856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 92), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [14868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [14886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [14892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 64), - [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [14910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 89), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [14926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [14932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 49), - [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [14824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [14832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 91), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [14848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [14850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [14858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [14876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [14892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 89), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [14902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 51), + [14904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 122), + [14906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [14908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 64), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [14912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [14920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 123), + [14922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [14932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [14964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 49), - [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [14968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [14982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 51), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [14994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 51), - [14996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [15002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [15016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 123), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [15022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 63), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [14948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [14960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 63), + [14962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [14984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 92), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [15046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 90), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [15050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [15062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), - [15064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [15026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 90), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [15034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 51), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [15050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 49), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [15054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [15056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [15062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [15072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 121), - [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [15076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 52), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [15088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 62), - [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [15092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 53), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [15098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2, 0, 0), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [15102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 85), - [15104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 7), - [15106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 46), - [15108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), - [15110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(5324), - [15113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 31), - [15115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 32), - [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [15119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [15121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [15129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4063), - [15132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [15134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [15140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), - [15142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [15145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), - [15147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4758), - [15150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), - [15152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [15154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [15160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [15162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [15166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), - [15168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), SHIFT_REPEAT(6418), - [15171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 45), - [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [15175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6484), - [15178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 26), - [15180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 26), - [15182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 109), - [15184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [15190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 112), - [15192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [15198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 59), - [15200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [15204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 60), - [15206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [15210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [15216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, 0, 12), - [15218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6492), - [15221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [15227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), - [15229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), - [15231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, 0, 12), - [15233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 79), - [15235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [15241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 45), - [15243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [15247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 46), - [15249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [15253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 83), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [15074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 121), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [15078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [15080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [15086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 62), + [15088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 52), + [15090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2, 0, 0), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [15102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [15107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 31), + [15109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [15115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 53), + [15117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 7), + [15119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [15121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [15125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 45), + [15127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 46), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [15131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), + [15133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), SHIFT_REPEAT(6446), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [15138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 85), + [15140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [15142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), + [15145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [15153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [15155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [15159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), + [15161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(5289), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [15166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [15168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [15175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 32), + [15177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 109), + [15179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [15185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 79), + [15187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [15193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 26), + [15195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 26), + [15197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 45), + [15199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [15203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 46), + [15205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [15209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 59), + [15211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [15215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 83), + [15217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [15223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 112), + [15225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [15231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [15237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 60), + [15239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [15243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [15249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6466), + [15252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6468), [15255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [15261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [15267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [15283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [15301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 70), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [15307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 72), - [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [15311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 74), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [15319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 132), - [15321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [15325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 133), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [15329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4806), - [15332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 150), - [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [15338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 129), - [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [15354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), SHIFT_REPEAT(3507), - [15357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), - [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [15393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4851), - [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [15398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(3502), - [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [15413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 151), - [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [15433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 152), - [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [15447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [15453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 12), - [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [15459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [15461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [15471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, 0, 158), - [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [15491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [15499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 130), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [15505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [15261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [15263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [15265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [15271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, 0, 12), + [15273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, 0, 12), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [15303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 152), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [15307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [15315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 70), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [15325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [15333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [15345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4915), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [15352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 72), + [15354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 74), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [15366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [15382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 12), + [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [15386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [15388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [15392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [15394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 58), + [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [15412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 96), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [15418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), SHIFT_REPEAT(3739), + [15421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), + [15423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 98), + [15425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, 0, 158), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [15433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 100), + [15435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 101), + [15437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 102), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [15451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [15465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 150), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [15481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [15513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 96), - [15515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 98), - [15517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 100), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [15525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 101), - [15527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 102), - [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [15535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [15537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [15553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [15559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 58), - [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [15585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [15587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [15589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 128), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [15603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, 0, 12), - [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [15609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 119), - [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [15617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 89), - [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [15633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 12), - [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [15637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 88), - [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [15643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 118), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [15663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, 0, 157), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [15805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, 0, 43), - [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [15927] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [16029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 86), - [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [16045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 87), - [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [16059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, 0, 12), - [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [16083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 146), - [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [16093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 147), - [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [15519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4949), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [15544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [15553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 151), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [15567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 128), + [15569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 129), + [15571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 130), + [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [15577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 132), + [15579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 133), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [15589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [15591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [15597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [15611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 119), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [15623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 88), + [15625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, 0, 12), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [15635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 12), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [15639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 89), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [15685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [15819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, 0, 12), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [15911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 148), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [16203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 117), - [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [16355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 148), - [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [16405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 120), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [16411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, 0, 49), - [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [16461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), - [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), - [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [16895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [16913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [16925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [16929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [16933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [16935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [16937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [16941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [16943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [16947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [16951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [16993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), - [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [17007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [17049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [16161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, 0, 157), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [16295] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [16317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 147), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [16389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, 0, 43), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [16489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 117), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [16497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 118), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [16505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 120), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [16567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, 0, 49), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [16687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 86), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [16721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 87), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [16895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [16913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [16919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 146), + [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [16925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [16929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [16933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [16935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [16937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [16941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [16943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [16947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [16951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [16993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [17007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [17049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), }; enum ts_external_scanner_symbol_identifiers { @@ -349724,22 +351658,22 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [5] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [6] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, - [ts_external_token_esac] = true, }, [7] = { [ts_external_token__concat] = true, @@ -349854,21 +351788,21 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, }, [19] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [20] = { [ts_external_token_file_descriptor] = true, @@ -349924,19 +351858,19 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, }, [27] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LPAREN] = true, }, [28] = { [ts_external_token_file_descriptor] = true, @@ -349970,29 +351904,28 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [31] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, }, [32] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, [33] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [34] = { [ts_external_token_file_descriptor] = true, @@ -350006,9 +351939,10 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [35] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [36] = { [ts_external_token__concat] = true, @@ -350034,13 +351968,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_esac] = true, }, [39] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, [40] = { - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, [41] = { @@ -350054,11 +351988,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_esac] = true, }, [42] = { - [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LPAREN] = true, - }, - [43] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -350068,6 +351997,11 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, + [43] = { + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + }, [44] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, @@ -350102,12 +352036,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, }, [49] = { - [ts_external_token_test_operator] = true, - [ts_external_token__regex_no_space] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LPAREN] = true, - }, - [50] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, @@ -350117,6 +352045,12 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, }, + [50] = { + [ts_external_token_test_operator] = true, + [ts_external_token__regex_no_space] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + }, [51] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, @@ -350142,9 +352076,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [54] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [55] = { [ts_external_token_test_operator] = true, @@ -350164,28 +352102,24 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [57] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, [58] = { + [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [59] = { - [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, [60] = { [ts_external_token__concat] = true, @@ -350201,10 +352135,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, }, [63] = { - [ts_external_token_LT_LT] = true, - [ts_external_token_heredoc_redirect_token1] = true, - }, - [64] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, @@ -350212,12 +352142,16 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, + [64] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, [65] = { + [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, [66] = { - [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, @@ -350229,18 +352163,18 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [68] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [69] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LPAREN] = true, - [ts_external_token_esac] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [70] = { [ts_external_token_file_descriptor] = true, @@ -350255,13 +352189,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [72] = { - [ts_external_token__immediate_double_hash] = true, - [ts_external_token__external_expansion_sym_hash] = true, - [ts_external_token__external_expansion_sym_bang] = true, - [ts_external_token__external_expansion_sym_equal] = true, - [ts_external_token_RBRACE] = true, - }, - [73] = { [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__expansion_word] = true, @@ -350269,6 +352196,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, [ts_external_token_LPAREN] = true, }, + [73] = { + [ts_external_token__immediate_double_hash] = true, + [ts_external_token__external_expansion_sym_hash] = true, + [ts_external_token__external_expansion_sym_bang] = true, + [ts_external_token__external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, + }, [74] = { [ts_external_token__empty_value] = true, [ts_external_token_test_operator] = true, @@ -350312,9 +352246,10 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [82] = { - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, }, [83] = { [ts_external_token_test_operator] = true, @@ -350322,34 +352257,35 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [84] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, + }, + [85] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, }, - [85] = { + [86] = { [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, }, - [86] = { + [87] = { [ts_external_token_file_descriptor] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, }, - [87] = { + [88] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_LPAREN] = true, }, - [88] = { - [ts_external_token__immediate_double_hash] = true, - }, [89] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, @@ -350358,20 +352294,19 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [90] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, [91] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token__immediate_double_hash] = true, }, [92] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, @@ -350379,7 +352314,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [93] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, @@ -350398,14 +352332,14 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [96] = { - [ts_external_token_LPAREN] = true, - }, - [97] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, + [97] = { + [ts_external_token_LPAREN] = true, + }, [98] = { [ts_external_token_variable_name] = true, [ts_external_token__external_expansion_sym_hash] = true, @@ -350415,26 +352349,26 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [99] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [100] = { - [ts_external_token__concat] = true, - [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [101] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [102] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, }, [103] = { [ts_external_token_file_descriptor] = true, @@ -350444,31 +352378,31 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [104] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [105] = { [ts_external_token_variable_name] = true, [ts_external_token__expansion_word] = true, [ts_external_token_RBRACE] = true, [ts_external_token_LPAREN] = true, }, + [105] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, [106] = { [ts_external_token_RBRACE] = true, [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_LPAREN] = true, }, [107] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [108] = { [ts_external_token_variable_name] = true, [ts_external_token__expansion_word] = true, [ts_external_token_LPAREN] = true, }, - [108] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_heredoc_redirect_token1] = true, - }, [109] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, @@ -350520,22 +352454,22 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [122] = { - [ts_external_token__concat] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, [123] = { + [ts_external_token_simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + }, + [124] = { + [ts_external_token__concat] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [124] = { - [ts_external_token_simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - }, [125] = { [ts_external_token_esac] = true, }, @@ -350547,10 +352481,10 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, }, [128] = { - [ts_external_token_RBRACK] = true, + [ts_external_token_heredoc_end] = true, }, [129] = { - [ts_external_token_heredoc_end] = true, + [ts_external_token_RBRACK] = true, }, [130] = { [ts_external_token_heredoc_start] = true, diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index 5c868df..f56cc00 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -142,6 +142,7 @@ exec {VIRTWL[0]}<&- {VIRTWL[1]}>&- grep 2>/dev/null -q "^/usr/bin/scponly$" /etc/shells x --- @@ -254,7 +255,15 @@ x